summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config/external/nspr/pr/moz.build2
-rw-r--r--dom/canvas/WebGLBuffer.cpp2
-rw-r--r--embedding/components/find/nsFind.cpp6
-rw-r--r--embedding/components/find/nsIFind.idl2
-rw-r--r--embedding/components/find/nsWebBrowserFind.cpp2
-rw-r--r--embedding/test/test_nsFind.html14
-rw-r--r--gfx/layers/composite/CanvasLayerComposite.cpp6
-rw-r--r--gfx/layers/composite/ImageLayerComposite.cpp9
-rw-r--r--gfx/layers/composite/PaintedLayerComposite.cpp9
-rw-r--r--js/src/frontend/BytecodeEmitter.cpp28
-rw-r--r--js/src/frontend/BytecodeEmitter.h10
-rw-r--r--js/src/jit/IonCaches.cpp1
-rw-r--r--js/src/jit/Recover.cpp1
-rw-r--r--media/webrtc/trunk/webrtc/modules/video_capture/windows/MediaType.cpp8
-rw-r--r--modules/libpref/init/all.js1
-rw-r--r--security/manager/ssl/nsSTSPreloadList.errors11282
-rw-r--r--security/manager/ssl/nsSTSPreloadList.inc13386
-rw-r--r--toolkit/components/typeaheadfind/nsTypeAheadFind.cpp2
-rw-r--r--widget/windows/nsClipboard.cpp16
-rw-r--r--xpcom/io/nsLocalFileWin.cpp1
20 files changed, 16368 insertions, 8420 deletions
diff --git a/config/external/nspr/pr/moz.build b/config/external/nspr/pr/moz.build
index cda249b8a..af710f850 100644
--- a/config/external/nspr/pr/moz.build
+++ b/config/external/nspr/pr/moz.build
@@ -38,6 +38,8 @@ elif CONFIG['OS_TARGET'] in ('FreeBSD', 'OpenBSD', 'NetBSD'):
SOURCES += ['/nsprpub/pr/src/md/unix/%s.c' % CONFIG['OS_TARGET'].lower()]
elif CONFIG['OS_TARGET'] == 'Darwin':
OS_LIBS += ['-framework CoreServices']
+ DEFINES['FD_SETSIZE'] = 10240
+ DEFINES['_DARWIN_UNLIMITED_SELECT'] = True
DEFINES.update(
DARWIN=True,
HAVE_BSD_FLOCK=True,
diff --git a/dom/canvas/WebGLBuffer.cpp b/dom/canvas/WebGLBuffer.cpp
index f202c9950..1eaf37ac4 100644
--- a/dom/canvas/WebGLBuffer.cpp
+++ b/dom/canvas/WebGLBuffer.cpp
@@ -115,7 +115,7 @@ WebGLBuffer::BufferData(GLenum target, size_t size, const void* data, GLenum usa
const ScopedLazyBind lazyBind(gl, target, this);
mContext->InvalidateBufferFetching();
-#ifdef XP_MACOSX
+#if defined(XP_MACOSX) || defined(MOZ_WIDGET_GTK)
// bug 790879
if (gl->WorkAroundDriverBugs() &&
size > INT32_MAX)
diff --git a/embedding/components/find/nsFind.cpp b/embedding/components/find/nsFind.cpp
index 6987c11d3..63304dafb 100644
--- a/embedding/components/find/nsFind.cpp
+++ b/embedding/components/find/nsFind.cpp
@@ -932,7 +932,7 @@ nsFind::ResetAll()
// Take nodes out of the tree with NextNode, until null (NextNode will return 0
// at the end of our range).
NS_IMETHODIMP
-nsFind::Find(const char16_t* aPatText, nsIDOMRange* aSearchRange,
+nsFind::Find(const nsAString& aPatText, nsIDOMRange* aSearchRange,
nsIDOMRange* aStartPoint, nsIDOMRange* aEndPoint,
nsIDOMRange** aRangeRet)
{
@@ -949,10 +949,6 @@ nsFind::Find(const char16_t* aPatText, nsIDOMRange* aSearchRange,
NS_ENSURE_ARG_POINTER(aRangeRet);
*aRangeRet = 0;
- if (!aPatText) {
- return NS_ERROR_NULL_POINTER;
- }
-
ResetAll();
nsAutoString patAutoStr(aPatText);
diff --git a/embedding/components/find/nsIFind.idl b/embedding/components/find/nsIFind.idl
index 2c9b17703..ce02c9b7d 100644
--- a/embedding/components/find/nsIFind.idl
+++ b/embedding/components/find/nsIFind.idl
@@ -29,6 +29,6 @@ interface nsIFind : nsISupports
* end (forward) or start (backward).
* @retval A range spanning the match that was found (or null).
*/
- nsIDOMRange Find(in wstring aPatText, in nsIDOMRange aSearchRange,
+ nsIDOMRange Find(in AString aPatText, in nsIDOMRange aSearchRange,
in nsIDOMRange aStartPoint, in nsIDOMRange aEndPoint);
};
diff --git a/embedding/components/find/nsWebBrowserFind.cpp b/embedding/components/find/nsWebBrowserFind.cpp
index af44ce59b..aadc66f8e 100644
--- a/embedding/components/find/nsWebBrowserFind.cpp
+++ b/embedding/components/find/nsWebBrowserFind.cpp
@@ -751,7 +751,7 @@ nsWebBrowserFind::SearchInFrame(nsPIDOMWindowOuter* aWindow, bool aWrapping,
NS_ENSURE_SUCCESS(rv, rv);
- rv = find->Find(mSearchString.get(), searchRange, startPt, endPt,
+ rv = find->Find(mSearchString, searchRange, startPt, endPt,
getter_AddRefs(foundRange));
if (NS_SUCCEEDED(rv) && foundRange) {
diff --git a/embedding/test/test_nsFind.html b/embedding/test/test_nsFind.html
index 5f5a4687a..f180cda20 100644
--- a/embedding/test/test_nsFind.html
+++ b/embedding/test/test_nsFind.html
@@ -33,20 +33,6 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=450048
var startPt = searchRange;
var endPt = searchRange;
- // Check |null| detection on |aPatText| parameter.
- try {
- rf.Find(null, searchRange, startPt, endPt);
-
- ok(false, "Missing NS_ERROR_NULL_POINTER exception");
- } catch (e) {
- e = SpecialPowers.wrap(e);
- if (e.result == SpecialPowers.Cr.NS_ERROR_NULL_POINTER) {
- ok(true, null);
- } else {
- throw e;
- }
- }
-
// Check |null| detection on |aSearchRange| parameter.
try {
rf.Find("", null, startPt, endPt);
diff --git a/gfx/layers/composite/CanvasLayerComposite.cpp b/gfx/layers/composite/CanvasLayerComposite.cpp
index 3c8299e05..86f25b1ee 100644
--- a/gfx/layers/composite/CanvasLayerComposite.cpp
+++ b/gfx/layers/composite/CanvasLayerComposite.cpp
@@ -43,9 +43,13 @@ bool
CanvasLayerComposite::SetCompositableHost(CompositableHost* aHost)
{
switch (aHost->GetType()) {
- case CompositableType::IMAGE:
+ case CompositableType::IMAGE: {
+ if (mCompositableHost && aHost != mCompositableHost) {
+ mCompositableHost->Detach(this);
+ }
mCompositableHost = aHost;
return true;
+ }
default:
return false;
}
diff --git a/gfx/layers/composite/ImageLayerComposite.cpp b/gfx/layers/composite/ImageLayerComposite.cpp
index bac9f3790..6867aaa22 100644
--- a/gfx/layers/composite/ImageLayerComposite.cpp
+++ b/gfx/layers/composite/ImageLayerComposite.cpp
@@ -50,9 +50,14 @@ bool
ImageLayerComposite::SetCompositableHost(CompositableHost* aHost)
{
switch (aHost->GetType()) {
- case CompositableType::IMAGE:
- mImageHost = static_cast<ImageHost*>(aHost);
+ case CompositableType::IMAGE: {
+ ImageHost* newImageHost = static_cast<ImageHost*>(aHost);
+ if (mImageHost && newImageHost != mImageHost) {
+ mImageHost->Detach(this);
+ }
+ mImageHost = newImageHost;
return true;
+ }
default:
return false;
}
diff --git a/gfx/layers/composite/PaintedLayerComposite.cpp b/gfx/layers/composite/PaintedLayerComposite.cpp
index b58f5d690..232cc4ef4 100644
--- a/gfx/layers/composite/PaintedLayerComposite.cpp
+++ b/gfx/layers/composite/PaintedLayerComposite.cpp
@@ -49,9 +49,14 @@ PaintedLayerComposite::SetCompositableHost(CompositableHost* aHost)
switch (aHost->GetType()) {
case CompositableType::CONTENT_TILED:
case CompositableType::CONTENT_SINGLE:
- case CompositableType::CONTENT_DOUBLE:
- mBuffer = static_cast<ContentHost*>(aHost);
+ case CompositableType::CONTENT_DOUBLE: {
+ ContentHost* newBuffer = static_cast<ContentHost*>(aHost);
+ if (mBuffer && newBuffer != mBuffer) {
+ mBuffer->Detach(this);
+ }
+ mBuffer = newBuffer;
return true;
+ }
default:
return false;
}
diff --git a/js/src/frontend/BytecodeEmitter.cpp b/js/src/frontend/BytecodeEmitter.cpp
index b3dd6d777..c524184d6 100644
--- a/js/src/frontend/BytecodeEmitter.cpp
+++ b/js/src/frontend/BytecodeEmitter.cpp
@@ -2260,12 +2260,14 @@ BytecodeEmitter::locationOfNameBoundInFunctionScope(JSAtom* name, EmitterScope*
bool
BytecodeEmitter::emitCheck(ptrdiff_t delta, ptrdiff_t* offset)
{
- *offset = code().length();
+ size_t oldLength = code().length();
+ *offset = ptrdiff_t(oldLength);
- // Start it off moderately large to avoid repeated resizings early on.
- // ~98% of cases fit within 1024 bytes.
- if (code().capacity() == 0 && !code().reserve(1024))
- return false;
+ size_t newLength = oldLength + size_t(delta);
+ if (MOZ_UNLIKELY(newLength > MaxBytecodeLength)) {
+ ReportAllocationOverflow(cx);
+ return false;
+ }
if (!code().growBy(delta)) {
ReportOutOfMemory(cx);
@@ -10697,17 +10699,19 @@ BytecodeEmitter::emitTreeInBranch(ParseNode* pn)
static bool
AllocSrcNote(ExclusiveContext* cx, SrcNotesVector& notes, unsigned* index)
{
- // Start it off moderately large to avoid repeated resizings early on.
- // ~99% of cases fit within 256 bytes.
- if (notes.capacity() == 0 && !notes.reserve(256))
- return false;
+ size_t oldLength = notes.length();
+ if (MOZ_UNLIKELY(oldLength + 1 > MaxSrcNotesLength)) {
+ ReportAllocationOverflow(cx);
+ return false;
+ }
+
if (!notes.growBy(1)) {
ReportOutOfMemory(cx);
return false;
}
- *index = notes.length() - 1;
+ *index = oldLength;
return true;
}
@@ -10833,6 +10837,10 @@ BytecodeEmitter::setSrcNoteOffset(unsigned index, unsigned which, ptrdiff_t offs
/* Maybe this offset was already set to a four-byte value. */
if (!(*sn & SN_4BYTE_OFFSET_FLAG)) {
/* Insert three dummy bytes that will be overwritten shortly. */
+ if (MOZ_UNLIKELY(notes.length() + 3 > MaxSrcNotesLength)) {
+ ReportAllocationOverflow(cx);
+ return false;
+ }
jssrcnote dummy = 0;
if (!(sn = notes.insert(sn, dummy)) ||
!(sn = notes.insert(sn, dummy)) ||
diff --git a/js/src/frontend/BytecodeEmitter.h b/js/src/frontend/BytecodeEmitter.h
index 32668a34c..814fa11d4 100644
--- a/js/src/frontend/BytecodeEmitter.h
+++ b/js/src/frontend/BytecodeEmitter.h
@@ -109,10 +109,12 @@ struct CGYieldOffsetList {
void finish(YieldOffsetArray& array, uint32_t prologueLength);
};
-// Use zero inline elements because these go on the stack and affect how many
-// nested functions are possible.
-typedef Vector<jsbytecode, 0> BytecodeVector;
-typedef Vector<jssrcnote, 0> SrcNotesVector;
+static size_t MaxBytecodeLength = INT32_MAX;
+static size_t MaxSrcNotesLength = INT32_MAX;
+
+// Have a few inline elements to avoid heap allocation for tiny sequences.
+typedef Vector<jsbytecode, 256> BytecodeVector;
+typedef Vector<jssrcnote, 64> SrcNotesVector;
// Linked list of jump instructions that need to be patched. The linked list is
// stored in the bytes of the incomplete bytecode that will be patched, so no
diff --git a/js/src/jit/IonCaches.cpp b/js/src/jit/IonCaches.cpp
index 96e488ea8..0208db6ae 100644
--- a/js/src/jit/IonCaches.cpp
+++ b/js/src/jit/IonCaches.cpp
@@ -31,6 +31,7 @@
#include "jit/shared/Lowering-shared-inl.h"
#include "vm/Interpreter-inl.h"
#include "vm/Shape-inl.h"
+#include "vm/UnboxedObject-inl.h"
using namespace js;
using namespace js::jit;
diff --git a/js/src/jit/Recover.cpp b/js/src/jit/Recover.cpp
index 13bf9224b..6fd71f377 100644
--- a/js/src/jit/Recover.cpp
+++ b/js/src/jit/Recover.cpp
@@ -30,6 +30,7 @@
#include "vm/Interpreter-inl.h"
#include "vm/NativeObject-inl.h"
+#include "vm/UnboxedObject-inl.h"
using namespace js;
using namespace js::jit;
diff --git a/media/webrtc/trunk/webrtc/modules/video_capture/windows/MediaType.cpp b/media/webrtc/trunk/webrtc/modules/video_capture/windows/MediaType.cpp
index 54fc2ab7b..f06709446 100644
--- a/media/webrtc/trunk/webrtc/modules/video_capture/windows/MediaType.cpp
+++ b/media/webrtc/trunk/webrtc/modules/video_capture/windows/MediaType.cpp
@@ -82,7 +82,10 @@ MediaType::Assign(const AM_MEDIA_TYPE* aMediaType)
Clear();
// Shallow copy.
- memcpy(this, aMediaType, sizeof(AM_MEDIA_TYPE));
+ memcpy(static_cast<AM_MEDIA_TYPE*>(this), aMediaType, sizeof(AM_MEDIA_TYPE));
+
+ if (pUnk)
+ pUnk->AddRef();
// Create deep copy of incoming data...
if (cbFormat) {
@@ -92,9 +95,6 @@ MediaType::Assign(const AM_MEDIA_TYPE* aMediaType)
memcpy(pbFormat, aMediaType->pbFormat, cbFormat);
}
- if (pUnk)
- pUnk->AddRef();
-
return S_OK;
}
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js
index ee435d66a..d5005cbdd 100644
--- a/modules/libpref/init/all.js
+++ b/modules/libpref/init/all.js
@@ -1384,6 +1384,7 @@ pref("network.protocol-handler.external.vbscript", false);
pref("network.protocol-handler.external.javascript", false);
pref("network.protocol-handler.external.data", false);
pref("network.protocol-handler.external.ms-help", false);
+pref("network.protocol-handler.external.res", false);
pref("network.protocol-handler.external.shell", false);
pref("network.protocol-handler.external.vnd.ms.radio", false);
#ifdef XP_MACOSX
diff --git a/security/manager/ssl/nsSTSPreloadList.errors b/security/manager/ssl/nsSTSPreloadList.errors
index b50899521..07c14c1f5 100644
--- a/security/manager/ssl/nsSTSPreloadList.errors
+++ b/security/manager/ssl/nsSTSPreloadList.errors
@@ -1,31 +1,35 @@
0-1.party: could not connect to host
-0.me.uk: did not receive HSTS header
-00001.am: max-age too low: 129600
0005.com: could not connect to host
0005aa.com: could not connect to host
-0005pay.com: did not receive HSTS header
-00100010.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+0005pay.com: could not connect to host
+000books.net: did not receive HSTS header
+00100010.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
0010100.net: could not connect to host
-00120012.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-00130013.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-00140014.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-00150015.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-00160016.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-00180018.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-00190019.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00120012.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00130013.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00140014.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00150015.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00160016.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00180018.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00190019.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
00220022.net: could not connect to host
00330033.net: could not connect to host
-00440044.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-00550055.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00334.vip: could not connect to host
+00370038.com: max-age too low: 0
+0038088.com: max-age too low: 0
+00440044.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00550055.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
00660066.net: could not connect to host
-007-preisvergleich.de: could not connect to host
-00770077.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-00778899.com: did not receive HSTS header
+007-preisvergleich.de: did not receive HSTS header
+00770077.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00778899.com: could not connect to host
007kf.com: could not connect to host
007sascha.de: did not receive HSTS header
+0086286.com: did not receive HSTS header
00880088.net: could not connect to host
-00990099.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+00990099.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
00wbf.com: could not connect to host
+01-edu.org: 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
@@ -34,44 +38,52 @@
016328.com: did not receive HSTS header
019328.com: could not connect to host
019398.com: did not receive HSTS header
+01electronica.com.ar: did not receive HSTS header
+01media.fr: did not receive HSTS header
+01seguridad.com.ar: did not receive HSTS header
01smh.com: could not connect to host
+0205wc.com: max-age too low: 0
020wifi.nl: could not connect to host
-0222.mg: did not receive HSTS header
+0222.mg: could not connect to host
0222aa.com: could not connect to host
023838.com: could not connect to host
023sec.com: could not connect to host
02607.com: could not connect to host
028718.com: did not receive HSTS header
029978.com: did not receive HSTS header
-029inno.com: could not connect to host
+029inno.com: did not receive HSTS header
02dl.net: could not connect to host
02smh.com: could not connect to host
03-09-2016.wedding: could not connect to host
0311buy.cn: did not receive HSTS header
+035711630.xyz: could not connect to host
+0380l.com: max-age too low: 0
040fit.nl: did not receive HSTS header
040fitvitality.nl: did not receive HSTS header
048.ag: could not connect to host
-04911701.cn: could not connect to host
04sun.com: could not connect to host
050508.com: could not connect to host
+0531009.com: max-age too low: 0
055268.com: did not receive HSTS header
066318.com: did not receive HSTS header
066538.com: did not receive HSTS header
066718.com: did not receive HSTS header
066928.com: could not connect to host
066938.com: could not connect to host
-06se.com: could not connect to host
070709.net: could not connect to host
-07733.win: could not connect to host
+07733.win: did not receive HSTS header
078805.com: did not receive HSTS header
078810.com: did not receive HSTS header
078820.com: did not receive HSTS header
078860.com: did not receive HSTS header
078890.com: could not connect to host
+0788yh.com: could not connect to host
+0809yh.com: could not connect to host
081638.com: did not receive HSTS header
086628.com: did not receive HSTS header
-08detaxe.fr: could not connect to host
-09115.com: could not connect to host
+09115.com: did not receive HSTS header
+0999sfce.com: max-age too low: 0
+0akarma.me: could not connect to host
0c.eu: did not receive HSTS header
0cdn.ga: could not connect to host
0day.su: could not connect to host
@@ -79,12 +91,13 @@
0fl.com: did not receive HSTS header
0g.org.uk: could not connect to host
0i0.nl: could not connect to host
+0iz.net: could not connect to host
0o0.edu.pl: could not connect to host
0o0.ooo: could not connect to host
0p.no: did not receive HSTS header
0vi.org: could not connect to host
+0vo.moe: could not connect to host
0w0.vc: could not connect to host
-0x0.cloud: could not connect to host
0x0a.net: could not connect to host
0x1337.eu: could not connect to host
0x44.net: could not connect to host
@@ -93,39 +106,51 @@
0x539.be: 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
+0x65.net: could not connect to host
0x90.fi: could not connect to host
0x90.in: could not connect to host
-0xa.in: could not connect to host
+0xa.in: did not receive HSTS header
0xaa55.me: could not connect to host
0xb612.org: could not connect to host
0xcafec0.de: did not receive HSTS header
+0xee.eu: could not connect to host
+0yen.org: could not connect to host
1.0.0.1: max-age too low: 0
+100086ll.com: max-age too low: 0
1000hats.com: did not receive HSTS header
1000serien.com: could not connect to host
1001.best: could not connect to host
1001carats.fr: could not connect to host
+1001firms.com: could not connect to host
+1001mv.com: could not connect to host
+10086.nl: did not receive HSTS header
+100and1.jp: did not receive HSTS header
100onrainkajino.com: could not connect to host
100rembourse.be: did not receive HSTS header
1017scribes.com: could not connect to host
1018hosting.nl: did not receive HSTS header
1022996493.rsc.cdn77.org: could not connect to host
10414.org: could not connect to host
+1049578.com: max-age too low: 0
+1066.io: could not connect to host
1091.jp: could not connect to host
+10gb.io: could not connect to host
10gbit.ovh: could not connect to host
+10giant.com: could not connect to host
10seos.com: did not receive HSTS header
10tacle.io: could not connect to host
10v2.com: could not connect to host
10x.ooo: could not connect to host
10xiuxiu.com: could not connect to host
1100.so: could not connect to host
-110110110.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+110110110.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
1116pay.com: did not receive HSTS header
-112112112.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-11221jz.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-113113113.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-118118118.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+112112112.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+11221jz.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+113113113.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+118118118.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
11bt.cc: did not receive HSTS header
+11dzon.com: could not connect to host
11recruitment.com.au: did not receive HSTS header
11scc.com: could not connect to host
120dayweightloss.com: could not connect to host
@@ -133,106 +158,132 @@
123110.com: could not connect to host
1231212.com: did not receive HSTS header
123123q.com: did not receive HSTS header
-123movies.fyi: did not receive HSTS header
-123nutricion.es: could not connect to host
+123movies.fyi: could not connect to host
123pay.ir: did not receive HSTS header
123plons.nl: could not connect to host
-123share.org: did not receive HSTS header
-123termpapers.com: could not connect to host
+123share.org: could not connect to host
123test.com: did not receive HSTS header
123test.de: did not receive HSTS header
123test.es: did not receive HSTS header
123test.fr: did not receive HSTS header
123test.nl: did not receive HSTS header
+1265353.com: max-age too low: 0
126ium.moe: could not connect to host
127011-networks.ch: could not connect to host
1288366.com: could not connect to host
1288fc.com: could not connect to host
-12photos.eu: max-age too low: 0
+12photos.eu: 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
+1325390854.com: max-age too low: 0
13318522.com: could not connect to host
+1359826938.rsc.cdn77.org: did not receive HSTS header
135vv.com: could not connect to host
+138000.xyz: could not connect to host
13826145000.com: could not connect to host
-1391kj.com: did not receive HSTS header
-1395kj.com: did not receive HSTS header
+13866670.com: max-age too low: 0
1396.cc: could not connect to host
1396.net: did not receive HSTS header
+13982407454.com: max-age too low: 0
13th-dover.uk: could not connect to host
-1481481.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-1481481.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-1481482.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-1481482.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-1481483.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-1481483.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-1481485.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-1481485.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-1481486.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1441805971.com: max-age too low: 0
+1481481.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481481.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481482.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481482.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481483.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481483.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481485.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481485.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1481486.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
1481486.net: could not connect to host
1536.cf: could not connect to host
-159cp.com: did not receive HSTS header
16164f.com: could not connect to host
163pwd.com: could not connect to host
166166.com: could not connect to host
1689886.com: did not receive HSTS header
168bet9.com: could not connect to host
-168bo9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-168bo9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+168bo9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+168bo9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
168esb.com: could not connect to host
+168wcw.com: max-age too low: 0
16book.org: did not receive HSTS header
16deza.com: did not receive HSTS header
16packets.com: could not connect to host
173vpn.cn: could not connect to host
173vpns.com: could not connect to host
173vpnv.com: could not connect to host
-174.net.nz: did not receive HSTS header
+174.net.nz: could not connect to host
174343.com: could not connect to host
17hats.com: did not receive HSTS header
+1834202695.com: max-age too low: 0
+18680288.com: max-age too low: 0
188522.com: did not receive HSTS header
+18858586888.com: max-age too low: 0
+18888msc.com: could not connect to host
1888zr.com: could not connect to host
+1889p.com: did not receive HSTS header
188betwarriors.co.uk: could not connect to host
-188trafalgar.ca: did not receive HSTS header
+188dv.com: max-age too low: 0
+188trafalgar.ca: could not connect to host
+1890p.com: did not receive HSTS header
189dv.com: could not connect to host
189fc.com: could not connect to host
18celebration.com: did not receive HSTS header
18celebration.org: did not receive HSTS header
1912x.com: could not connect to host
+1918173197.com: max-age too low: 0
192.io: could not connect to host
+192080.com: could not connect to host
19216811.online: did not receive HSTS header
192168ll.repair: could not connect to host
1921958389.rsc.cdn77.org: could not connect to host
195gm.com: could not connect to host
+198752qq.com: max-age too low: 0
+19area.cn: could not connect to host
1a-jva.de: could not connect to host
1a-vermessung.at: did not receive HSTS header
1aim.com: did not receive HSTS header
1atic.com: could not connect to host
1b1.pl: could not connect to host
1co-jp.net: did not receive HSTS header
+1cool.vip: could not connect to host
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]
+1day1ac.red: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1db77.cn: could not connect to host
1er-secours.ch: could not connect to host
1europlan.nl: could not connect to host
+1f412.space: did not receive HSTS header
1gsoft.com: could not connect to host
1item.co.il: did not receive HSTS header
1k8b.com: could not connect to host
-1m.duckdns.org: did not receive HSTS header
+1km.ro: did not receive HSTS header
1nian.vip: could not connect to host
1para.net: could not connect to host
+1plus-agency.com: 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
+1scope.com: could not connect to host
1st4abounce.co.uk: could not connect to host
1stcapital.com.sg: did not receive HSTS header
1ststop.co.uk: did not receive HSTS header
1three1.net: did not receive HSTS header
1upinternet.com: could not connect to host
+1volcano.ru: could not connect to host
1xcess.com: did not receive HSTS header
1years.cc: could not connect to host
2-cpu.de: could not connect to host
+20000615.com: max-age too low: 0
+2001617.com: max-age too low: 0
200fcw.com: could not connect to host
2018.wales: could not connect to host
+20188088.com: could not connect to host
+20190204.com: max-age too low: 0
+20190508.com: max-age too low: 0
+2019318.com: max-age too low: 0
2048-spiel.de: could not connect to host
2048game.co.uk: could not connect to host
206rc.net: max-age too low: 2592000
@@ -240,33 +291,52 @@
20hs.cn: did not receive HSTS header
20zq.com: could not connect to host
21.co.uk: did not receive HSTS header
+2112323.com: max-age too low: 0
21lg.co: could not connect to host
-21stnc.com: could not connect to host
+21stnc.com: did not receive HSTS header
+222001.com: could not connect to host
+2222yh.com: did not receive HSTS header
22bt.cc: did not receive HSTS header
+22d.io: could not connect to host
22digital.agency: could not connect to host
22scc.com: could not connect to host
+232192.com: could not connect to host
+2324275338.com: max-age too low: 0
2333.press: could not connect to host
-23333.link: did not receive HSTS header
+23333.link: could not connect to host
233abc.com: could not connect to host
+233hugo.com: could not connect to host
+233ss.net: could not connect to host
+2468lhc.com: could not connect to host
+24796559.com: max-age too low: 0
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
-24hourlocksmithshouston.com: did not receive HSTS header
24hourpaint.com: could not connect to host
24hrs.shopping: could not connect to host
+24items.com: did not receive HSTS header
24kbet.com: could not connect to host
24pcr.com: could not connect to host
24sihu.com: could not connect to host
+24timeravis.dk: did not receive HSTS header
2566335.xyz: could not connect to host
+2569abc.com: max-age too low: 0
256k.me: could not connect to host
-258da.com: could not connect to host
+258da.com: did not receive HSTS header
25daysof.io: could not connect to host
+260842907.com: max-age too low: 0
+2686288.com: max-age too low: 0
+2692646200.com: max-age too low: 0
27728522.com: could not connect to host
2859cc.com: could not connect to host
+286.com: did not receive HSTS header
288da.com: did not receive HSTS header
29227.com: could not connect to host
-298da.com: could not connect to host
+293921.com: could not connect to host
+2941798824.com: max-age too low: 0
+297computers.com: could not connect to host
+298da.com: did not receive HSTS header
2acbi-asso.fr: did not receive HSTS header
2b3b.com: could not connect to host
2bad2c0.de: did not receive HSTS header
@@ -275,26 +345,41 @@
2bouncy.com: could not connect to host
2brokegirls.org: could not connect to host
2carpros.com: did not receive HSTS header
-2fl.me: did not receive HSTS header
+2fl.me: could not connect to host
+2g1s.net: could not connect to host
2intermediate.co.uk: did not receive HSTS header
2mir.com: could not connect to host
2or3.tk: could not connect to host
2smart4food.com: could not connect to host
-2ss.jp: did not receive HSTS header
+2ss.jp: could not connect to host
300651.ru: did not receive HSTS header
300mbmovie24.com: could not connect to host
300mbmovies4u.cc: could not connect to host
301.website: did not receive HSTS header
302.nyc: could not connect to host
+30375500.com: max-age too low: 0
+30375511.com: max-age too low: 0
+30375522.com: max-age too low: 0
+30375533.com: max-age too low: 0
+30375544.com: max-age too low: 0
+30375555.com: max-age too low: 0
+30375566.com: max-age too low: 0
+30375577.com: max-age too low: 0
+30375588.com: could not connect to host
+30375599.com: max-age too low: 0
304squadron.org: did not receive HSTS header
+3054056550.com: max-age too low: 0
+308xsj.com: max-age too low: 0
30yearmortgagerates.net: could not connect to host
3133780x.com: did not receive HSTS header
314166.com: could not connect to host
-314553.com: did not receive HSTS header
-314chan.org: could not connect to host
+319k3.com: could not connect to host
31tv.ru: did not receive HSTS header
+321666365.com: did not receive HSTS header
32ph.com: could not connect to host
330.net: could not connect to host
+3333yh.com: did not receive HSTS header
+33445.com: could not connect to host
336yh.com: could not connect to host
33836.com: did not receive HSTS header
338da.com: could not connect to host
@@ -302,36 +387,103 @@
33scc.com: could not connect to host
341.mg: could not connect to host
34oztonic.eu: did not receive HSTS header
-3555500.com: did not receive HSTS header
+351079.com: could not connect to host
+3555500.com: could not connect to host
3555aa.com: could not connect to host
+357601.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
-364553.com: did not receive HSTS header
365.or.jp: could not connect to host
+365365.com: could not connect to host
+36565123.com: could not connect to host
+36565234.com: could not connect to host
+36565345.com: could not connect to host
+36565456.com: could not connect to host
+36565567.com: could not connect to host
+36565678.com: could not connect to host
+36565789.com: could not connect to host
365maya.com: did not receive HSTS header
368mibn.com: could not connect to host
3778vip.com: did not receive HSTS header
3778xl.com: could not connect to host
+380021868.com: max-age too low: 0
+380138000.com: max-age too low: 0
+3801808.com: max-age too low: 0
+3801988.com: max-age too low: 0
+380201314.com: max-age too low: 0
+3802024.com: max-age too low: 0
+3802025.com: max-age too low: 0
+380222000.com: max-age too low: 0
+380222111.com: max-age too low: 0
+380222222.com: max-age too low: 0
+380222333.com: max-age too low: 0
+380222444.com: max-age too low: 0
+380222555.com: max-age too low: 0
+380222666.com: max-age too low: 0
+380222777.com: max-age too low: 0
+380222888.com: max-age too low: 0
+380222999.com: max-age too low: 0
+3802288.com: max-age too low: 0
+3803300.com: max-age too low: 0
+3804488.com: max-age too low: 0
+3805201314.com: max-age too low: 0
+3805355.com: max-age too low: 0
+3805500.com: max-age too low: 0
+3805511abc.com: max-age too low: 0
+3806600.com: max-age too low: 0
+3806677.com: max-age too low: 0
+3806789.com: max-age too low: 0
+3807344.com: max-age too low: 0
+3807711.com: max-age too low: 0
+3807722.com: max-age too low: 0
+3807733.com: max-age too low: 0
+3807755.com: max-age too low: 0
+3808822.com: max-age too low: 0
+3808833.com: max-age too low: 0
+3808844.com: max-age too low: 0
+3808855.com: max-age too low: 0
+3808866.com: max-age too low: 0
+3809900.com: max-age too low: 0
+3809911.com: max-age too low: 0
+3809922.com: max-age too low: 0
+3809933.com: max-age too low: 0
+3809944.com: max-age too low: 0
+380zz8989.com: max-age too low: 0
3839.ca: could not connect to host
+3880p.com: could not connect to host
38888msc.com: could not connect to host
38blog.com: did not receive HSTS header
-394553.com: did not receive HSTS header
+393335.ml: could not connect to host
+39661463.com: max-age too low: 0
39sihu.com: could not connect to host
3candy.com: could not connect to host
3chit.cf: could not connect to host
+3circlefunding.ch: did not receive HSTS header
3click-loan.com: could not connect to host
3d-bastler.de: could not connect to host
3dcart.com: max-age too low: 2592000
3delivered.com: could not connect to host
3dm.audio: could not connect to host
+3dprintsondemand.eu: could not connect to host
3dproteinimaging.com: did not receive HSTS header
+3drenaline.com: did not receive HSTS header
3fl.com: did not receive HSTS header
3ik.us: could not connect to host
+3lot.ru: could not connect to host
3mbo.de: did not receive HSTS header
+3niu178.com: did not receive HSTS header
+3niu66.com: did not receive HSTS header
+3niu666.com: did not receive HSTS header
+3niu8.com: did not receive HSTS header
+3niu88.com: did not receive HSTS header
+3niu8888.com: did not receive HSTS header
+3os.ooo: could not connect to host
3phase.pw: could not connect to host
-3sreporting.com: did not receive HSTS header
+3sreporting.com: could not connect to host
+3timegear.com: did not receive HSTS header
3trees.tk: could not connect to host
+3ve.com: did not receive HSTS header
3wecommerce.com.br: could not connect to host
3weekdietworks.com: did not receive HSTS header
3xx.link: could not connect to host
@@ -343,28 +495,34 @@
404.sh: could not connect to host
404404.info: could not connect to host
404forest.com: did not receive HSTS header
-414553.com: did not receive HSTS header
+4111pk.com: could not connect to host
+411416.com: did not receive HSTS header
+4138hd.com: could not connect to host
41844.de: could not connect to host
420dongstorm.com: could not connect to host
4237.com: could not connect to host
42entrepreneurs.fr: did not receive HSTS header
42ms.org: could not connect to host
42t.ru: could not connect to host
+432666365.com: did not receive HSTS header
439191.com: could not connect to host
440hz-radio.de: did not receive HSTS header
+4444yh.com: did not receive HSTS header
4455software.com: did not receive HSTS header
448da.com: could not connect to host
44957.com: could not connect to host
44scc.com: could not connect to host
4500.co.il: did not receive HSTS header
-4553s.com: did not receive HSTS header
4553vip.com: could not connect to host
-4679.space: did not receive HSTS header
+45636565.com: could not connect to host
+4679.space: could not connect to host
4736666.com: could not connect to host
478933.com: could not connect to host
47essays.com: could not connect to host
47tech.com: could not connect to host
+494k.com: did not receive HSTS header
4997777.com: could not connect to host
+4999016.com: max-age too low: 0
4azino777.ru: did not receive HSTS header
4baby.com.br: could not connect to host
4bike.eu: did not receive HSTS header
@@ -372,19 +530,27 @@
4d2.xyz: could not connect to host
4decor.org: max-age too low: 0
4everproxy.com: did not receive HSTS header
+4flex.info: could not connect to host
+4freepress.com: could not connect to host
4hvac.com: did not receive HSTS header
+4kprojektory.cz: could not connect to host
4loc.us: could not connect to host
4miners.net: could not connect to host
4mybaby.ch: did not receive HSTS header
4ourty2.org: could not connect to host
+4share.tv: could not connect to host
4sics.se: could not connect to host
+4smart.house: could not connect to host
4sqsu.eu: could not connect to host
+4u.am: did not receive HSTS header
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: did not receive HSTS header
500108.com: did not receive HSTS header
+5002888.com: could not connect to host
+5007999.com: could not connect to host
500a500.com: did not receive HSTS header
500b500.com: did not receive HSTS header
500c500.com: did not receive HSTS header
@@ -410,133 +576,332 @@
500u500.com: did not receive HSTS header
500y500.com: did not receive HSTS header
500z500.com: did not receive HSTS header
-506pay.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+504737.com: max-age too low: 0
+506pay.com: could not connect to host
+508088.com: did not receive HSTS header
50ma.xyz: could not connect to host
50millionablaze.org: could not connect to host
50plusnet.nl: could not connect to host
513vpn.net: could not connect to host
+514622.com: could not connect to host
517vpn.cn: could not connect to host
+518558.net: max-age too low: 0
518maicai.com: could not connect to host
-5214889.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-5214889.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+51aifuli.com: could not connect to host
+5214889.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+5214889.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+5219.ml: could not connect to host
+5225sf.com: could not connect to host
52b9.com: could not connect to host
52b9.net: could not connect to host
52hentai.us: did not receive HSTS header
-52kb.net: could not connect to host
+52kb.net: did not receive HSTS header
52kb1.com: could not connect to host
52neptune.com: did not receive HSTS header
-5310899.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-5310899.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-5364.com: could not connect to host
+5310899.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+5310899.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+532441.com: could not connect to host
+5356699.com: max-age too low: 0
540.co: did not receive HSTS header
5432.cc: did not receive HSTS header
+543666365.com: did not receive HSTS header
545755.com: could not connect to host
54bf.com: could not connect to host
+5518k3.com: could not connect to host
+5555yh.com: could not connect to host
555xl.com: could not connect to host
+55639.com: did not receive HSTS header
55797.com: could not connect to host
558da.com: did not receive HSTS header
55bt.cc: did not receive HSTS header
55scc.com: could not connect to host
+566380.com: could not connect to host
+567666365.com: did not receive HSTS header
56877.com: could not connect to host
56ct.com: could not connect to host
+575380.com: could not connect to host
+57771399.com: max-age too low: 0
+578380.com: could not connect to host
57aromas.com: did not receive HSTS header
57he.com: did not receive HSTS header
+585380.com: could not connect to host
+58586668.com: max-age too low: 0
+588007008.com: max-age too low: 0
588da.com: did not receive HSTS header
-598598598.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+591380.com: could not connect to host
+592380.com: could not connect to host
+593380.com: could not connect to host
+595380.com: could not connect to host
+598380.com: could not connect to host
+598598598.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
5986fc.com: could not connect to host
-5chat.it: could not connect to host
+5beanskit.com: did not receive HSTS header
+5conejos.com: did not receive HSTS header
5crowd.com: did not receive HSTS header
5ece.de: could not connect to host
5piecesofadvice.com: could not connect to host
5starbouncycastlehire.co.uk: could not connect to host
+5stars.tv: did not receive HSTS header
5w5.la: could not connect to host
+60068vb.com: max-age too low: 0
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
+6133feng.com: max-age too low: 0
+6166p.com: did not receive HSTS header
+618media.com: did not receive HSTS header
+621162.com: could not connect to host
+626380.com: could not connect to host
+62755.com: could not connect to host
+645ds.cn: could not connect to host
645ds.com: did not receive HSTS header
64616e.xyz: could not connect to host
-64970.com: did not receive HSTS header
+64970.com: could not connect to host
64bitgaming.de: could not connect to host
64bitservers.net: could not connect to host
+6556hd.com: could not connect to host
+6556pk.com: could not connect to host
+656088.com: did not receive HSTS header
+657660.com: could not connect to host
+657990.com: could not connect to host
660011.com: could not connect to host
+6603p.com: did not receive HSTS header
+66136.com: did not receive HSTS header
6616fc.com: could not connect to host
66205.net: did not receive HSTS header
-6664553.com: did not receive HSTS header
+666365app.com: did not receive HSTS header
+666365ios.com: did not receive HSTS header
+666365iosapp.com: did not receive HSTS header
+6666yh.com: did not receive HSTS header
666omg.com: could not connect to host
6677.us: could not connect to host
668da.com: did not receive HSTS header
-66b.com: did not receive HSTS header
66bwf.com: could not connect to host
-67899876.com: did not receive HSTS header
+671660.com: could not connect to host
+671990.com: could not connect to host
+6729.co: could not connect to host
+672990.com: could not connect to host
+6729dh.co: could not connect to host
+6729dns.com: could not connect to host
+6729dz.com: did not receive HSTS header
+673660.com: could not connect to host
+673990.com: could not connect to host
+675660.com: could not connect to host
+675990.com: could not connect to host
+67836565.com: could not connect to host
+67899876.com: could not connect to host
+679660.com: could not connect to host
680226.com: could not connect to host
+6859551.com: max-age too low: 0
688da.com: could not connect to host
+692660.com: could not connect to host
+692990.com: could not connect to host
692b8c32.de: could not connect to host
+695660.com: could not connect to host
+6957.co: could not connect to host
+6957a.com: could not connect to host
+6957aa.com: could not connect to host
+6957apk.com: could not connect to host
+6957app.com: could not connect to host
+6957b.com: could not connect to host
+6957bb.com: could not connect to host
+6957c.com: could not connect to host
+6957cc.com: could not connect to host
+6957d.com: could not connect to host
+6957dd.com: could not connect to host
+6957dh.co: could not connect to host
+6957e.com: could not connect to host
+6957ee.com: could not connect to host
+6957f.com: could not connect to host
+6957ff.com: could not connect to host
+6957g.com: could not connect to host
+6957gg.com: could not connect to host
+6957h.com: could not connect to host
+6957hh.com: could not connect to host
+6957i.com: could not connect to host
+6957ii.com: could not connect to host
+6957ipa.com: could not connect to host
+6957j.com: could not connect to host
+6957jj.com: could not connect to host
+6957k.com: could not connect to host
+6957kk.com: could not connect to host
+6957l.com: could not connect to host
+6957ll.com: could not connect to host
+6957m.com: could not connect to host
+6957n.com: could not connect to host
+6957nn.com: could not connect to host
+6957o.com: could not connect to host
+6957oo.com: could not connect to host
+6957p.com: could not connect to host
+6957r.com: could not connect to host
+6957rr.com: could not connect to host
+6957s.com: could not connect to host
+6957ss.com: could not connect to host
+6957sx.com: could not connect to host
+6957t.com: could not connect to host
+6957tt.com: could not connect to host
+6957u.com: could not connect to host
+6957uu.com: could not connect to host
+6957v.com: could not connect to host
+6957vv.com: could not connect to host
+6957w.com: could not connect to host
+6957ww.com: could not connect to host
+6957x.com: could not connect to host
+6957xx.com: could not connect to host
+6957yy.com: could not connect to host
+6957z.com: could not connect to host
+6957zz.com: could not connect to host
+695990.com: could not connect to host
+69759.com: did not receive HSTS header
+69928.com: did not receive HSTS header
69mentor.com: could not connect to host
69square.com: could not connect to host
+6boy.net: did not receive HSTS header
6pm.com: did not receive HSTS header
6t-montjoye.org: could not connect to host
6w6.la: could not connect to host
6z3.net: could not connect to host
7045.com: could not connect to host
+715805617.com: max-age too low: 0
+7177p.com: did not receive HSTS header
7183.org: could not connect to host
-721av.com: could not connect to host
+721av.com: max-age too low: 2592000
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
-7570.com: did not receive HSTS header
-758global.com: did not receive HSTS header
+73info.com: did not receive HSTS header
+755k3.com: could not connect to host
+7570.com: could not connect to host
+758global.com: could not connect to host
+758m.com: did not receive HSTS header
771122.tv: did not receive HSTS header
+7717411.com: max-age too low: 0
+7717a.com: did not receive HSTS header
+7717p.com: did not receive HSTS header
772244.net: did not receive HSTS header
776573.net: did not receive HSTS header
+7771p.com: did not receive HSTS header
7777av.co: could not connect to host
+7777yh.com: did not receive HSTS header
77890k.com: could not connect to host
778da.com: did not receive HSTS header
77book.cn: could not connect to host
77dostavkaroz.ru: did not receive HSTS header
-788da.com: could not connect to host
+787k3.com: could not connect to host
+788da.com: did not receive HSTS header
+78936565.com: could not connect to host
789zr.com: could not connect to host
7f-wgg.cf: could not connect to host
-7kovrikov.ru: did not receive HSTS header
+7ferfer.com.br: did not receive HSTS header
7links.com.br: did not receive HSTS header
7nw.eu: could not connect to host
+7qly.com: 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: did not receive HSTS header
808phone.net: could not connect to host
+81000906.com: max-age too low: 0
818bwf.com: could not connect to host
-818da.com: could not connect to host
81uc.com: could not connect to host
8206688.com: did not receive HSTS header
+8211p.com: could not connect to host
+8212p.com: could not connect to host
+8213p.com: could not connect to host
+8215p.com: could not connect to host
826468.com: could not connect to host
826498.com: could not connect to host
82ty.com: could not connect to host
+83969789.com: max-age too low: 0
83i.net: could not connect to host
850226.com: could not connect to host
-8522.am: could not connect to host
+8522.com: max-age too low: 86400
8522cn.com: did not receive HSTS header
+8522hk.com: could not connect to host
8522top.com: could not connect to host
8560.be: could not connect to host
86286286.com: did not receive HSTS header
+86499.com: did not receive HSTS header
8649955.com: could not connect to host
8649966.com: could not connect to host
8649977.com: could not connect to host
+8666213.com: max-age too low: 0
8688fc.com: could not connect to host
-8722.com: did not receive HSTS header
+86metro.ru: could not connect to host
+8722.com: could not connect to host
87577.com: could not connect to host
+876666365.com: did not receive HSTS header
+877027.com: could not connect to host
88.to: did not receive HSTS header
-8876205.com: did not receive HSTS header
-8880057.com: did not receive HSTS header
+8802p.com: could not connect to host
+8818k3.com: could not connect to host
+8876138.com: did not receive HSTS header
+8876520.com: could not connect to host
+8876578.com: did not receive HSTS header
+8876598.com: did not receive HSTS header
+8876655.com: did not receive HSTS header
+8876660.com: did not receive HSTS header
+8876687.com: did not receive HSTS header
+8876770.com: did not receive HSTS header
+8876775.com: did not receive HSTS header
+8876776.com: did not receive HSTS header
+8876779.com: did not receive HSTS header
+8876818.com: did not receive HSTS header
+8876822.com: did not receive HSTS header
+8876838.com: did not receive HSTS header
+8876858.com: did not receive HSTS header
+8876866.com: did not receive HSTS header
+8876879.com: did not receive HSTS header
+8876881.com: did not receive HSTS header
+8876882.com: did not receive HSTS header
+8876883.com: did not receive HSTS header
+8876898.com: did not receive HSTS header
+8876900.com: did not receive HSTS header
+8876991.com: did not receive HSTS header
+8876992.com: did not receive HSTS header
+8876996.com: did not receive HSTS header
+8880005555.com: max-age too low: 0
+8880013.com: did not receive HSTS header
+8880021.com: did not receive HSTS header
+8880023.com: did not receive HSTS header
+8880025.com: did not receive HSTS header
+8880057.com: could not connect to host
+8880059.com: did not receive HSTS header
+8880067.com: did not receive HSTS header
+8880083.com: did not receive HSTS header
+8880100.com: did not receive HSTS header
8884553.com: could not connect to host
-8887999.com: could not connect to host
+88851333.com: could not connect to host
+8886737.com: did not receive HSTS header
+8886739.com: did not receive HSTS header
+8886793.com: did not receive HSTS header
+8886806.com: did not receive HSTS header
+8886860.com: did not receive HSTS header
+8887999.com: did not receive HSTS header
8888av.co: could not connect to host
-8888esb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8888esb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8888yh.com: did not receive HSTS header
+8889457.com: did not receive HSTS header
+8889458.com: did not receive HSTS header
+8889466.com: did not receive HSTS header
+8889563.com: did not receive HSTS header
+8889709.com: did not receive HSTS header
+8889729.com: did not receive HSTS header
+8889792.com: did not receive HSTS header
+8889807.com: did not receive HSTS header
+8889809.com: did not receive HSTS header
+8889819.com: did not receive HSTS header
+8889870.com: did not receive HSTS header
+8889881.com: did not receive HSTS header
+8889890.com: did not receive HSTS header
+8889893.com: did not receive HSTS header
+8889903.com: did not receive HSTS header
+8889910.com: did not receive HSTS header
888azino.com: did not receive HSTS header
888bwf.com: could not connect to host
888lu.co: could not connect to host
@@ -545,30 +910,31 @@
88d.com: could not connect to host
88laohu.cc: could not connect to host
88laohu.com: could not connect to host
-8901178.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-8901178.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-8910899.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-8910899.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-8917168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-8917168.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-8917818.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-8917818.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-8951889.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-8951889.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8901178.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8901178.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8910899.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8910899.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8917168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8917168.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8917818.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8917818.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8951889.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8951889.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
8989k3.com: could not connect to host
-8992088.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-8992088.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8992088.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+8992088.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
89955.com: could not connect to host
899699.com: did not receive HSTS header
89he.com: could not connect to host
+8ack.de: could not connect to host
+8ackprotect.com: did not receive HSTS header
8azino777.ru: did not receive HSTS header
8ballbombom.uk: could not connect to host
-8da188.com: could not connect to host
8da2017.com: did not receive HSTS header
8da2018.com: could not connect to host
8da88.com: could not connect to host
-8da999.com: could not connect to host
-8mpay.com: did not receive HSTS header
+8hrs.net: could not connect to host
+8mpay.com: could not connect to host
8pecxstudios.com: could not connect to host
8shequapp.com: could not connect to host
8svn.com: did not receive HSTS header
@@ -577,99 +943,178 @@
8xx.bet: could not connect to host
8xx.io: could not connect to host
8xxbet.net: could not connect to host
-8xxxxxxx.com: could not connect to host
+8y.network: could not connect to host
8yun.ga: could not connect to host
+908.la: could not connect to host
90smthng.com: could not connect to host
91-freedom.com: could not connect to host
9118b.com: could not connect to host
911911.pw: could not connect to host
-915ers.com: could not connect to host
-918116.com: max-age too low: 2592000
-918yy.com: could not connect to host
+914cq.com: could not connect to host
+918116.com: could not connect to host
+9181181.com: could not connect to host
+9181182.com: could not connect to host
+9181183.com: could not connect to host
+9181184.com: could not connect to host
+9181185.com: could not connect to host
+9181186.com: could not connect to host
+9181187.com: could not connect to host
+9181189.com: could not connect to host
+9182289.com: could not connect to host
+918yy.com: did not receive HSTS header
+919093590.com: max-age too low: 0
+91966.com: did not receive HSTS header
919945.com: did not receive HSTS header
91dh.cc: could not connect to host
91lt.info: did not receive HSTS header
+91tianmi.com: could not connect to host
922.be: could not connect to host
+9297a.com: could not connect to host
+9297b.com: could not connect to host
+9297c.com: could not connect to host
+9297d.com: could not connect to host
+9297dh.co: could not connect to host
+9297e.com: did not receive HSTS header
+9297f.com: could not connect to host
+9297g.com: could not connect to host
+9297hd.co: could not connect to host
+9297i.com: could not connect to host
+9297j.com: could not connect to host
+9297k.com: could not connect to host
+9297l.com: could not connect to host
+9297m.com: could not connect to host
+9297o.com: could not connect to host
+9297p.com: did not receive HSTS header
+9297q.com: could not connect to host
+9297r.com: could not connect to host
+9297s.com: could not connect to host
+9297u.com: could not connect to host
+9297v.com: could not connect to host
+9297w.com: could not connect to host
+9297x.com: could not connect to host
+9297z.com: could not connect to host
92bmh.com: did not receive HSTS header
+944cq.com: did not receive HSTS header
9454.com: could not connect to host
+947cq.com: did not receive HSTS header
+94cs.cn: could not connect to host
9500years.com: max-age too low: 0
95778.com: could not connect to host
960news.ca: could not connect to host
9617818.com: could not connect to host
9617818.net: could not connect to host
+961cq.com: could not connect to host
9651678.ru: could not connect to host
-9696178.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-9696178.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+9696178.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+9696178.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+9728.com: could not connect to host
+9728dh.co: could not connect to host
+9728hd.co: did not receive HSTS header
97bros.com: did not receive HSTS header
+98198823.com: max-age too low: 0
+9822.bz: did not receive HSTS header
9822.com: did not receive HSTS header
9822.info: did not receive HSTS header
+987666365.com: did not receive HSTS header
987987.com: did not receive HSTS header
-9906753.net: did not receive HSTS header
+989868888.com: max-age too low: 0
+98laba.com: could not connect to host
+98laba.net: could not connect to host
+9906753.net: could not connect to host
+9950p.com: could not connect to host
99511.fi: did not receive HSTS header
99599.net: could not connect to host
-9994553.com: did not receive HSTS header
+99818adc.com: max-age too low: 0
99buffets.com: could not connect to host
-9bingo.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-9jadirect.com: could not connect to host
+99wxt.com: could not connect to host
+9bingo.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+9hosts.net: could not connect to host
+9jajuice.com: could not connect to host
+9jatrust.com: could not connect to host
9jaxtreme.com.ng: did not receive HSTS header
9point6.com: could not connect to host
+9riddles.com: did not receive HSTS header
9ss6.com: could not connect to host
9vies.ca: could not connect to host
9won.kr: could not connect to host
+9y.at: could not connect to host
+a-bm.de: did not receive HSTS header
a-intel.com: did not receive HSTS header
a-ix.net: could not connect to host
a-plus.space: could not connect to host
+a-pro-pos.info: did not receive HSTS header
a-rickroll-n.pw: could not connect to host
a-shafaat.ir: did not receive HSTS header
a-starbouncycastles.co.uk: could not connect to host
a-theme.com: could not connect to host
a1-autopartsglasgow.com: could not connect to host
a1798.com: could not connect to host
+a1972894570.com: max-age too low: 0
+a19840925.com: max-age too low: 0
+a1scubastore.com: did not receive HSTS header
a200k.xyz: did not receive HSTS header
a2c-co.net: could not connect to host
-a2it.gr: max-age too low: 0
-a2os.club: did not receive HSTS header
+a2it.gr: did not receive HSTS header
a3.pm: did not receive HSTS header
a3workshop.swiss: could not connect to host
+a666l.com: max-age too low: 0
+a6957.com: could not connect to host
a8q.org: could not connect to host
a9c.co: could not connect to host
aa43d.cn: could not connect to host
-aa6688.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+aa6688.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+aa6957.com: could not connect to host
+aa753159.com: max-age too low: 0
aa7733.com: could not connect to host
aacfree.com: could not connect to host
aaeblog.com: did not receive HSTS header
aaeblog.net: did not receive HSTS header
aaeblog.org: did not receive HSTS header
-aanbieders.ga: could not connect to host
+aaex.cloud: did not receive HSTS header
+aagetransport.no: could not connect to host
+aanbieders.ga: did not receive HSTS header
+aandeautobody.com: 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: max-age too low: 7776000
+aaron.cm: did not receive HSTS header
+aaron.xin: could not connect to host
+aaronburt.co.uk: did not receive HSTS header
aaronmcguire.me: did not receive HSTS header
+aaronsilber.me: did not receive HSTS header
aarvinproperties.com: could not connect to host
ab-bauservice-berlin.de: did not receive HSTS header
-abacus-events.co.uk: did not receive HSTS header
-abaev.uk: could not connect to host
+abacus-events.co.uk: could not connect to host
+abacustech.co.jp: could not connect to host
abareplace.com: did not receive HSTS header
+abasalehngo.com: could not connect to host
abasky.net: could not connect to host
-abbradar.net: could not connect to host
-abcdef.be: could not connect to host
+abbas.ch: could not connect to host
+abborsjo.fi: did not receive HSTS header
+abbotsparties.co.uk: did not receive HSTS header
+abbradar.net: did not receive HSTS header
+abc9981.com: max-age too low: 0
abcdentalcare.com: did not receive HSTS header
-abcdobebe.com: did not receive HSTS header
+abcdzgx.com: max-age too low: 0
abchelp.net: could not connect to host
-abdelsater.net: did not receive HSTS header
-abdullah.pw: could not connect to host
+abdelsater.net: could not connect to host
+abdullah.pw: did not receive HSTS header
abearofsoap.com: could not connect to host
abecodes.net: could not connect to host
+abeestrada.com: did not receive HSTS header
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]
+aberdeenalmeras.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+abhibhat.com: could not connect to host
abi-fvs.de: could not connect to host
abigailstark.com: could not connect to host
abilitylist.org: did not receive HSTS header
+abilitynet.org.uk: did not receive HSTS header
abinferis.com: could not connect to host
abioniere.de: could not connect to host
+abitaspringsla.gov: could not connect to host
+ablak-nyilaszaro.info: did not receive HSTS header
ablogagency.net: could not connect to host
abloop.com: could not connect to host
abmahnhelfer.de: did not receive HSTS header
@@ -678,19 +1123,20 @@ abolition.co: did not receive HSTS header
abosav.com: did not receive HSTS header
abou.to: could not connect to host
about.ge: did not receive HSTS header
-aboutassistedliving.org: did not receive HSTS header
aboutmyip.info: did not receive HSTS header
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
+absolutehaitian.com: did not receive HSTS header
absolutewaterproofingsolutions.com: did not receive HSTS header
abstractbarista.com: could not connect to host
abt.de: did not receive HSTS header
abtom.de: did not receive HSTS header
-abury.fr: did not receive HSTS header
+abury.fr: could not connect to host
abury.me: did not receive HSTS header
abyssgaming.eu: could not connect to host
+ac-town.com: could not connect to host
acabadosboston.com: could not connect to host
academialowcost.com.br: did not receive HSTS header
academicenterprise.org: did not receive HSTS header
@@ -698,7 +1144,6 @@ 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
accadoro.it: did not receive HSTS header
accbay.com: could not connect to host
@@ -708,17 +1153,24 @@ accelight.co.jp: did not receive HSTS header
accelight.jp: did not receive HSTS header
access-sofia.org: did not receive HSTS header
accessibility.gov: did not receive HSTS header
+acchikocchi.org: did not receive HSTS header
accolade.com.br: could not connect to host
accoun.technology: could not connect to host
accounts-p.com: did not receive HSTS header
accountsuspended.club: could not connect to host
+accuritconsulting.com: did not receive HSTS header
+accuritpresence.com: did not receive HSTS header
accwing.com: could not connect to host
+ace-aegon.cloud: could not connect to host
+ace.media: did not receive HSTS header
aceadvisory.biz: did not receive HSTS header
acecerts.co.uk: did not receive HSTS header
-acemypaper.com: could not connect to host
-acevik.de: did not receive HSTS header
-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
+acedog.co: max-age too low: 0
+acevik.de: could not connect to host
+acfo.org: did not receive HSTS header
+acg.mn: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+acg.sb: did not receive HSTS header
+acg1080.com: did not receive HSTS header
acg18.us: max-age too low: 0
acgaudio.com: could not connect to host
acgpiano.club: could not connect to host
@@ -727,91 +1179,112 @@ 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
-acidbin.co: could not connect to host
+acidbin.co: did not receive HSTS header
acisonline.net: did not receive HSTS header
acksoft.fr: did not receive HSTS header
acksoftdemo.fr: did not receive HSTS header
+acl.ink: could not connect to host
acoffeeshops.com: could not connect to host
acorns.com: did not receive HSTS header
+acorntreecare.com: could not connect to host
acpinformatique.fr: could not connect to host
acr.im: could not connect to host
acraft.org: could not connect to host
+acrealux.lu: did not receive HSTS header
acrepairdrippingsprings.com: could not connect to host
acritelli.com: did not receive HSTS header
-acroso.me: could not connect to host
+acroso.me: did not receive HSTS header
across.ml: could not connect to host
acrossgw.com: could not connect to host
acs-chantal.com: did not receive HSTS header
-acsihostingsolutions.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+acsihostingsolutions.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
acslimited.co.uk: did not receive HSTS header
-actc81.fr: could not connect to host
+actc81.fr: did not receive HSTS header
actilove.ch: could not connect to host
-actiontowingroundrock.com: could not connect to host
+actiontowingroundrock.com: did not receive HSTS header
activateplay.com: did not receive HSTS header
-active-escape.com: did not receive HSTS header
+active-escape.com: could not connect to host
activeclearweb.com: could not connect to host
activeweb.top: could not connect to host
-activeworld.net: max-age too low: 2592000
activistasconstructivos.org: did not receive HSTS header
+activitesaintnicaise.org: could not connect to host
activiti.alfresco.com: did not receive HSTS header
actorsroom.com: 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]
+actu-medias.com: did not receive HSTS header
+actualite-videos.com: could not connect to host
+actuatemedia.com: did not receive HSTS header
acupofsalt.tv: could not connect to host
acuve.jp: could not connect to host
+acwcerts.co.uk: 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
+adam-wilson.me: did not receive HSTS header
+adambyers.com: max-age too low: 43200
adamcoffee.net: could not connect to host
+adamek.online: did not receive HSTS header
adamjoycegames.co.uk: could not connect to host
+adamkaminski.com: did not receive HSTS header
adamricheimer.com: could not connect to host
+adamsbouncycastles.co.uk: could not connect to host
adamsfoundationrepair.com: did not receive HSTS header
+adamwallington.co.uk: could not connect to host
adamwilcox.org: did not receive HSTS header
adamwk.com: did not receive HSTS header
+adaptiveicons.com: could not connect to host
adastra.re: could not connect to host
adblock.ovh: could not connect to host
adboos.com: could not connect to host
addaxpetroleum.com: could not connect to host
+addiko.net: did not receive HSTS header
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
-adelianz.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+adelianz.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
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: could not connect to host
+adhoc.is: could not connect to host
adhosting.nl: did not receive HSTS header
-adhs-chaoten.net: did not receive HSTS header
+adhs-chaoten.net: could not connect to host
adigitali.biz: did not receive HSTS header
adindexr.com: could not connect to host
adint.net: could not connect to host
+adiponectinsupplement.info: did not receive HSTS header
+adiponectinsupplement.net: did not receive HSTS header
adlerweb.info: did not receive HSTS header
+adm-sarov.ru: could not connect to host
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)
adminwerk.com: did not receive HSTS header
+adminwiki.fr: did not receive HSTS header
admitcard.co.in: could not connect to host
admsel.ec: could not connect to host
+adnanotoyedekparca.com: could not connect to host
+adnmb1.com: could not connect to host
+adnot.am: did not receive HSTS header
adoal.net: did not receive HSTS header
adoge.me: could not connect to host
+adoll.ml: could not connect to host
adonairelogios.com.br: could not connect to host
-adoniscabaret.co.uk: could not connect to host
adopteunsiteflash.com: could not connect to host
-adora-illustrations.fr: did not receive HSTS header
adorade.ro: could not connect to host
+adorai.tk: could not connect to host
+adoriasoft.com: did not receive HSTS header
adprospb.com: did not receive HSTS header
-adquisitio.de: could not connect to host
+adquisitio.de: did not receive HSTS header
adquisitio.in: 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
+adriancohea.ninja: could not connect to host
adrianseo.ro: could not connect to host
-adrien.vin: max-age too low: 172800
+adrien.vin: did not receive HSTS header
adrinet.tk: could not connect to host
adrl.ca: could not connect to host
adsfund.org: could not connect to host
@@ -819,38 +1292,41 @@ aduedu.de: did not receive HSTS header
adult.properties: could not connect to host
adultbizz.eu: could not connect to host
adunanza.net: did not receive HSTS header
+aduthapa.com: could not connect to host
advaithnikhi.ml: could not connect to host
advaithnikhi.tk: could not connect to host
advanced-online.eu: could not connect to host
+advancedoneroofing.com: did not receive HSTS header
advancedplasticsurgerycenter.com: did not receive HSTS header
-advancedseotool.it: did not receive HSTS header
advancedstudio.ro: could not connect to host
-advancedwriters.com: could not connect to host
-advantagemechanicalinc.com: did not receive HSTS header
-advelty.cz: could not connect to host
-adventaholdings.com: did not receive HSTS header
+advelty.cz: did not receive HSTS header
+advenapay.com: could not connect to host
adventistdeploy.org: could not connect to host
-adventures.is: did not receive HSTS header
+adventureally.com: could not connect to host
+adventures.de: max-age too low: 0
adver.top: did not receive HSTS header
advertisemant.com: could not connect to host
advicepro.org.uk: did not receive HSTS header
adviespuntklokkenluiders.nl: could not connect to host
-adwokatkosterka.pl: did not receive HSTS header
+advocaten-avocats.be: did not receive HSTS header
+advocatenalkmaar.org: did not receive HSTS header
adzie.xyz: could not connect to host
adzuna.co.uk: did not receive HSTS header
+ae8601.com: could not connect to host
aegialis.com: did not receive HSTS header
aegisinsight.com: did not receive HSTS header
-aelisya.ch: could not connect to host
+aei-asc.edu.my: did not receive HSTS header
+aelisya.ch: did not receive HSTS header
aemoria.com: could not connect to host
aeon.wiki: could not connect to host
aep-digital.com: did not receive HSTS header
aerapass.io: did not receive HSTS header
aerialmediapro.net: could not connect to host
-aerobasegroup.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
aerolog.co: did not receive HSTS header
aeroparking.es: did not receive HSTS header
aerotheque.fr: did not receive HSTS header
aes256.ru: could not connect to host
+aestheticdr.org: 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
@@ -860,18 +1336,29 @@ aevpn.org: could not connect to host
aeyoun.com: did not receive HSTS header
af-fotografie.net: did not receive HSTS header
af-internet.nl: did not receive HSTS header
+af-tech.cz: did not receive HSTS header
+afbeelding.im: could not connect to host
+afbeeldinguploaden.nl: could not connect to host
+afcurgentcarelyndhurst.com: could not connect to host
afdkompakt.de: max-age too low: 86400
afeefzarapackages.com: did not receive HSTS header
+affiliateroyale.com: did not receive HSTS header
affily.io: could not connect to host
affinity.vc: did not receive HSTS header
+affloc.com: could not connect to host
+affordableblindsexpress.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
affordablebouncycastle.co.uk: did not receive HSTS header
affordableenergyadvocates.com: could not connect to host
-affordablepapers.com: could not connect to host
+affordablekilimanjaro.com: could not connect to host
aficotroceni.ro: did not receive HSTS header
+afinterio.com: did not receive HSTS header
afiru.net: could not connect to host
aflamtorrent.com: could not connect to host
afmchandler.com: could not connect to host
+afmt.fr: did not receive HSTS header
+afonso.io: did not receive HSTS header
afp548.tk: could not connect to host
+afree.ir: did not receive HSTS header
africatravel.de: did not receive HSTS header
after.im: could not connect to host
afterskool.eu: could not connect to host
@@ -880,101 +1367,124 @@ afuh.de: could not connect to host
afvallendoeje.nu: could not connect to host
afyou.co.kr: could not connect to host
afzco.asia: did not receive HSTS header
+ag-websolutions.de: 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
agdalieso.com.ba: could not connect to host
-ageg.ca: could not connect to host
+age.hk: did not receive HSTS header
agelesscitizen.com: could not connect to host
agelesscitizens.com: could not connect to host
agenbettingasia.com: did not receive HSTS header
agenceactiv.immo: did not receive HSTS header
agenceklic.com: did not receive HSTS header
+agencewebstreet.com: could not connect to host
agenciagriff.com: did not receive HSTS header
+agenciamdg.com.br: could not connect to host
agencymanager.be: could not connect to host
+agendazilei.com: did not receive HSTS header
agent6.com.au: did not receive HSTS header
agentseeker.ca: could not connect to host
agevio.com: could not connect to host
agglo-sion.ch: could not connect to host
aggr.pw: did not receive HSTS header
agiairini.cz: could not connect to host
-agic.io: could not connect to host
+agic.io: did not receive HSTS header
agilebits.net: could not connect to host
agingstop.net: could not connect to host
+agiserv.fr: could not connect to host
agonswim.com: did not receive HSTS header
agoravm.tk: could not connect to host
+agostinhoenascimento.com.br: could not connect to host
+agouraexteriorlighting.com: could not connect to host
agowa.eu: did not receive HSTS header
-agracan.com: could not connect to host
+agowa338.de: did not receive HSTS header
+agracan.com: did not receive HSTS header
agrafix.design: did not receive HSTS header
agrias.com.br: did not receive HSTS header
+agricolo.ch: could not connect to host
agrikulturchic.com: could not connect to host
+agrilinks.org: did not receive HSTS header
agrimap.com: did not receive HSTS header
agro-id.gov.ua: did not receive HSTS header
-agro.rip: did not receive HSTS header
+agro.rip: could not connect to host
agroglass.com.br: did not receive HSTS header
agtv.com.br: did not receive HSTS header
ahabingo.com: did not receive HSTS header
+ahd1234.com: max-age too low: 0
ahelos.tk: could not connect to host
+aheng.me: could not connect to host
ahiru3.com: did not receive HSTS header
+ahmadly.com: max-age too low: 2592000
aholic.co: did not receive HSTS header
ahoynetwork.com: did not receive HSTS header
ahri.ovh: could not connect to host
ahsin.online: could not connect to host
ahwah.net: could not connect to host
ahwatukeefoothillsmontessori.com: could not connect to host
+ai.je: did not receive HSTS header
+ai00.vip: could not connect to host
ai1989.com: could not connect to host
aibaoyou.com: could not connect to host
aibsoftware.mx: could not connect to host
-aicial.com: did not receive HSTS header
+aicial.com: could not connect to host
aicial.com.au: could not connect to host
aidanwoods.com: did not receive HSTS header
+aidarikako.com: did not receive HSTS header
aide-admin.com: did not receive HSTS header
aide-valais.ch: could not connect to host
-aidikofflaw.com: did not receive HSTS header
+aidikofflaw.com: could not connect to host
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
aiheisi.com: could not connect to host
aikenorganics.com: could not connect to host
+aiki.tk: did not receive HSTS header
aim-consultants.com: did not receive HSTS header
-aimerworld.com: could not connect to host
+aimerworld.com: did not receive HSTS header
aimrom.org: could not connect to host
+ainishitou.com: max-age too low: 0
ainrb.com: could not connect to host
-aintevenmad.ch: could not connect to host
-aioboot.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+ainutrition.co.uk: did not receive HSTS header
+aioboot.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
aip-marine.com: could not connect to host
aiphyron.com: could not connect to host
aiponne.com: could not connect to host
airbly.com: did not receive HSTS header
airconsalberton.co.za: did not receive HSTS header
+airconsboksburg.co.za: did not receive HSTS header
airconsfourways.co.za: did not receive HSTS header
airconsmidrand.co.za: did not receive HSTS header
airconsrandburg.co.za: did not receive HSTS header
airconssandton.co.za: did not receive HSTS header
airedaleterrier.com.br: could not connect to host
-airfax.io: could not connect to host
airlea.com: could not connect to host
airlinecheckins.com: did not receive HSTS header
-airlinesettlement.com: did not receive HSTS header
airmazinginflatables.com: could not connect to host
+airportlimototoronto.com: did not receive HSTS header
airproto.com: did not receive HSTS header
+airpurifierproductsonline.com: could not connect to host
airsick.guide: did not receive HSTS header
airtimefranchise.com: did not receive HSTS header
aishnair.com: could not connect to host
aisle3.space: could not connect to host
aisr.nl: did not receive HSTS header
aiticon.de: did not receive HSTS header
+aivd.lol: could not connect to host
aivene.com: could not connect to host
aiw-thkoeln.online: could not connect to host
aixxe.net: did not receive HSTS header
-aizxxs.net: could not connect to host
+ajapaik.ee: did not receive HSTS header
+ajces.com: could not connect to host
ajetaci.cz: could not connect to host
-ajibot.com: could not connect to host
+ajibot.com: did not receive HSTS header
ajmahal.com: could not connect to host
ajouin.com: could not connect to host
ajw-group.com: did not receive HSTS header
+ak47-miyamoto.spdns.org: did not receive HSTS header
aka.my: did not receive HSTS header
+akazakov.info: could not connect to host
akboy.pw: could not connect to host
akclinics.org: did not receive HSTS header
akcounselingservices.com: did not receive HSTS header
@@ -984,22 +1494,26 @@ akhilindurti.com: could not connect to host
akhras.at: did not receive HSTS header
akiba-server.info: could not connect to host
akihiro.xyz: could not connect to host
+akilli-devre.com: could not connect to host
akita-boutique.com: could not connect to host
akita-stream.com: could not connect to host
akkadia.cc: could not connect to host
akoch.net: could not connect to host
akombakom.net: could not connect to host
-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]
+akoww.de: could not connect to host
+akracing.se: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
akritikos.info: could not connect to host
akselimedia.fi: could not connect to host
akstudentsfirst.org: could not connect to host
aktan.com.br: could not connect to host
aktivist.in: did not receive HSTS header
akul.co.in: could not connect to host
-al-f.net: could not connect to host
+akustik.tech: could not connect to host
+akyildiz.net: did not receive HSTS header
+al-f.net: did not receive HSTS header
al-shami.net: could not connect to host
-alamgir.works: could not connect to host
-alanhuang.name: could not connect to host
+alamancetv.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+alandoyle.com: 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
@@ -1007,44 +1521,47 @@ alariel.de: did not receive HSTS header
alarme-gps.ch: could not connect to host
alarmegps.ch: could not connect to host
alarmsystemreviews.com: did not receive HSTS header
-alarna.de: could not connect to host
alasta.info: could not connect to host
alauda-home.de: could not connect to host
alaundeil.xyz: could not connect to host
+alaxyjewellers.co.za: did not receive HSTS header
+alb-flirt.de: did not receive HSTS header
albanien.guide: could not connect to host
alberguecimballa.es: could not connect to host
+albertbogdanowicz.pl: did not receive HSTS header
albertify.xyz: could not connect to host
albertonplumber24-7.co.za: did not receive HSTS header
albertopimienta.com: did not receive HSTS header
albinma.com: could not connect to host
albuic.tk: could not connect to host
alcantarafleuriste.com: did not receive HSTS header
-alcatelonetouch.us: could not connect to host
alcatraz.online: did not receive HSTS header
alcazaar.com: could not connect to host
alchemia.co.il: did not receive HSTS header
alcorao.org: could not connect to host
aldes.co.za: did not receive HSTS header
+aldo-vandini.de: did not receive HSTS header
aldred.cloud: could not connect to host
aleax.me: could not connect to host
alecvannoten.be: did not receive HSTS header
aledg.cl: did not receive HSTS header
alenan.org: could not connect to host
alertaenlinea.gov: did not receive HSTS header
-alessandro.pw: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+alessandro.pw: did not receive HSTS header
alessandroz.ddns.net: could not connect to host
alessandroz.pro: could not connect to host
alethearose.com: could not connect to host
+alexandermuetzel.de: did not receive HSTS header
alexandernorth.ch: could not connect to host
-alexanderzinn.com: did not receive HSTS header
-alexandrastylist.com: could not connect to host
alexandre.sh: did not receive HSTS header
+alexandrefa.ovh: could not connect to host
alexandros.io: could not connect to host
+alexbresnahan.com: could not connect to host
alexdaulby.com: did not receive HSTS header
alexdodge.ca: did not receive HSTS header
-alexei.su: max-age too low: 7776000
alexfisherhealth.com.au: did not receive HSTS header
alexhaydock.co.uk: did not receive HSTS header
+alexio.ml: could not connect to host
alexischaussy.xyz: could not connect to host
alexismeza.com: could not connect to host
alexismeza.com.mx: could not connect to host
@@ -1052,22 +1569,26 @@ alexismeza.dk: could not connect to host
alexismeza.es: could not connect to host
alexismeza.nl: could not connect to host
alexkidd.de: could not connect to host
+alexkott.com: did not receive HSTS header
alexmak.net: did not receive HSTS header
alexmol.tk: could not connect to host
-alexmroberts.net: could not connect to host
alexperry.io: could not connect to host
-alexsinnott.me: could not connect to host
+alexsinnott.me: did not receive HSTS header
+alexwilliams.tech: did not receive HSTS header
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
-alftrain.com: could not connect to host
algarmatic-automatismos.pt: could not connect to host
+algbee.com: could not connect to host
+algebra-quiz.com: could not connect to host
algebraaec.com: did not receive HSTS header
-algercounty.gov: could not connect to host
+algercounty.gov: did not receive HSTS header
alghaib.com: could not connect to host
-alibababee.com: could not connect to host
+algofactory.de: could not connect to host
+algorithmofsuccess.com: could not connect to host
+alibababee.com: did not receive HSTS header
alibip.de: could not connect to host
alicialab.org: could not connect to host
alien.bz: did not receive HSTS header
@@ -1077,21 +1598,20 @@ alinemaciel.adm.br: could not connect to host
alinode.com: could not connect to host
alis-test.tk: could not connect to host
alistairholland.me: did not receive HSTS header
-alistairpialek.com: max-age too low: 86400
alisync.com: could not connect to host
alittlebitcheeky.com: did not receive HSTS header
aliwebstore.com: could not connect to host
-aljammaz.holdings: did not receive HSTS header
-aljmz.com: did not receive HSTS header
+aljammaz.holdings: could not connect to host
+aljaspod.net: could not connect to host
+aljmz.com: could not connect to host
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-subtitles.com: did not receive HSTS header
all.tf: could not connect to host
-all4os.com: did not receive HSTS header
+all4os.com: could not connect to host
allaboutbelgaum.com: did not receive HSTS header
alldaymonitoring.com: could not connect to host
-alldigitalsolutions.com: did not receive HSTS header
alldm.ru: could not connect to host
allegro-inc.com: did not receive HSTS header
allemobieleproviders.nl: could not connect to host
@@ -1100,14 +1620,15 @@ allerbestefreunde.de: did not receive HSTS header
allfreelancers.su: did not receive HSTS header
allgrass.es: did not receive HSTS header
allgrass.net: did not receive HSTS header
-allhard.org: could not connect to host
alliance-compacts.com: did not receive HSTS header
+alliances-faq.de: could not connect to host
+alligatorge.de: did not receive HSTS header
allinnote.com: could not connect to host
allinone-ranking150.com: did not receive HSTS header
allinonecyprus.com: did not receive HSTS header
allkindzabeats.com: could not connect to host
-allladyboys.com: could not connect to host
allmbw.com: could not connect to host
+allmebel.ru: did not receive HSTS header
allmystery.de: did not receive HSTS header
allo-symo.fr: did not receive HSTS header
allods-zone.ru: did not receive HSTS header
@@ -1115,35 +1636,42 @@ alloffice.com.ua: did not receive HSTS header
alloinformatique.net: could not connect to host
alloutatl.com: could not connect to host
alloydevil.nl: did not receive HSTS header
-allplayer.tk: did not receive HSTS header
allpropertyservices.com: did not receive HSTS header
allprorisk.com: did not receive HSTS header
+allram.one: did not receive HSTS header
allrealty.co.za: could not connect to host
allscammers.exposed: could not connect to host
allseasons-cleaning.co.uk: could not connect to host
allshousedesigns.com: did not receive HSTS header
allsortscastles.co.uk: could not connect to host
-allstarautokiaparts.com: could not connect to host
allstarpartyinflatables.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
+allthingsblogging.com: did not receive HSTS header
allthingsfpl.com: could not connect to host
-allvips.ru: could not connect to host
almagalla.com: could not connect to host
-almatinki.com: could not connect to host
aloalabs.com: did not receive HSTS header
alocato.com: could not connect to host
+aloexn.com: max-age too low: 0
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
+alpenjuice.com: could not connect to host
+alpha-assistant.com: could not connect to host
alpha.irccloud.com: could not connect to host
alphabit-secure.com: could not connect to host
+alphabrock.cn: did not receive HSTS header
alphabuild.io: could not connect to host
-alphagamers.net: could not connect to host
+alphadote.com: could not connect to host
+alphafitnesslibya.com: could not connect to host
+alphagamers.net: max-age too low: 0
+alphagateanddoor.com: did not receive HSTS header
alphalabs.xyz: could not connect to host
+alphatrash.de: did not receive HSTS header
+alpineplanet.com: did not receive HSTS header
+alpinetrek.co.uk: max-age too low: 604800
+alpiniste.fr: max-age too low: 604800
alqassam.net: did not receive HSTS header
alquiladoramexico.com: did not receive HSTS header
als-hardware.co.za: did not receive HSTS header
@@ -1153,44 +1681,48 @@ alt33c3.org: could not connect to host
altahrim.net: could not connect to host
altaide.com: did not receive HSTS header
altailife.ru: did not receive HSTS header
-altamarea.se: did not receive HSTS header
-altbinaries.com: could not connect to host
-alteqnia.com: could not connect to host
+altamarea.se: could not connect to host
+alteqnia.com: did not receive HSTS header
altercpa.ru: max-age too low: 0
altered.network: could not connect to host
+altered.si: could not connect to host
+alternativedev.ca: could not connect to host
altfire.ca: could not connect to host
altiacaselight.com: could not connect to host
-altitudemoversdenver.com: max-age too low: 300
altoneum.com: could not connect to host
altporn.xyz: could not connect to host
-altruistgroup.net: max-age too low: 300
-alttrackr.com: could not connect to host
+alts.li: did not receive HSTS header
aluminium-scaffolding.co.uk: could not connect to host
alunjam.es: did not receive HSTS header
alunonaescola.com.br: did not receive HSTS header
aluoblog.pw: could not connect to host
aluoblog.top: could not connect to host
-aluroof.eu: could not connect to host
+aluro.info: could not connect to host
alusta.co: could not connect to host
+alviano.com: did not receive HSTS header
alvis-audio.com: did not receive HSTS header
alvn.ga: could not connect to host
alwaysonssl.com: could not connect to host
+alxpresentes.com.br: could not connect to host
+am3.se: could not connect to host
+am6118.com: could not connect to host
am8888.top: could not connect to host
-amaderelectronics.com: max-age too low: 2592000
amadilo.de: could not connect to host
-amadoraslindas.com: could not connect to host
amaforro.com: could not connect to host
amaforums.org: did not receive HSTS header
+amalfi5stars.com: did not receive HSTS header
amalficoastchauffeur.com: could not connect to host
amandaonishi.com: could not connect to host
-amandaworldstudies.com: could not connect to host
+amao999.com: max-age too low: 0
amaranthus.com.ph: could not connect to host
-amateri.com: could not connect to host
+amartinz.at: could not connect to host
+amateurchef.co.uk: did not receive HSTS header
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: could not connect to host
+amazingfloridagulfhomes.com: did not receive HSTS header
+amazinginflatables.co.uk: could not connect to host
ambiancestudio.ro: did not receive HSTS header
ambouncyhire.com: could not connect to host
ambrosius.io: could not connect to host
@@ -1199,14 +1731,18 @@ amdouglas.uk: could not connect to host
amechancez.site: could not connect to host
amelandadventure.nl: did not receive HSTS header
amerhd.com: could not connect to host
+america250.gov: could not connect to host
american-truck-simulator.de: could not connect to host
american-truck-simulator.net: could not connect to host
americanbio.com: did not receive HSTS header
americandistribuidora.com: did not receive HSTS header
+americanindiancoc.org: did not receive HSTS header
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
+amerigroup.com: did not receive HSTS header
+ames.gq: could not connect to host
ameschristian.net: did not receive HSTS header
amesplash.co.uk: did not receive HSTS header
amethystcards.co.uk: could not connect to host
@@ -1215,15 +1751,19 @@ 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
+amicimar.it: could not connect to host
amicsdelbus.com: did not receive HSTS header
+amielle.com: did not receive HSTS header
+amielucha.com: did not receive HSTS header
amigogeek.net: could not connect to host
-amihub.com: could not connect to host
+amihub.com: did not receive HSTS header
amilum.org: could not connect to host
amilx.com: could not connect to host
amilx.org: could not connect to host
amimoto-ami.com: did not receive HSTS header
-amin.ga: did not receive HSTS header
+amin.ga: could not connect to host
amin.one: could not connect to host
+aminafrance.com: could not connect to host
amisharingstuff.com: could not connect to host
amishsecurity.com: could not connect to host
amitse.com: could not connect to host
@@ -1232,31 +1772,33 @@ 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
amorimendes.com.br: could not connect to host
+amphibo.ly: could not connect to host
ampledesigners.com: could not connect to host
ampleinfographics.com: could not connect to host
+ampol-agd.pl: did not receive HSTS header
amri.nl: did not receive HSTS header
amtentertainments.co.uk: 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
+amyrussellhair.com: could not connect to host
+amzanalyzer.com: did not receive HSTS header
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
anaisypirueta.es: did not receive HSTS header
anajianu.ro: max-age too low: 2592000
anakros.me: could not connect to host
-analangelsteen.com: could not connect to host
-analisilaica.it: did not receive HSTS header
analpantyhose.org: could not connect to host
-analteengirls.net: could not connect to host
analytic-s.ml: could not connect to host
analyticsinmotion.net: could not connect to host
analyzemyfriends.com: could not connect to host
+ananas.gq: could not connect to host
+anarchistos.tk: could not connect to host
anarchyrp.life: could not connect to host
anassiriphotography.com: could not connect to host
anastasiafond.com: did not receive HSTS header
@@ -1265,7 +1807,7 @@ 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
+ancientcraft.eu: did not receive HSTS header
ancientkarma.com: could not connect to host
andbraiz.com: did not receive HSTS header
andere-gedanken.net: did not receive HSTS header
@@ -1273,28 +1815,31 @@ anderskp.dk: did not receive HSTS header
anderslind.dk: could not connect to host
andiscyber.space: could not connect to host
andre-ballensiefen.de: could not connect to host
-andreas-kluge.eu: could not connect to host
andreasanti.net: did not receive HSTS header
andreasbasurto.com: could not connect to host
-andreasbreitenlohner.de: max-age too low: 600000
andreasfritz-fotografie.de: could not connect to host
andreaskluge.eu: could not connect to host
-andreasr.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+andreasmuelhaupt.de: could not connect to host
+andreasr.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
andreastoneman.com: could not connect to host
andrefaber.nl: did not receive HSTS header
-andrei-coman.com: did not receive HSTS header
+andrei-coman.com: could not connect to host
andreigec.net: could not connect to host
+andrejbenz.com: could not connect to host
andrejstefanovski.com: did not receive HSTS header
andrepicard.de: could not connect to host
andrerose.ca: did not receive HSTS header
-andrespaz.com: max-age too low: 0
andrewbroekman.com: could not connect to host
andrewdavidwong.com: did not receive HSTS header
andrewdaws.co: could not connect to host
andrewdaws.info: could not connect to host
andrewdaws.me: could not connect to host
andrewdaws.tv: could not connect to host
+andrewhowden.com: did not receive HSTS header
+andrewletson.com: could not connect to host
andrewmichaud.beer: could not connect to host
+andrewmichaud.com: could not connect to host
+andrewmichaud.me: could not connect to host
andrewrdaws.com: could not connect to host
andrewregan.me: could not connect to host
andrewtebert.com: did not receive HSTS header
@@ -1302,17 +1847,20 @@ andrewthelott.net: did not receive HSTS header
andrewvoce.com: did not receive HSTS header
andrewyg.net: could not connect to host
andreypopp.com: could not connect to host
+andrezadnik.com: did not receive HSTS header
android: could not connect to host
androidprosmart.com: could not connect to host
+androidservicetool.com: could not connect to host
androidsphone.com: did not receive HSTS header
androled.fr: max-age too low: 5184000
-androoz.se: could not connect to host
+andronika.net: could not connect to host
+androoz.se: did not receive HSTS header
+andso.cn: did not receive HSTS header
andyclark.io: could not connect to host
andycloud.dynu.net: could not connect to host
-andycraftz.eu: did not receive HSTS header
andymartin.cc: could not connect to host
andymelichar.com: max-age too low: 0
-andysroom.dynu.net: could not connect to host
+andymoore.info: did not receive HSTS header
andyuk.org: could not connect to host
anecuni-club.com: could not connect to host
anecuni-rec.com: could not connect to host
@@ -1321,9 +1869,9 @@ anfenglish.com: did not receive HSTS header
anfsanchezo.co: could not connect to host
anfsanchezo.me: could not connect to host
ange-de-bonheur444.com: could not connect to host
+angelcojuelo.com: could not connect to host
angelic47.com: could not connect to host
angeloroberto.ch: did not receive HSTS header
-angeloventuri.com: did not receive HSTS header
angelsgirl.eu.org: could not connect to host
angervillelorcher.fr: did not receive HSTS header
anghami.com: did not receive HSTS header
@@ -1337,16 +1885,16 @@ anguiao.com: did not receive HSTS header
aniaimichal.eu: could not connect to host
aniforprez.net: could not connect to host
anim.ee: could not connect to host
+animacurse.moe: did not receive HSTS header
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: max-age too low: 2628000
+animan.ca: 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
-animes-portal.info: did not receive HSTS header
animesfusion.com.br: could not connect to host
-animurecs.com: could not connect to host
+animurecs.com: did not receive HSTS header
aniplus.cf: could not connect to host
aniplus.gq: could not connect to host
aniplus.ml: could not connect to host
@@ -1358,13 +1906,16 @@ anivar.net: could not connect to host
ankakaak.com: could not connect to host
ankaraprofesyonelnakliyat.com: did not receive HSTS header
ankaraprofesyonelnakliyat.com.tr: did not receive HSTS header
+ankarayilmaznakliyat.com: did not receive HSTS header
+ankarayucelnakliyat.com: did not receive HSTS header
ankenbrand.me: did not receive HSTS header
-ankitha.in: max-age too low: 0
-ankya9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+ankya9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
anlp.top: could not connect to host
annabellaw.com: did not receive HSTS header
+annafiore.com.br: could not connect to host
annahmeschluss.de: did not receive HSTS header
annarbor.group: did not receive HSTS header
+annasvapor.se: could not connect to host
annetaan.fi: could not connect to host
annevankesteren.com: could not connect to host
annevankesteren.org: could not connect to host
@@ -1372,32 +1923,35 @@ annicascakes.nl: could not connect to host
annotate.software: could not connect to host
annrusnak.com: did not receive HSTS header
annsbouncycastles.com: could not connect to host
+anoboy.org: did not receive HSTS header
anomaly.ws: did not receive HSTS header
anonboards.com: could not connect to host
anonrea.ch: could not connect to host
-anons.fr: 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
+anorak.tech: could not connect to host
anothermilan.net: could not connect to host
-anoxinon.de: max-age too low: 2628000
ansdell.info: could not connect to host
anseo.ninja: could not connect to host
ansermfg.com: max-age too low: 0
ansgar.tk: could not connect to host
anshuman-chatterjee.com: did not receive HSTS header
-anshumanbiswas.com: could not connect to host
+ansogning-sg.dk: did not receive HSTS header
answers-online.ru: could not connect to host
ant.land: could not connect to host
antecim.fr: could not connect to host
antenasmundosat.com.br: did not receive HSTS header
+anteprima.info: could not connect to host
+anthedesign.fr: did not receive HSTS header
anthenor.co.uk: could not connect to host
anthony-rouanet.com: did not receive HSTS header
anthonyaires.com: did not receive HSTS header
anthonyavon.com: could not connect to host
+anthonycarbonaro.com: could not connect to host
anthonyloop.com: did not receive HSTS header
-anthro.id: did not receive HSTS header
+anthro.id: could not connect to host
antibioticshome.com: max-age too low: 604800
antifraud.net.ru: could not connect to host
antiled.by: could not connect to host
@@ -1407,31 +1961,33 @@ antipa.ch: could not connect to host
antirayapmalang.com: max-age too low: 36000
antoine-roux.fr: did not receive HSTS header
antoinebetas.be: did not receive HSTS header
-antoined.fr: did not receive HSTS header
-antoinemary.io: did not receive HSTS header
+antoined.fr: could not connect to host
+antoinemary.io: could not connect to host
antoineschaller.ch: did not receive HSTS header
antoniomarques.eu: did not receive HSTS header
-antoniorequena.com.ve: could not connect to host
+antoniorequena.com.ve: max-age too low: 0
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
anunayk.com: could not connect to host
-anycoin.me: could not connect to host
+anycoin.me: did not receive HSTS header
anyfood.fi: could not connect to host
-anypool.fr: did not receive HSTS header
-anypool.net: did not receive HSTS header
+anynode.net: did not receive HSTS header
+anypool.fr: could not connect to host
+anypool.net: could not connect to host
anyprime.net: could not connect to host
anythingautowebster.com: did not receive HSTS header
anytonetech.com: did not receive HSTS header
anyways.at: could not connect to host
-ao-dev.com: could not connect to host
aobogo.com: could not connect to host
aocast.info: could not connect to host
+aoicprobationil.gov: could not connect to host
aojao.cn: could not connect to host
aojf.fr: could not connect to host
aoku3d.com: could not connect to host
aolabs.nz: did not receive HSTS header
-aomberg.com: did not receive HSTS header
+aomberg.com: could not connect to host
aomonk.com: did not receive HSTS header
aooobo.com: could not connect to host
aosus.org: did not receive HSTS header
@@ -1440,40 +1996,48 @@ aovcentrum.nl: did not receive HSTS header
aozora.moe: could not connect to host
apadrinaunolivo.org: did not receive HSTS header
apaginastore.com.br: could not connect to host
+aparaatti.org: could not connect to host
+apartment-natik.fr: did not receive HSTS header
+apasaja.tech: 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
+apethink.net: did not receive HSTS header
+apfelcholest.de: did not receive HSTS header
+api-geek.com: did not receive HSTS header
api.mega.co.nz: could not connect to host
+apiary.shop: 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
apiled.io: could not connect to host
apis.blue: could not connect to host
apis.google.com: did not receive HSTS header (error ignored - included regardless)
apis.world: could not connect to host
apivia.fr: did not receive HSTS header
apkdv.com: did not receive HSTS header
-apkmod.id: did not receive HSTS header
apkoyunlar.club: could not connect to host
apkriver.com: could not connect to host
apl2bits.net: 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
+apmpproject.org: could not connect to host
apnakliyat.com: did not receive HSTS header
apo-deutschland.biz: could not connect to host
apoil.org: could not connect to host
-apolloyl.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
aporter.ddns.net: could not connect to host
+aposke.com: could not connect to host
apostilasaprovacao.com: could not connect to host
apotheek-nl.org: did not receive HSTS header
apotheke-ch.org: could not connect to host
app: could not connect to host
app-arena.com: did not receive HSTS header
app.manilla.com: could not connect to host
+app666365.com: did not receive HSTS header
apparels24.com: did not receive HSTS header
appart.ninja: could not connect to host
appcoins.io: did not receive HSTS header
@@ -1487,6 +2051,7 @@ appimlab.it: could not connect to host
apple-watch-zubehoer.de: could not connect to host
apple.ax: could not connect to host
applejacks-bouncy-castles.co.uk: could not connect to host
+appleranch.com: could not connect to host
applesana.es: could not connect to host
applewatch.co.nz: did not receive HSTS header
applez.xyz: could not connect to host
@@ -1498,27 +2063,31 @@ appraisal-comps.com: could not connect to host
appreciationkards.com: did not receive HSTS header
approlys.fr: did not receive HSTS header
apps-for-fishing.com: could not connect to host
+apps-perso.com: could not connect to host
apps4all.sytes.net: could not connect to host
appsbystudio.co.uk: could not connect to host
appsdash.io: could not connect to host
+appshuttle.com: 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
-aprefix.com: could not connect to host
-aprpullmanportermuseum.org: did not receive HSTS header
-aprsdroid.org: could not connect to host
+appxcrypto.com: did not receive HSTS header
+aprendiendoforexhoy.com: could not connect to host
+aprpullmanportermuseum.org: could not connect to host
aptitude9.com: could not connect to host
aqilacademy.com.au: could not connect to host
aqqrate.com: could not connect to host
+aquabar.co.il: did not receive HSTS header
+aquafc.com: could not connect to host
aquariumaccessories.shop: could not connect to host
aquaron.com: did not receive HSTS header
aquilaguild.com: could not connect to host
aquilalab.com: could not connect to host
aquireceitas.com: 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
+arabicxz.com: could not connect to host
aradulconteaza.ro: could not connect to host
+aramado.com: did not receive HSTS header
aran.me.uk: could not connect to host
aranel.me: could not connect to host
arawaza.biz: could not connect to host
@@ -1528,16 +2097,17 @@ arboleda-hurtado.com: could not connect to host
arboworks.com: could not connect to host
arbu.eu: could not connect to host
arcadiaeng.com: did not receive HSTS header
+arcaea.net: did not receive HSTS header
arcbit.io: could not connect to host
+archematerial.com: did not receive HSTS header
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: did not receive HSTS header
+ardao.me: did not receive HSTS header
+ardorlabs.se: could not connect to host
area3.org: could not connect to host
area536.com: did not receive HSTS header
areallyneatwebsite.com: could not connect to host
@@ -1545,31 +2115,38 @@ arent.kz: did not receive HSTS header
arenzanaphotography.com: could not connect to host
arewedubstepyet.com: could not connect to host
areyouever.me: could not connect to host
+arg.zone: did not receive HSTS header
+argama-nature.com: could not connect to host
argennon.xyz: could not connect to host
argh.io: could not connect to host
arguggi.co.uk: could not connect to host
ariaartgallery.com: did not receive HSTS header
-ariacreations.net: did not receive HSTS header
arifburhan.online: could not connect to host
arifp.me: could not connect to host
arimarie.com: could not connect to host
arinflatablefun.co.uk: could not connect to host
+arisevendor.net: could not connect to host
arislight.com: could not connect to host
aristilabs.com: did not receive HSTS header
aristocratps.com: did not receive HSTS header
arithxu.com: did not receive HSTS header
arizer.com: did not receive HSTS header
+arizonaautomobileclub.com: could not connect to host
+arizonahomeownerinsurance.com: could not connect to host
arka.gq: did not receive HSTS header
+arkadelphia.gov: could not connect to host
+arkaic.dyndns.org: could not connect to host
arkbyte.com: did not receive HSTS header
arknodejs.com: could not connect to host
arlatools.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
armazemdaminiatura.com.br: could not connect to host
+armazemgourmetbrasil.com.br: did not receive HSTS header
armeni-jewellery.gr: did not receive HSTS header
armenians.online: could not connect to host
+armeo.top: could not connect to host
armingrodon.de: did not receive HSTS header
armodec.com: did not receive HSTS header
armor.com: did not receive HSTS header
@@ -1579,12 +2156,16 @@ armory.supplies: could not connect to host
armsday.com: could not connect to host
armyofbane.com: did not receive HSTS header
armytricka.cz: did not receive HSTS header
+arnakdanielian.com: could not connect to host
arnaudminable.net: could not connect to host
arne-petersen.net: did not receive HSTS header
+arne.codes: max-age too low: 172800
arnesolutions.com: could not connect to host
-arnevankauter.com: could not connect to host
+arno-klein.fr: could not connect to host
+arno.pm: could not connect to host
+arogyadhamhealth.com: could not connect to host
aromaclub.nl: did not receive HSTS header
-around-the-blog.com: did not receive HSTS header
+around-the-blog.com: could not connect to host
aroundme.org: could not connect to host
arpa.ph: did not receive HSTS header
arpr.co: did not receive HSTS header
@@ -1593,24 +2174,28 @@ arrivedconsulting.com: could not connect to host
arrow-cloud.nl: could not connect to host
arrowfunction.com: could not connect to host
arrowgrove.com: could not connect to host
+arrowheadflats.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+arrowit.net: could not connect to host
ars-design.net: could not connect to host
arsenal.ru: could not connect to host
arsk1.com: could not connect to host
+art2web.net: could not connect to host
artansoft.com: could not connect to host
artaronquieres.com: did not receive HSTS header
artartefatos.com.br: could not connect to host
artbytik.ru: did not receive HSTS header
-artefakt.es: could not connect to host
artegusto.ru: did not receive HSTS header
artemicroway.com.br: could not connect to host
-arteseideias.com.pt: did not receive HSTS header
+artemis.re: did not receive HSTS header
artesupra.com: did not receive HSTS header
-arti-group.ml: did not receive HSTS header
+artetrama.com: did not receive HSTS header
+arthur.cn: did not receive HSTS header
+arti-group.ml: could not connect to host
articaexports.com: could not connect to host
artifex21.com: did not receive HSTS header
artifex21.fr: did not receive HSTS header
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]
+artisanhd.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
artisense.de: could not connect to host
artisphere.ch: did not receive HSTS header
artisticedgegranite.net: could not connect to host
@@ -1619,76 +2204,93 @@ artmaxi.eu: could not connect to host
artnims.com: could not connect to host
arto.bg: did not receive HSTS header
artofeyes.nl: could not connect to host
+artransparency.gov: did not receive HSTS header
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
+arviksa.co.uk: could not connect to host
arw.me: did not receive HSTS header
arzaroth.com: did not receive HSTS header
as.se: could not connect to host
as9178.net: could not connect to host
+asadzulfahri.com: max-age too low: 2592000
asafomba.com: could not connect to host
asahikoji.net: could not connect to host
asana.studio: did not receive HSTS header
asasuou.pw: could not connect to host
asc16.com: could not connect to host
+ascendprime.com: did not receive HSTS header
aschaefer.net: could not connect to host
asdpress.cn: could not connect to host
+asdyx.de: max-age too low: 0
+aseith.com: could not connect to host
aseko.gr: did not receive HSTS header
asepms.com: could not connect to host
+asge-handel.de: did not receive HSTS header
+ashastalent.com: could not connect to host
ashlane-cottages.com: could not connect to host
ashleakunowski.com: could not connect to host
ashleyadum.com: could not connect to host
ashleyfoley.photography: could not connect to host
-ashleymadison.com: could not connect to host
ashleymedway.com: could not connect to host
asian-archi.com.tw: did not receive HSTS header
asianbet77.co: did not receive HSTS header
asianbet77.net: did not receive HSTS header
asianodor.com: could not connect to host
+asirviablog.com: did not receive HSTS header
asisee.co.il: could not connect to host
+askcaisse.com: did not receive HSTS header
askfit.cz: did not receive HSTS header
askmagicconch.com: could not connect to host
-aslinfinity.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+askme24.de: could not connect to host
+asksatya.com: did not receive HSTS header
+askyourdentist.com: did not receive HSTS header
+aslinfinity.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
asm-x.com: could not connect to host
asmik-armenie.com: did not receive HSTS header
asmm.cc: did not receive HSTS header
asmui.ga: could not connect to host
asmui.ml: did not receive HSTS header
asoftwareco.com: did not receive HSTS header
+asoul.tw: could not connect to host
+aspectcontext.com: could not connect to host
asphaltfruehling.de: could not connect to host
-aspisdata.com: did not receive HSTS header
+aspisdata.com: could not connect to host
asral7.com: could not connect to host
asryflorist.com: did not receive HSTS header
ass.org.au: did not receive HSTS header
assadrivesloirecher.com: did not receive HSTS header
assdecoeur.org: could not connect to host
assekuranzjobs.de: could not connect to host
-asset-alive.com: did not receive HSTS header
+asset-alive.com: could not connect to host
asset-alive.net: could not connect to host
assetict.com: max-age too low: 0
assetsupervision.com: did not receive HSTS header
+assetvault.co.za: did not receive HSTS header
assindia.nl: did not receive HSTS header
assistance-personnes-agees.ch: could not connect to host
assistcart.com: could not connect to host
assurancesmons.be: did not receive HSTS header
-astaninki.com: could not connect to host
+astarforu.com: could not connect to host
astenretail.com: could not connect to host
asthon.cn: could not connect to host
astraalivankila.net: could not connect to host
+astral-imperium.uk: did not receive HSTS header
astral.gq: 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
astromelody.com: did not receive HSTS header
astronomie-fulda.de: did not receive HSTS header
astrosnail.pt.eu.org: could not connect to host
+astrovandalistas.cc: could not connect to host
astutr.co: could not connect to host
asucrews.com: could not connect to host
asuhe.cc: could not connect to host
asuhe.win: did not receive HSTS header
asuhe.xyz: could not connect to host
+asuka.io: did not receive HSTS header
async.be: could not connect to host
at-one.ca: did not receive HSTS header
at1.co: could not connect to host
@@ -1697,13 +2299,16 @@ atavio.at: could not connect to host
atavio.ch: could not connect to host
atavio.de: could not connect to host
atbeckett.com: did not receive HSTS header
-atcreform.gov: did not receive HSTS header
+atc.io: did not receive HSTS header
+atcreform.gov: could not connect to host
atelier-rk.com: did not receive HSTS header
atelier-viennois-cannes.fr: could not connect to host
atelierhupsakee.nl: did not receive HSTS header
ateliernihongo.ch: did not receive HSTS header
-ateliersantgervasi.com: did not receive HSTS header
-atendimentodelta.com.br: did not receive HSTS header
+ateliersantgervasi.com: max-age too low: 2592000
+atelierssud.swiss: could not connect to host
+atg.soy: could not connect to host
+atgroup.gr: did not receive HSTS header
athaliasoft.com: could not connect to host
athena-garage.co.uk: could not connect to host
athenelive.com: could not connect to host
@@ -1717,29 +2322,34 @@ atkdesign.pt: did not receive HSTS header
atlantahairsurgeon.com: did not receive HSTS header
atlas-5.site: could not connect to host
atlas-staging.ml: could not connect to host
-atlas.co: did not receive HSTS header
+atlas.co: could not connect to host
+atlaschiropractic.org: max-age too low: 0
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
+atom-china.org: could not connect to host
+atomic-bounce.com: could not connect to host
atomic.menu: could not connect to host
atomic.red: could not connect to host
-atomicbounce.co.uk: 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
attelage.net: did not receive HSTS header
attic118.com: could not connect to host
attimidesigns.com: did not receive HSTS header
-attogproductions.com: did not receive HSTS header
-atulhost.com: did not receive HSTS header
+attiremr.tk: could not connect to host
+attogproductions.com: could not connect to host
au-pair24.de: did not receive HSTS header
au.search.yahoo.com: max-age too low: 172800
au2pb.net: could not connect to host
aubiosales.com: could not connect to host
+auburn-housekeeper.com: could not connect to host
aucubin.moe: could not connect to host
+audialbuquerqueparts.com: did not receive HSTS header
audiblox.co.za: did not receive HSTS header
+audion.hr: did not receive HSTS header
audioonly.stream: could not connect to host
audiovisualdevices.com.au: did not receive HSTS header
audividi.shop: could not connect to host
@@ -1748,29 +2358,32 @@ 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
+augmentable.de: could not connect to host
+augmented-portal.com: did not receive HSTS header
augrandinquisiteur.com: did not receive HSTS header
august.black: did not receive HSTS header
aujapan.ru: could not connect to host
aulaschrank.gq: could not connect to host
+aunali1.com: could not connect to host
auntieme.com: did not receive HSTS header
-auntmia.com: could not connect to host
-aur.rocks: did not receive HSTS header
+aupasdecourses.com: could not connect to host
+aur.rocks: could not connect to host
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
+aureus.pw: could not connect to host
aurora-terraria.org: could not connect to host
aurorarecordings.com: could not connect to host
auroratownshipfd.org: did not receive HSTS header
aurosa.cz: did not receive HSTS header
aurugs.com: did not receive HSTS header
-ausec.ch: could not connect to host
-auskunftsbegehren.at: could not connect to host
auslandsjahr-usa.de: did not receive HSTS header
ausnah.me: could not connect to host
aussiecable.org: could not connect to host
aussiegreenmarks.com.au: did not receive HSTS header
-aussiehq.com.au: did not receive HSTS header
+aussiehq.com.au: could not connect to host
+aussiestoresonline.com: could not connect to host
aussiewebmarketing.com.au: did not receive HSTS header
austinmobilemechanics.net: did not receive HSTS header
austinstore.com.br: could not connect to host
@@ -1781,7 +2394,6 @@ australianfreebets.com.au: did not receive HSTS header
auth.mail.ru: did not receive HSTS header
authenitech.com: could not connect to host
authentication.io: could not connect to host
-authinfo-bestellen.de: could not connect to host
authint.com: could not connect to host
author24.ru: did not receive HSTS header
authoritynutrition.com: did not receive HSTS header
@@ -1793,16 +2405,22 @@ auto4trade.nl: could not connect to host
autobedarf.net: did not receive HSTS header
autobedrijfschalkoort.nl: did not receive HSTS header
autocarparts.ro: could not connect to host
+autoclean-plus.ch: did not receive HSTS header
+autocmall.com: did not receive HSTS header
autodeploy.it: could not connect to host
autoecolebudget.ch: did not receive HSTS header
autoecoledumontblanc.com: could not connect to host
autoeet.cz: did not receive HSTS header
-autoepc.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]
+autoepc.ro: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+autoeshop.eu: did not receive HSTS header
+autohaus-snater.de: did not receive HSTS header
autojuhos.sk: could not connect to host
-autokovrik-diskont.ru: did not receive HSTS header
+automaan.nl: did not receive HSTS header
+automacity.com: 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
+autoshopsolutions.com: 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
@@ -1815,9 +2433,9 @@ auvious.com: did not receive HSTS header
auxetek.se: could not connect to host
auxiliumincrementum.co.uk: could not connect to host
av.de: did not receive HSTS header
-av01.tv: could not connect to host
av163.cc: could not connect to host
avadatravel.com: did not receive HSTS header
+avalon-island.ru: could not connect to host
avalon-studios.de: could not connect to host
avalyuan.com: could not connect to host
avantmfg.com: did not receive HSTS header
@@ -1827,21 +2445,20 @@ 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
-avestawebbtjanst.se: could not connect to host
-avg.club: did not receive HSTS header
avi9526.pp.ua: could not connect to host
aviacao.pt: did not receive HSTS header
avidcruiser.com: did not receive HSTS header
+avidthink.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
aviodeals.com: could not connect to host
avitres.com: could not connect to host
+aviv.nyc: could not connect to host
avmemo.com: could not connect to host
avmo.pw: could not connect to host
-avmoo.com: could not connect to host
-avnet.ws: could not connect to host
+avnavi.jp: could not connect to host
avocadooo.stream: could not connect to host
+avocatbeziau.com: could not connect to host
avonlearningcampus.com: could not connect to host
avotoma.com: could not connect to host
-avs-building-services.co.uk: did not receive HSTS header
avso.pw: could not connect to host
avspot.net: could not connect to host
avus-automobile.com: did not receive HSTS header
@@ -1849,27 +2466,34 @@ avv.li: 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
+awccanadianpharmacy.com: did not receive HSTS header
+awecademy.org: did not receive HSTS header
awei.pub: could not connect to host
-awen.me: did not receive HSTS header
awesomesit.es: could not connect to host
awf0.xyz: could not connect to host
awg-mode.de: did not receive HSTS header
awin.la: could not connect to host
-awomaninherprime.com: could not connect to host
+awningsatlantaga.com: could not connect to host
+awomaninherprime.com: did not receive HSTS header
aww.moe: did not receive HSTS header
awxg.eu.org: could not connect to host
awxg.org: could not connect to host
axa-middleeast.com: could not connect to host
axado.com.br: could not connect to host
-axel-fischer.net: could not connect to host
+axchap.ir: could not connect to host
axel-fischer.science: could not connect to host
axelchv.fr: could not connect to host
axem.co.jp: did not receive HSTS header
axeny.com: did not receive HSTS header
axg.io: did not receive HSTS header
-axialsports.com: could not connect to host
+axialsports.com: did not receive HSTS header
+axiomer.es: did not receive HSTS header
+axiomer.eu: did not receive HSTS header
+axiomer.me: did not receive HSTS header
+axiomer.net: did not receive HSTS header
+axiomer.org: did not receive HSTS header
axis-stralis.co.uk: could not connect to host
+axisfleetmanagement.co.uk: could not connect to host
axiumacademy.com: did not receive HSTS header
axka.com: could not connect to host
axolsoft.com: max-age too low: 10540800
@@ -1880,119 +2504,123 @@ ayahuascaadvisor.com: could not connect to host
ayamchikchik.com: could not connect to host
ayatk.com: did not receive HSTS header
ayesh.win: could not connect to host
+ayj.solutions: 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
+ayrohq.com: could not connect to host
ayuru.info: could not connect to host
az-vinyl-boden.de: could not connect to host
azamra.com: did not receive HSTS header
-azane.ga: did not receive HSTS header
+azane.ga: could not connect to host
azia.info: could not connect to host
-aziende.com.ar: could not connect to host
+azino777.ru: could not connect to host
azirevpn.com: did not receive HSTS header
azizfirat.com: did not receive HSTS header
azlo.com: did not receive HSTS header
-azmusica.com: did not receive HSTS header
+azmusica.biz: could not connect to host
+azmusica.com: could not connect to host
+aznaetelivy.ru: did not receive HSTS header
azprep.us: could not connect to host
+azrangers.gov: did not receive HSTS header
azun.pl: did not receive HSTS header
-azuxul.fr: could not connect to host
azzag.co.uk: did not receive HSTS header
+b-dd.com: could not connect to host
b-entropy.com: could not connect to host
b-landia.net: did not receive HSTS header
b-pi.duckdns.org: could not connect to host
b-rickroll-e.pw: could not connect to host
-b-space.de: could not connect to host
+b-space.de: did not receive HSTS header
b-ticket.ch: could not connect to host
-b0618.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b0618.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b0868.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b0868.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b0618.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b0618.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b0868.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b0868.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b1.work: could not connect to host
-b1236.com: could not connect to host
-b1758.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b1758.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b1768.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b1768.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b1788.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b1236.com: did not receive HSTS header
+b1758.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b1758.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b1768.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b1768.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b1788.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b1rd.tk: could not connect to host
-b2486.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b2486.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b2486.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b2486.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b2b-nestle.com.br: could not connect to host
b2bpromoteit.com: did not receive HSTS header
b3orion.com: could not connect to host
b422edu.com: could not connect to host
b4r7.de: could not connect to host
-b5189.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b5189.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b5289.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b5289.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b5989.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b5989.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b5189.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b5189.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b5289.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b5289.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b5989.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b5989.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b61688.com: could not connect to host
-b8591.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b8591.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b8979.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b8979.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b8a.me: could not connect to host
-b9018.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9018.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9108.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9108.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9110.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9110.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9112.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9112.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b911gt.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b911gt.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b64.club: could not connect to host
+b8591.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b8591.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b8979.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b8979.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9018.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9018.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9108.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9108.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9110.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9110.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9112.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9112.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b911gt.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b911gt.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b91688.com: could not connect to host
-b91688.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b91688.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b91688.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9175.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9175.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9258.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9258.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9318.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9318.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9418.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9418.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9428.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9428.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9453.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9453.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9468.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9468.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9488.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9488.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9498.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9498.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9518.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9518.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9518.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9518.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9520.com: could not connect to host
-b9528.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9528.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9538.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9538.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b91688.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b91688.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b91688.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9175.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9175.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9258.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9258.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9318.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9318.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9418.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9418.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9428.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9428.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9453.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9453.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9468.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9468.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9488.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9488.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9498.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9498.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9518.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9518.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9518.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9518.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9528.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9528.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9538.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9538.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b9568.com: could not connect to host
b9586.net: could not connect to host
b9588.net: could not connect to host
b95888.net: could not connect to host
b9589.net: could not connect to host
-b9598.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9598.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9658.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9658.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9598.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9598.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9658.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9658.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b96899.com: could not connect to host
-b9758.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9758.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9818.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9818.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9858.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9858.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9880.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9758.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9758.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9818.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9818.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9858.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9858.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9880.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b9883.net: could not connect to host
b9884.net: could not connect to host
b9885.net: could not connect to host
@@ -2002,30 +2630,30 @@ b9887.net: could not connect to host
b9888.net: could not connect to host
b98886.com: could not connect to host
b9889.net: could not connect to host
-b9920.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9920.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b9930.com: could not connect to host
-b9948.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9948.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9948.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9948.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b99520.com: could not connect to host
-b9960.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9970.com: did not receive HSTS header
+b9960.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b9980.com: could not connect to host
b99881.com: could not connect to host
b99882.com: could not connect to host
b99883.com: could not connect to host
b99885.com: could not connect to host
b99886.com: could not connect to host
-b9best.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9best.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9king.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9king.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9king.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-b9winner.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9best.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9best.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9king.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9king.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9king.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+b9winner.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
b9winner.com: could not connect to host
-b9winner.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-baas-becking.biology.utah.edu: could not connect to host
+b9winner.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
babarkata.com: could not connect to host
babelfisch.eu: could not connect to host
+bablodel.biz: could not connect to host
+bablodel.com: could not connect to host
babursahvizeofisi.com: could not connect to host
baby-click.de: could not connect to host
babybee.ie: could not connect to host
@@ -2035,57 +2663,67 @@ 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: did not receive HSTS header
+babystep.tv: could not connect to host
bacchanallia.com: could not connect to host
bacgrouppublishing.com: could not connect to host
-bacimg.com: did not receive HSTS header
+baches-piscines.com: could not connect to host
+bacimg.com: could not connect to host
back-bone.nl: did not receive HSTS header
backenmachtgluecklich.de: max-age too low: 0
backgroundz.net: could not connect to host
backintomotionphysiotherapy.com: did not receive HSTS header
backlogapp.io: could not connect to host
backpacken.org: could not connect to host
-backscattering.de: did not receive HSTS header
backyardbbqbash.com: did not receive HSTS header
baconate.com: did not receive HSTS header
+bacsituvansuckhoe.com: did not receive HSTS header
bad-wurzach.de: did not receive HSTS header
bad.show: could not connect to host
badai.at: could not connect to host
badbee.cc: could not connect to host
+badboyzclub.de: 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
+badf00d.de: could not connect to host
+badgr.com: did not receive HSTS header
badkamergigant.com: could not connect to host
+badlink.org: could not connect to host
+badpackets.net: max-age too low: 86400
+badseacoffee.com: could not connect to host
baff.lu: could not connect to host
baffinlee.com: did not receive HSTS header
+bagelsbakery.com: could not connect to host
bagiobella.com: max-age too low: 0
bagstage.de: did not receive HSTS header
+baidu389.com: max-age too low: 0
baiduaccount.com: could not connect to host
baildonhottubs.co.uk: could not connect to host
bair.io: could not connect to host
bairdzhang.com: could not connect to host
+baitaplamvan.com: did not receive HSTS header
baito-j.jp: did not receive HSTS header
baitulongbaycruises.com: could not connect to host
baixoutudo.com: did not receive HSTS header
+baiyangliu.com: could not connect to host
bajajfinserv.in: did not receive HSTS header
+baka.network: could not connect to host
baka.red: could not connect to host
bakabt.info: could not connect to host
bakanin.ru: could not connect to host
+bakaproxy.moe: could not connect to host
bakaweb.fr: could not connect to host
-bakhansen.com: did not receive HSTS header
-bakim.li: could not connect to host
bakkerdesignandbuild.com: did not receive HSTS header
-bakongcondo.com: could not connect to host
bakxnet.com: could not connect to host
balatoni-nyar.hu: did not receive HSTS header
balcan-underground.net: could not connect to host
-balcarek.pl: could not connect to host
+baldwin.com.au: did not receive HSTS header
baldwinkoo.com: could not connect to host
baleares.party: could not connect to host
balenciaspa.com: did not receive HSTS header
+balidesignshop.com.br: could not connect to host
balihai.com: did not receive HSTS header
-balilingo.ooo: could not connect to host
-ball3d.es: did not receive HSTS header
+balist.es: could not connect to host
+ball.holdings: did not receive HSTS header
ballbusting-cbt.com: could not connect to host
balle.dk: did not receive HSTS header
ballitolocksmith.com: could not connect to host
@@ -2093,67 +2731,84 @@ 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
-bambumania.com.br: could not connect to host
+bambooforest.nl: could not connect to host
+bambumania.com.br: did not receive HSTS header
bamtoki.com: could not connect to host
bamtoki.se: could not connect to host
-bananabandy.com: could not connect to host
+bananavapes.com: could not connect to host
bananensap.nl: did not receive HSTS header
-bananium.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bananium.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
banbanchs.com: could not connect to host
+banburybid.com: did not receive HSTS header
+bancaolhares.com.br: could not connect to host
banchethai.com: could not connect to host
bandally.net: could not connect to host
bandar303.cc: did not receive HSTS header
bandar303.id: did not receive HSTS header
bandar303.win: did not receive HSTS header
bandarifamily.com: could not connect to host
-bandb.xyz: did not receive HSTS header
+bandb.xyz: could not connect to host
bandgap.io: could not connect to host
bandrcrafts.com: could not connect to host
banduhn.com: did not receive HSTS header
bangzafran.com: could not connect to host
bank: could not connect to host
bankcircle.co.in: could not connect to host
-bankersonline.com: could not connect to host
+bankerbuch.de: did not receive HSTS header
+bankersonline.com: did not receive HSTS header
+bankfreeoffers.com: could not connect to host
bankitt.network: could not connect to host
bankmilhas.com.br: did not receive HSTS header
bankofrealty.review: could not connect to host
+banningca.gov: did not receive HSTS header
bannisbierblog.de: could not connect to host
banoviny.sk: did not receive HSTS header
banqingdiao.com: could not connect to host
banri.me: could not connect to host
banxehoi.com: did not receive HSTS header
-bao-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bao-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-baobeiglass.com: could not connect to host
+bao-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bao-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+baobeiglass.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
+bara1.se: did not receive HSTS header
+barbaros.info: max-age too low: 7776000
+barberlegalcounsel.com: did not receive HSTS header
+barbershop-harmony.org: did not receive HSTS header
+barbiere.it: did not receive HSTS header
+barcodeberlin.com: did not receive HSTS header
barcoderealty.com: could not connect to host
barcouniforms.com: did not receive HSTS header
-barely.sexy: did not receive HSTS header
+barely.sexy: could not connect to host
barf-alarm.de: did not receive HSTS header
bargainmovingcompany.com: did not receive HSTS header
bariller.fr: did not receive HSTS header
baris-sagdic.com: could not connect to host
+bariskaragoz.nl: did not receive HSTS header
barnrats.com: could not connect to host
baropkamp.be: did not receive HSTS header
+barpodsosnami.pl: could not connect to host
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
+barryswebdesign.co.uk: did not receive HSTS header
barshout.co.uk: could not connect to host
+barsil.de: did not receive HSTS header
+barslecht.com: could not connect to host
+barslecht.nl: could not connect to host
barss.io: could not connect to host
+barta.me: 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
+baseline.ba: did not receive HSTS header
basementdoctor.com: did not receive HSTS header
-basercap.co.ke: could not connect to host
+basercap.co.ke: did not receive HSTS header
bashc.at: could not connect to host
bashcode.ninja: could not connect to host
basicsolutionsus.com: could not connect to host
@@ -2164,38 +2819,48 @@ basketsbymaurice.com: did not receive HSTS header
baskettemple.com: did not receive HSTS header
basnieuwenhuizen.nl: did not receive HSTS header
basnoslovno.com.ua: did not receive HSTS header
-bassh.net: did not receive HSTS header
+bassh.net: could not connect to host
+bassys.com.co: could not connect to host
bastadigital.com: did not receive HSTS header
-bastivmobile.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bat909.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bat909.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bat9vip.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bat9vip.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bastianstalder.ch: did not receive HSTS header
+bastivmobile.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bat909.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bat909.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bat9vip.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bat9vip.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
batfoundry.com: could not connect to host
+batkave.net: did not receive HSTS header
batonger.com: could not connect to host
batten.eu.org: could not connect to host
batteryservice.ru: did not receive HSTS header
-batvip9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+battleofthegridiron.com: could not connect to host
+batvip9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
baud.ninja: could not connect to host
baudairenergyservices.com: did not receive HSTS header
bauen-mit-ziegel.de: max-age too low: 604800
-baum.ga: did not receive HSTS header
+baum.ga: could not connect to host
baumstark.ca: could not connect to host
-bayinstruments.com: could not connect to host
-bayrisch-fuer-anfaenger.de: did not receive HSTS header
+baustils.com: did not receive HSTS header
+bauwens.cloud: did not receive HSTS header
+baykatre.com: did not receive HSTS header
+bayrisch-fuer-anfaenger.de: could not connect to host
baysse.eu: did not receive HSTS header
bazarstupava.sk: could not connect to host
-bazinga-events.nl: did not receive HSTS header
bazisszoftver.hu: could not connect to host
bb-shiokaze.jp: did not receive HSTS header
+bb37roma.it: could not connect to host
+bb6957.com: could not connect to host
bbb1991.me: could not connect to host
bbdos.ru: did not receive HSTS header
bbj.io: did not receive HSTS header
bbkanews.com: did not receive HSTS header
+bblove.me: could not connect to host
bblovess.cn: could not connect to host
+bbnbb.de: could not connect to host
bbrinck.eu: could not connect to host
-bbswin9.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bbswin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bbs8080.net: could not connect to host
+bbswin9.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bbswin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bbw-wrestling.com: could not connect to host
bbwdom.xyz: could not connect to host
bbwf.de: did not receive HSTS header
@@ -2203,8 +2868,8 @@ bbwfacesitting.us: could not connect to host
bbwfacesitting.xyz: could not connect to host
bbwfight.xyz: could not connect to host
bbwteens.org: could not connect to host
-bbxin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bbxin9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bbxin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bbxin9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bc-personal.ch: did not receive HSTS header
bc416.com: did not receive HSTS header
bc418.com: did not receive HSTS header
@@ -2213,33 +2878,35 @@ 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
+bck.me: did not receive HSTS header
bckp.de: could not connect to host
bcm.com.au: did not receive HSTS header
bcmlu.org: could not connect to host
bcnet.com.hk: could not connect to host
bcnet.hk: could not connect to host
-bcodeur.com: did not receive HSTS header
+bcodeur.com: could not connect to host
bcradio.org: could not connect to host
bcs.adv.br: did not receive HSTS header
-bcsytv.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bcsytv.com: could not connect to host
bcweightlifting.ca: could not connect to host
+bcyw56.live: could not connect to host
bdata.cl: could not connect to host
bddemir.com: could not connect to host
bde-epitech.fr: could not connect to host
bdenzer.com: did not receive HSTS header
bdenzer.xyz: could not connect to host
-bdsmxxxpics.com: could not connect to host
-be9418.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bdsmxxxpics.com: did not receive HSTS header
+be9418.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
be9418.info: could not connect to host
-be9418.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be9418.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
be9418.org: could not connect to host
-be9458.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-be9458.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-be9458.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-be9458.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-be958.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be9458.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be9458.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be9458.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be9458.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be958.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
be958.info: could not connect to host
-be958.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+be958.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
be958.org: could not connect to host
be9966.com: could not connect to host
beach-inspector.com: did not receive HSTS header
@@ -2248,16 +2915,23 @@ beachi.es: could not connect to host
beacinsight.com: could not connect to host
beaglewatch.com: could not connect to host
beagreenbean.co.uk: could not connect to host
+beaker.coffee: could not connect to host
+beamer-discount.de: did not receive HSTS header
beamitapp.com: could not connect to host
+beamstat.com: could not connect to host
beanbot.party: could not connect to host
beanworks.ca: did not receive HSTS header
bearden.io: did not receive HSTS header
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
+beastowner.com: could not connect to host
+beastowner.li: could not connect to host
+beauty-hippie-schmuck.de: did not receive HSTS header
+beauty-yan-enterprise.com: could not connect to host
beautyconcept.co: did not receive HSTS header
beavers.io: could not connect to host
+bebeautiful.business: could not connect to host
bebeefy.uk: could not connect to host
bebesurdoue.com: could not connect to host
bebout.domains: could not connect to host
@@ -2272,44 +2946,57 @@ bedlingtonterrier.com.br: could not connect to host
bednar.co: did not receive HSTS header
bedouille.com: could not connect to host
bedreid.dk: did not receive HSTS header
+bedrijfshulpverleningfriesland.nl: did not receive HSTS header
+bedrijfsportaal.nl: did not receive HSTS header
bedrijvenadministratie.nl: could not connect to host
-bee.supply: could not connect to host
+bee-social.it: did not receive HSTS header
+beecare.ch: did not receive HSTS header
+beechwoodmetalworks.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+beelen.fr: 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
beerview.ga: could not connect to host
beetgroup.id: could not connect to host
beetleroadstories.com: could not connect to host
-beforesunrise.de: did not receive HSTS header
+beetman.net: did not receive HSTS header
befundup.com: could not connect to host
-begabungsfoerderung.info: could not connect to host
+bega-dc.gov: could not connect to host
begcykel.com: did not receive HSTS header
-begoodny.co.il: max-age too low: 7889238
+beginatzero.com: did not receive HSTS header
+beginwp.top: did not receive HSTS header
behere.be: could not connect to host
-behoerden-online-dienste.de: did not receive HSTS header
+behindthethrills.com: did not receive HSTS header
+behoerden-online-dienste.de: could not connect to host
beholdthehurricane.com: could not connect to host
beier.io: could not connect to host
beikeil.de: did not receive HSTS header
beingmad.org: did not receive HSTS header
belairsewvac.com: could not connect to host
-belastingdienst-in-beeld.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+belastingdienst-in-beeld.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
belcompany.nl: could not connect to host
belewpictures.com: could not connect to host
belgien.guide: could not connect to host
belize-firmengruendung.com: could not connect to host
bellavistaoutdoor.com: could not connect to host
+belle-lingerie.co.uk: did not receive HSTS header
belliash.eu.org: did not receive HSTS header
+bellmangesellschaft.de: did not receive HSTS header
+bellthrogh.com: could not connect to host
belltower.io: could not connect to host
+bellware.io: did not receive HSTS header
belmontprom.com: could not connect to host
belpbleibtbelp.ch: could not connect to host
belua.com: did not receive HSTS header
belwederczykow.eu: could not connect to host
+bely-mishka.by: max-age too low: 0
belyvly.com: did not receive HSTS header
bemvindoaolar.com.br: could not connect to host
bemyvictim.com: max-age too low: 2678400
ben2.co.il: max-age too low: 2592000
-benchcast.com: did not receive HSTS header
+benburwell.com: could not connect to host
+benchcast.com: could not connect to host
bendechrai.com: did not receive HSTS header
-bendingtheending.com: did not receive HSTS header
benedikt-tuchen.de: could not connect to host
benediktdichgans.de: did not receive HSTS header
beneffy.com: did not receive HSTS header
@@ -2322,14 +3009,17 @@ benhchuyenkhoa.net: could not connect to host
benjakesjohnson.com: could not connect to host
benjamin-horvath.com: could not connect to host
benjamin-suess.de: could not connect to host
-benjamindietrich.com: could not connect to host
-benjamindietrich.de: did not receive HSTS header
-benjaminesims.com: did not receive HSTS header
+benjaminbedard.com: could not connect to host
+benjaminesims.com: could not connect to host
benjaminjurke.net: did not receive HSTS header
benk.press: could not connect to host
+benleemd.com: could not connect to host
benmorecentre.co.uk: did not receive HSTS header
+benny003.de: could not connect to host
bennythink.com: could not connect to host
benohead.com: did not receive HSTS header
+bensoy.com: could not connect to host
+bentinata.com: could not connect to host
bentphotos.se: could not connect to host
benwattie.com: could not connect to host
benzkosmetik.de: did not receive HSTS header
@@ -2338,151 +3028,202 @@ 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
+berasavocate.com: could not connect to host
berdaguermontes.eu: could not connect to host
berduri.com: did not receive HSTS header
-beretech.fr: could not connect to host
+beretech.fr: did not receive HSTS header
+berg-freunde.at: max-age too low: 604800
+berg-freunde.ch: max-age too low: 604800
berger.work: could not connect to host
bergfex.at: did not receive HSTS header
+bergfreunde.de: max-age too low: 604800
+bergfreunde.dk: max-age too low: 604800
+bergfreunde.es: max-age too low: 604800
+bergfreunde.eu: max-age too low: 604800
+bergfreunde.fi: max-age too low: 604800
+bergfreunde.it: max-age too low: 604800
+bergfreunde.nl: max-age too low: 604800
+bergfreunde.no: max-age too low: 604800
+bergfreunde.se: max-age too low: 604800
bergland-seefeld.at: did not receive HSTS header
berhampore-gateway.tk: could not connect to host
-beringsoegaard.dk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
berlatih.com: did not receive HSTS header
berliancom.com: did not receive HSTS header
-berlin-kohlefrei.de: could not connect to host
+berlin-cuisine.com: did not receive HSTS header
+berlin-flirt.de: did not receive HSTS header
+berlin-kohlefrei.de: did not receive HSTS header
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]
-berna.fr: could not connect to host
+bermos.net: could not connect to host
bernardfischer.fr: did not receive HSTS header
bernexskiclub.ch: did not receive HSTS header
+berodes.be: could not connect to host
berrymark.be: did not receive HSTS header
berseb.se: could not connect to host
berthelier.me: could not connect to host
berz.one: could not connect to host
+besb.io: could not connect to host
besb66.club: could not connect to host
besb66.com: did not receive HSTS header
besb66.me: could not connect to host
besb66.ninja: could not connect to host
besb66.rocks: could not connect to host
besb66.us: could not connect to host
+beschriftung-metz.de: could not connect to host
besixdouze.world: could not connect to host
beslider.com: could not connect to host
besnik.de: could not connect to host
besola.de: could not connect to host
bespaarnu.click: could not connect to host
+bessettenotaire.com: max-age too low: 0
best-of-bounce.co.uk: could not connect to host
best-wedding-quotes.com: could not connect to host
-best66.me: did not receive HSTS header
+bestartshop.com: did not receive HSTS header
bestattorney.com: did not receive HSTS header
bestbeards.ca: could not connect to host
bestbestbitcoin.com: could not connect to host
-bestbonuses.co.uk: did not receive HSTS header
+bestbridal.top: did not receive HSTS header
+bestcellular.com: did not receive HSTS header
+bestdoc.com.br: did not receive HSTS header
bestellipticalmachinereview.info: could not connect to host
-bestesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bestemailmarketingsoftware.org: could not connect to host
+bestesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bestesb.net: could not connect to host
bestfitnesswatchreview.info: could not connect to host
+bestgifts4you.com: did not receive HSTS header
besthost.cz: did not receive HSTS header
besthotsales.com: could not connect to host
bestiahosting.com: could not connect to host
+bestinductioncooktop.us: could not connect to host
+bestinsider.net: did not receive HSTS header
bestlashesandbrows.com: did not receive HSTS header
bestlashesandbrows.hu: did not receive HSTS header
bestleftwild.com: could not connect to host
-bestmodels.su: did not receive HSTS header
+bestmodels.su: could not connect to host
bestof1001.de: could not connect to host
bestorangeseo.com: could not connect to host
bestpaintings.nl: did not receive HSTS header
+bestpal.eu: could not connect to host
bestparking.xyz: could not connect to host
-bestpig.fr: could not connect to host
-bestwarezone.com: could not connect to host
-bet-99.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bet-99.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bet-99.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bet168wy.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bet168wy.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bet909.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bestperfumebrands.com: could not connect to host
+bestschools.top: did not receive HSTS header
+besuccessful.ch: did not receive HSTS header
+bet-99.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bet-99.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bet-99.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bet.eu: did not receive HSTS header
+bet168wy.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bet168wy.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bet909.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bet990.com: could not connect to host
-bet9bet9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bet9bet9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
betaclean.fr: did not receive HSTS header
+betacloud.io: did not receive HSTS header
betafive.net: could not connect to host
betakah.net: did not receive HSTS header
+betalenviainternet.nl: did not receive HSTS header
betamint.org: did not receive HSTS header
betcafearena.ro: could not connect to host
betformular.com: could not connect to host
-betgo9.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bethditto.com: did not receive HSTS header
+betgo9.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
betkoo.com: could not connect to host
betleakbot.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
+betrallyarabia.com: did not receive HSTS header
bets.de: did not receive HSTS header
-betshoot.com: could not connect to host
betsonlinefree.com.au: could not connect to host
-betterjapanese.com: could not connect to host
+betsyshilling.com: could not connect to host
+betterbabyshop.com.au: could not connect to host
+betterhelp.com: did not receive HSTS header
+betterjapanese.blog: could not connect to host
+betterjapanese.com: did not receive HSTS header
betterjapanese.org: could not connect to host
-betterlifemakers.com: max-age too low: 200
+betterjapanese.xyz: could not connect to host
bettween.com: did not receive HSTS header
between.be: did not receive HSTS header
-betwin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-betwin9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+betwin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+betwin9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
betz.ro: could not connect to host
beulahtabernacle.com: could not connect to host
-bevapehappy.com: did not receive HSTS header
-bewertet.de: could not connect to host
+bevapehappy.com: could not connect to host
+bewerbungsfoto-deinfoto.ch: could not connect to host
+bewished.co: 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: could not connect to host
beylikduzuvaillant.com: could not connect to host
beyond-edge.com: could not connect to host
+beyond-rational.com: could not connect to host
+beyondthecode.io: did not receive HSTS header
beyondtrust.com: did not receive HSTS header
+beyonic.com: max-age too low: 86400
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
+bezr.co.uk: could not connect to host
bf.am: max-age too low: 0
bfd.vodka: did not receive HSTS header
bfear.com: could not connect to host
bfelob.gov: could not connect to host
bffm.biz: could not connect to host
+bfgcdn.com: max-age too low: 604800
bfi.wien: did not receive HSTS header
bfrailwayclub.cf: could not connect to host
+bftbradio.com: did not receive HSTS header
bg-sexologia.com: could not connect to host
bg16.de: could not connect to host
+bgbhsf.top: 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
+bgeo.io: could not connect to host
+bglsingles.de: did not receive HSTS header
bgneuesheim.de: did not receive HSTS header
bgp.ee: could not connect to host
-bhatia.at: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bgs-game.com: max-age too low: 300
+bgwfans.com: 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 :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bhost.net: did not receive HSTS header
bhosted.nl: did not receive HSTS header
+bi-ec.ac.cn: could not connect to host
+bi1gif.space: could not connect to host
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
+bianvip888.com: max-age too low: 0
+biaoqingfuhao.net: could not connect to host
+biaoqingfuhao.org: could not connect to host
biapinheiro.com.br: max-age too low: 5184000
-biblerhymes.com: did not receive HSTS header
+bible.ru: did not receive HSTS header
+bibleonline.ru: did not receive HSTS header
+biblerhymes.com: could not connect to host
+bibles.com.tw: did not receive HSTS header
+biblethoughts.blog: did not receive HSTS header
bibliafeminina.com.br: could not connect to host
+biblio.wiki: could not connect to host
+bibliotekarien.se: could not connect to host
bichines.es: did not receive HSTS header
bichonfrise.com.br: could not connect to host
bichonmaltes.com.br: could not connect to host
+bicilonatours.com: did not receive HSTS header
bidon.ca: did not receive HSTS header
bidorbuy.co.ke: did not receive HSTS header
+bie35.com: could not connect to host
bieberium.de: could not connect to host
biego.cn: did not receive HSTS header
biehl.co: did not receive HSTS header
+biehl.tech: did not receive HSTS header
bielsa.me: did not receive HSTS header
bienenblog.cc: could not connect to host
biensenvue.com: could not connect to host
-bienstar.tv: could not connect to host
bier.jp: did not receive HSTS header
bierbringer.at: could not connect to host
bierochs.org: could not connect to host
+bieumau.net: did not receive HSTS header
biewen.me: did not receive HSTS header
biftin.net: could not connect to host
big-black.de: did not receive HSTS header
@@ -2492,18 +3233,23 @@ 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
+biggreenexchange.com: could not connect to host
bigjohn.ru: did not receive HSTS header
-biglagoonrentals.com: did not receive HSTS header
-bignumworks.com: could not connect to host
+bignumworks.com: did not receive HSTS header
bigshinylock.minazo.net: could not connect to host
bigshort.org: could not connect to host
biguixhe.net: could not connect to host
+bigwiseguide.com: did not receive HSTS header
+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
+bike-discount.de: did not receive HSTS header
bikelifetvkidsquads.co.uk: could not connect to host
+bikerebel.com: did not receive HSTS header
bikermusic.net: could not connect to host
bikeshopitalia.com: could not connect to host
+bilalic.com: could not connect to host
bilanligne.com: did not receive HSTS header
bildermachr.de: could not connect to host
biletru.net: could not connect to host
@@ -2511,23 +3257,29 @@ 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: could not connect to host
-billdestler.com: did not receive HSTS header
+billdestler.com: could not connect to host
billigssl.dk: did not receive HSTS header
-billkiss.com: max-age too low: 0
+billionkiaparts.com: could not connect to host
billninja.com: did not receive HSTS header
billpro.com.au: could not connect to host
+billrhodesbakery.com: max-age too low: 0
billrobinson.io: could not connect to host
billrusling.com: could not connect to host
+billsqualityautocare.com: did not receive HSTS header
biloplysninger.dk: did not receive HSTS header
bilsho.com: could not connect to host
binam.center: could not connect to host
+binans.co: could not connect to host
+binans.io: could not connect to host
+binans.xyz: could not connect to host
binarization.com: did not receive HSTS header
binarization.net: could not connect to host
binarization.org: did not receive HSTS header
+binarka.net: did not receive HSTS header
binaryabstraction.com: could not connect to host
binaryfigments.com: max-age too low: 7776000
-binbin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-binbin9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+binbin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+binbin9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
binderapp.net: could not connect to host
bingcheung.com: could not connect to host
bingcheung.org: could not connect to host
@@ -2537,28 +3289,36 @@ bingofriends.com: could not connect to host
bingostars.com: did not receive HSTS header
binimo.com: could not connect to host
binkanhada.biz: could not connect to host
-bintelligence.nl: did not receive HSTS header
+bintangpiaggi.info: could not connect to host
+bintangsyurga.com: could not connect to host
+bintelligence.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+binwu666.com: max-age too low: 0
bioespuna.eu: did not receive HSTS header
biofam.ru: did not receive HSTS header
+biogeniq.ca: did not receive HSTS header
+bioknowme.com: did not receive HSTS header
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
+biopronut.com: max-age too low: 0
+biosalts.it: did not receive HSTS header
biospeak.solutions: could not connect to host
biou.me: could not connect to host
biovalue.eu: could not connect to host
bip.gov.sa: could not connect to host
birchbarkfurniture.ch: could not connect to host
-birdandbranchnyc.com: max-age too low: 43200
+birgitandmerlin.com: could not connect to host
birkengarten.ch: could not connect to host
birkhoff.me: did not receive HSTS header
birkman.com: did not receive HSTS header
+birminghamcastlehire.co.uk: did not receive HSTS header
+biscoint.io: did not receive HSTS header
biscuits-rec.com: could not connect to host
biscuits-shop.com: could not connect to host
bismarck.moe: could not connect to host
bisterfeldt.com: did not receive HSTS header
bistrodeminas.com: could not connect to host
-biswas.me: could not connect to host
bit.voyage: did not receive HSTS header
bitace.com: did not receive HSTS header
bitbit.org: did not receive HSTS header
@@ -2566,20 +3326,22 @@ bitbr.net: did not receive HSTS header
bitcalt.eu.org: could not connect to host
bitcalt.ga: could not connect to host
bitcantor.com: did not receive HSTS header
+bitcert.com: did not receive HSTS header
bitchan.it: could not connect to host
bitclubfun.com: did not receive HSTS header
bitcoin-casino-no-deposit-bonus.com: max-age too low: 0
bitcoin-class.com: could not connect to host
bitcoin-daijin.com: could not connect to host
bitcoin.com: did not receive HSTS header
-bitcoinclashic.ninja: could not connect to host
+bitcoinclashic.ninja: did not receive HSTS header
bitcoinec.info: could not connect to host
-bitcoinfo.jp: did not receive HSTS header
+bitcoinfo.jp: could not connect to host
bitcoinhk.org: did not receive HSTS header
bitcoinjpn.com: could not connect to host
-bitcoinprivacy.net: could not connect to host
+bitcoinprivacy.net: did not receive HSTS header
bitcoinwalletscript.tk: could not connect to host
bitcoinworld.me: could not connect to host
+bitcoinx.gr: did not receive HSTS header
bitconcepts.co.uk: could not connect to host
bitedge.com: did not receive HSTS header
bitenose.net: could not connect to host
@@ -2589,13 +3351,15 @@ bitf.ly: could not connect to host
bitfactory.ws: could not connect to host
bitfarm-archiv.com: did not receive HSTS header
bitfarm-archiv.de: did not receive HSTS header
+bitfence.io: did not receive HSTS header
bitfolio.org: did not receive HSTS header
+bithap.com: did not receive HSTS header
bitheus.com: could not connect to host
bithosting.io: did not receive HSTS header
-bitk.co: could not connect to host
-bitk.co.uk: could not connect to host
-bitk.eu: could not connect to host
-bitk.uk: could not connect to host
+bitk.co: did not receive HSTS header
+bitk.co.uk: did not receive HSTS header
+bitk.eu: did not receive HSTS header
+bitk.uk: did not receive HSTS header
bitmain.com.ua: could not connect to host
bitmaincare.com.ua: could not connect to host
bitmaincare.ru: could not connect to host
@@ -2603,18 +3367,20 @@ bitmainwarranty.com.ua: could not connect to host
bitmainwarranty.ru: could not connect to host
bitmex.com: did not receive HSTS header
bitmexin.com: could not connect to host
-bitmon.net: could not connect to host
+bitmoe.com: did not receive HSTS header
+bitmon.net: did not receive HSTS header
bitnet.io: did not receive HSTS header
bitplay.space: could not connect to host
bitpod.de: could not connect to host
bitrage.de: could not connect to host
bitraum.io: could not connect to host
-bitroll.com: could not connect to host
+bitroll.com: did not receive HSTS header
bitsafe.systems: could not connect to host
bitsburg.ru: could not connect to host
bitsensor.io: did not receive HSTS header
bitshaker.net: did not receive HSTS header
bitstep.ca: could not connect to host
+bitsum.com: did not receive HSTS header
bittervault.xyz: could not connect to host
bituptick.com: did not receive HSTS header
bitvegas.com: did not receive HSTS header
@@ -2622,95 +3388,108 @@ 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
-biyori.moe: did not receive HSTS header
bizcms.com: could not connect to host
+bizeau.ch: did not receive HSTS header
bizedge.co.nz: did not receive HSTS header
bizon.sk: did not receive HSTS header
-bizpare.com: max-age too low: 2592000
bizzartech.com: did not receive HSTS header
bizzi.tv: could not connect to host
bizzybeebouncers.co.uk: could not connect to host
bjgongyi.com: did not receive HSTS header
-bjl5689.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bjl5689.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bjl5689.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bjl5689.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bjrn.io: could not connect to host
bjtxl.cn: could not connect to host
-bk-wife.com: could not connect to host
bkb-skandal.ch: could not connect to host
blaauwgeers.travel: could not connect to host
black-armada.com: could not connect to host
black-armada.com.pl: could not connect to host
black-armada.pl: could not connect to host
-black-gay-porn.biz: could not connect to host
black-octopus.ru: could not connect to host
black-pool.net: could not connect to host
blackapron.com.br: could not connect to host
+blackbase.de: did not receive HSTS header
blackberrycentral.com: could not connect to host
-blackberryforums.be: did not receive HSTS header
blackburn.link: could not connect to host
+blackbyte.it: could not connect to host
blackcicada.com: could not connect to host
blackdesertsp.com: could not connect to host
blackdiam.net: did not receive HSTS header
-blackdragoninc.org: could not connect to host
-blackhell.xyz: could not connect to host
+blackdotbrewery.com: could not connect to host
+blackhawktreeinc.com: did not receive HSTS header
+blackhell.xyz: did not receive HSTS header
blackkeg.ca: 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: could not connect to host
blackmirror.com.au: did not receive HSTS header
blackphantom.de: could not connect to host
-blackroot.eu: max-age too low: 10368000
+blackpi.dedyn.io: could not connect to host
blackscreen.me: could not connect to host
blackunicorn.wtf: could not connect to host
bladesmith.io: could not connect to host
blakerandall.xyz: did not receive HSTS header
blankersfamily.com: did not receive HSTS header
blantik.net: could not connect to host
+blantr.com: could not connect to host
blarg.co: could not connect to host
+blatnice.cf: could not connect to host
+blatnice.ga: could not connect to host
+blatnice.gq: could not connect to host
+blatnice.ml: could not connect to host
+blatnice.tk: could not connect to host
+blauerhunger.de: could not connect to host
blauwwit.be: did not receive HSTS header
blazeit.io: could not connect to host
blechpirat.name: could not connect to host
bleep.zone: could not connect to host
+blend.guru: did not receive HSTS header
blendlecdn.com: could not connect to host
blenheimchalcot.com: did not receive HSTS header
-blessedearth.com.au: max-age too low: 7889238
blessedguy.net: did not receive HSTS header
blessnet.jp: did not receive HSTS header
bleutecmedia.com: did not receive HSTS header
blha303.com.au: could not connect to host
+blicy.net: could not connect to host
bliker.ga: could not connect to host
-blikund.swedbank.se: did not receive HSTS header
blindaryproduction.tk: could not connect to host
+blinds-unlimited.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
blindsexdate.nl: did not receive HSTS header
-bling9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bling999.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bling999.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bling999.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bling9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bling999.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bling999.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bling999.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
blinkenlight.co.uk: could not connect to host
blinkenlight.com.au: could not connect to host
+blinkspeed.eu: could not connect to host
+blitzprog.org: could not connect to host
blitzvendor.com: could not connect to host
-blizz.news: max-age too low: 0
-blmiller.com: did not receive HSTS header
+blmiller.com: could not connect to host
+blockchainevents.nl: did not receive HSTS header
blocksatz-medien.de: could not connect to host
blockshopauto.com: could not connect to host
blog-ritaline.com: could not connect to host
blog.coffee: could not connect to host
-blog.cyveillance.com: did not receive HSTS header
+blog.cyveillance.com: could not connect to host
blog.gparent.org: could not connect to host
blog.torproject.org: max-age too low: 1000
blogabout.ru: could not connect to host
blogcuaviet.com: could not connect to host
blogdeyugioh.com: could not connect to host
+bloggingwithchildren.com: could not connect to host
+bloggytalky.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
+blogpronto.com.br: did not receive HSTS header
blokino.org: did not receive HSTS header
blokuhaka.fr: did not receive HSTS header
blood4pets.tk: could not connect to host
bloodyexcellent.com: did not receive HSTS header
bloogle.top: did not receive HSTS header
+bloombrown.com: did not receive HSTS header
bloomnbud.com: did not receive HSTS header
bloomzoomy.ru: could not connect to host
blowjs.com: could not connect to host
@@ -2722,15 +3501,13 @@ bludnykoren.ml: could not connect to host
blue17.co.uk: did not receive HSTS header
bluebill.net: did not receive HSTS header
bluecardlottery.eu: could not connect to host
-bluecards.eu: max-age too low: 0
-bluecon.eu: could not connect to host
+bluecon.eu: did not receive HSTS header
+bluecon.ninja: did not receive HSTS header
bluedata.ltd: did not receive HSTS header
bluefinger.nl: did not receive HSTS header
blueglobalmedia.com: could not connect to host
bluehawk.cloud: could not connect to host
-bluehelixmusic.com: could not connect to host
blueliv.com: did not receive HSTS header
-bluemoonroleplaying.com: could not connect to host
blueoceantech.us: did not receive HSTS header
bluepearl.tk: could not connect to host
bluepoint.foundation: could not connect to host
@@ -2742,52 +3519,56 @@ 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
-blui.ml: could not connect to host
+blui.ml: did not receive HSTS header
bluketing.com: did not receive HSTS header
blumen-binder.ch: did not receive HSTS header
blumen-garage.de: did not receive HSTS header
blumenwiese.xyz: did not receive HSTS header
blundell.wedding: could not connect to host
-blunderify.se: could not connect to host
-bluop.com: did not receive HSTS header
+blunderify.se: did not receive HSTS header
+bluop.com: could not connect to host
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
+blutroyal.de: did not receive HSTS header
bm-i.ch: could not connect to host
bm-trading.nl: did not receive HSTS header
bmet.de: did not receive HSTS header
+bmriv.com: could not connect to host
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]
+bngsecure.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bnhlibrary.com: could not connect to host
-bo1689.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bo1689.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bo9club.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bo9club.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bo9club.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bo9fun.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bo9fun.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bo9game.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bo9game.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-bo9king.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo1689.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo1689.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9club.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9club.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9club.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9fun.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9fun.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9game.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9game.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+bo9king.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
board-buy.ru: could not connect to host
+boatme.de: could not connect to host
bobaobei.net: could not connect to host
bobaobei.org: could not connect to host
-bobep.ru: could not connect to host
bobiji.com: could not connect to host
boboates.com: did not receive HSTS header
+boboolo.com: did not receive HSTS header
+bocloud.eu: could not connect to host
bodixite.com: could not connect to host
bodo-wolff.de: could not connect to host
bodrumfarm.com: could not connect to host
bodyblog.nl: did not receive HSTS header
bodybuilding-legends.com: could not connect to host
bodybuilding.events: could not connect to host
+bodyweb.com.br: could not connect to host
bodyweightsolution.com: could not connect to host
+bodyworkbymichael.com: did not receive HSTS header
boel073.nl: did not receive HSTS header
boensou.com: did not receive HSTS header
+bogobeats.com: did not receive HSTS header
+bogosity.tv: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bohaishibei.com: did not receive HSTS header
bohan.life: could not connect to host
bohyn.cz: could not connect to host
@@ -2803,38 +3584,44 @@ 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
+bondank.com: could not connect to host
+bondoer.fr: could not connect to host
bondtofte.dk: max-age too low: 2592000
-boneko.de: did not receive HSTS header
bonibuty.com: max-age too low: 2592000
bonigo.de: could not connect to host
bonita.com.br: could not connect to host
bonitabrazilian.co.nz: did not receive HSTS header
+bonnebouffe.fr: could not connect to host
bonnin.fr: did not receive HSTS header
bonobo.cz: could not connect to host
-bonop.com: could not connect to host
+bonop.com: did not receive HSTS header
+bonqoeur.ca: did not receive HSTS header
bonta.one: could not connect to host
bonus-flexi.com: did not receive HSTS header
boobox.xyz: could not connect to host
+boogaerdtmakelaars.nl: did not receive HSTS header
book-of-ra.de: could not connect to host
bookcelerator.com: did not receive HSTS header
booked.holiday: could not connect to host
-bookingdeluxesp.com: did not receive HSTS header
bookingentertainment.com: did not receive HSTS header
+bookingready.com: did not receive HSTS header
bookmakersfreebets.com.au: did not receive HSTS header
bookofraonlinecasinos.com: could not connect to host
bookourdjs.com: could not connect to host
bookreport.ga: could not connect to host
-bookshopofindia.com: did not receive HSTS header
bookwitty.social: could not connect to host
boomerang.com: did not receive HSTS header
boomsaki.com: did not receive HSTS header
boomsakis.com: did not receive HSTS header
+boomvm.pw: could not connect to host
boonehenry.co.uk: did not receive HSTS header
-boosterlearnpro.com: did not receive HSTS header
+booox.biz: could not connect to host
+booox.pw: could not connect to host
+booq.org: did not receive HSTS header
+boosterlearnpro.com: could not connect to host
boostgame.win: could not connect to host
boote.wien: could not connect to host
-booter.es: could not connect to host
+booter.es: did not receive HSTS header
booter.pw: did not receive HSTS header
booth.in.th: could not connect to host
bootikexpress.fr: did not receive HSTS header
@@ -2842,16 +3629,16 @@ boozinyan.com: could not connect to host
bopera.co.uk: could not connect to host
borchers-media.de: could not connect to host
borderlinegroup.com: could not connect to host
-borgmestervangen.xyz: could not connect to host
boringsecurity.net: could not connect to host
boris.one: could not connect to host
+boris64.net: could not connect to host
borisavstankovic.rs: could not connect to host
-borisbesemer.com: could not connect to host
+borisbesemer.com: did not receive HSTS header
+borisschapira.com: did not receive HSTS header
born-to-learn.com: could not connect to host
-borowski.pw: did not receive HSTS header
borrelioz.com: did not receive HSTS header
borscheid-wenig.com: did not receive HSTS header
-borzoi.com.br: could not connect to host
+borzoi.com.br: did not receive HSTS header
boschee.net: could not connect to host
bosworthdental.co.uk: did not receive HSTS header
botlab.ch: could not connect to host
@@ -2861,49 +3648,58 @@ botsindiscord.me: could not connect to host
botstack.host: could not connect to host
boueki.jp: did not receive HSTS header
boueki.org: did not receive HSTS header
+bougeret.fr: could not connect to host
bouk.co: could not connect to host
-bounceaboutsussex.co.uk: did not receive HSTS header
-bouncebeyondcastles.co.uk: did not receive HSTS header
+bouncebeyondcastles.co.uk: could not connect to host
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
+bouncemania.org: could not connect to host
bouncemasters.co.uk: could not connect to host
+bouncenslidenortheast.co.uk: did not receive HSTS header
bouncewithbovells.com: could not connect to host
bouncing4joy.co.uk: could not connect to host
bouncingbuzzybees.co.uk: could not connect to host
+bouncy-tots.co.uk: could not connect to host
bouncycastleandparty.co.uk: could not connect to host
-bouncycastlehireauckland.co.nz: could not connect to host
bouncycastlehiremedway.com: did not receive HSTS header
-bouncycastles.me: could not connect to host
+bouncycastles.me: did not receive HSTS header
bouncycastlesperth.net: could not connect to host
-bouncyhouses.co.uk: did not receive HSTS header
-bouncymadness.com: did not receive HSTS header
+bouncyhouses.co.uk: could not connect to host
+bouncymadness.com: could not connect to host
+bouncytown.co.uk: could not connect to host
bountiful.gov: could not connect to host
bourgdepabos.com: did not receive HSTS header
+bourhis.info: did not receive HSTS header
+boutiquefutebol.com.br: did not receive HSTS header
bouwbedrijfpurmerend.nl: did not receive HSTS header
bowlsheet.com: did not receive HSTS header
-bownty.pt: could not connect to host
-boxcryptor.com: did not receive HSTS header
+bownty.pt: 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
+boxlink.io: did not receive HSTS header
boxlitepackaging.com: did not receive HSTS header
boxmoe.cn: did not receive HSTS header
boxview.com: could not connect to host
boyan.in: could not connect to host
+boyerassoc.com: did not receive HSTS header
boyfriendhusband.men: did not receive HSTS header
-boypoint.de: could not connect to host
+boyntonobserver.org: did not receive HSTS header
+boz.nl: 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
bpaste.net: did not receive HSTS header
bqcp.net: could not connect to host
-bqtoolbox.com: did not receive HSTS header
+br-miyamoto.spdns.org: could not connect to host
+brackets-salad.com: could not connect to host
bracoitaliano.com.br: could not connect to host
+bradfergusonrealestate.com: did not receive HSTS header
braemer-it-consulting.de: could not connect to host
-bragasoft.com.br: did not receive HSTS header
+bragasoft.com.br: could not connect to host
bragaweb.com.br: could not connect to host
brain-e.co: could not connect to host
brainbuxa.com: did not receive HSTS header
@@ -2914,40 +3710,48 @@ brainlag.org: could not connect to host
braintensive.com: could not connect to host
braintm.com: could not connect to host
braintreebouncycastles.com: could not connect to host
-braintreegateway.com: did not receive HSTS header
braintreepayments.com: did not receive HSTS header
+brainvation.de: did not receive HSTS header
brakstad.org: could not connect to host
bramburek.net: could not connect to host
+bramsikkens.be: could not connect to host
bran.cc: could not connect to host
bran.soy: could not connect to host
-branchzero.com: did not receive HSTS header
+branchzero.com: could not connect to host
brand-foo.com: did not receive HSTS header
brand-foo.jp: did not receive HSTS header
brand-foo.net: did not receive HSTS header
brandbuilderwebsites.com: could not connect to host
+brandcodeconsulting.com: could not connect to host
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
+brandpit.nl: did not receive HSTS header
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
bravz.de: could not connect to host
+brazenfol.io: did not receive HSTS header
+breakpoint.at: did not receive HSTS header
+breakwall.ml: could not connect to host
breatheav.com: did not receive HSTS header
breatheproduction.com: did not receive HSTS header
breeswish.org: did not receive HSTS header
bregnedalsystems.dk: did not receive HSTS header
breitbild-beamer.de: max-age too low: 1209600
-bremensaki.com: max-age too low: 2592000
+bremensaki.com: could not connect to host
+brendanscherer.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
brenden.net.au: could not connect to host
-bress.cloud: did not receive HSTS header
+bress.cloud: could not connect to host
brettelliff.com: did not receive HSTS header
brettpemberton.xyz: did not receive HSTS header
+brettw.xyz: could not connect to host
bretz-hufer.de: did not receive HSTS header
brewtrackr.com: did not receive HSTS header
-breznet.com: could not connect to host
brfvh24.se: could not connect to host
briangarcia.ga: could not connect to host
brianmwaters.net: did not receive HSTS header
@@ -2956,12 +3760,12 @@ brickoo.com: could not connect to host
brickwerks.io: could not connect to host
brickyardbuffalo.com: did not receive HSTS header
brideandgroomdirect.ie: did not receive HSTS header
+bridesmagazine.co.uk: did not receive HSTS header
bridgeout.com: could not connect to host
-bridholm.se: could not connect to host
+bridgevest.com: could not connect to host
bridzius.lt: did not receive HSTS header
briggsleroux.com: could not connect to host
brightfuturemadebyme.com: could not connect to host
-brightlifedirect.com: max-age too low: 7889238
brightstarkids.co.uk: did not receive HSTS header
brightstarkids.com.au: did not receive HSTS header
brightstarkids.net: did not receive HSTS header
@@ -2971,21 +3775,24 @@ 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
+brinkmann.one: did not receive HSTS header
brinquedoseducativos.art.br: did not receive HSTS header
brio-ukraine.store: could not connect to host
+britanniacateringyeovil.co.uk: did not receive HSTS header
britishchronicles.com: could not connect to host
-britishmeat.com: could not connect to host
britzer-toner.de: did not receive HSTS header
brivadois.ovh: could not connect to host
brix.ninja: did not receive HSTS header
brks.xyz: could not connect to host
brmascots.com: could not connect to host
+brocinema.com: did not receive HSTS header
+broerict.nl: did not receive HSTS header
broerweb.nl: could not connect to host
broken-oak.com: could not connect to host
brokenjoysticks.net: did not receive HSTS header
brooke-fan.com: did not receive HSTS header
brookechase.com: did not receive HSTS header
+brookehatton.com: max-age too low: 2592000
brookframework.org: could not connect to host
brossman.it: could not connect to host
brother-printsmart.nl: did not receive HSTS header
@@ -2994,16 +3801,17 @@ brown-devost.com: did not receive HSTS header
brownlawoffice.us: did not receive HSTS header
browserid.org: could not connect to host
brplusdigital.com: could not connect to host
+brrr.fr: could not connect to host
+bruna-cdn.nl: 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
brutus2.ga: could not connect to host
bryancastillo.site: could not connect to host
bryanshearer.accountant: did not receive HSTS header
+bryantzheng.org: max-age too low: 0
bryn.xyz: could not connect to host
-brynnan.nl: could not connect to host
-brztec.com: did not receive HSTS header
+brynnan.nl: did not receive HSTS header
+brztec.com: could not connect to host
bsagan.fr: did not receive HSTS header
bsalyzer.com: could not connect to host
bsc01.dyndns.org: could not connect to host
@@ -3016,11 +3824,12 @@ bsklabels.com: did not receive HSTS header
bsktweetup.info: could not connect to host
bsohoekvanholland.nl: could not connect to host
bsquared.org: could not connect to host
+bst.gg: did not receive HSTS header
bsuess.de: could not connect to host
bsuru.xyz: could not connect to host
bt78.cn: could not connect to host
bt85.cn: could not connect to host
-bt9.cc: did not receive HSTS header
+bt9.cc: could not connect to host
bt96.cn: did not receive HSTS header
bt995.com: did not receive HSTS header
btaoke.com: could not connect to host
@@ -3031,10 +3840,10 @@ btcgo.nl: did not receive HSTS header
btcontract.com: could not connect to host
btcp.space: could not connect to host
btcpot.ltd: could not connect to host
-btcycle.org: did not receive HSTS header
+btcycle.org: could not connect to host
btku.org: could not connect to host
btrb.ml: could not connect to host
-btserv.de: did not receive HSTS header
+btserv.de: could not connect to host
btth.live: could not connect to host
btth.xyz: could not connect to host
bturboo.com: could not connect to host
@@ -3047,67 +3856,78 @@ buchverlag-scholz.de: did not receive HSTS header
buck.com: did not receive HSTS header
bucket.tk: could not connect to host
buckmulligans.com: did not receive HSTS header
-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]
+budaev-shop.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
buddhistische-weisheiten.org: could not connect to host
+buderus-family.be: could not connect to host
budgetenergievriendenvoordeel.nl: could not connect to host
budgetthostels.nl: did not receive HSTS header
budskap.eu: could not connect to host
-buehnenbande.ch: max-age too low: 2592000
+budweisermeats.com: did not receive HSTS header
buenosairesestetica.com.ar: could not connect to host
buenotour.ru: did not receive HSTS header
buergerdialog.net: could not connect to host
buergerhaushalt.com: did not receive HSTS header
buffalodrinkinggame.beer: did not receive HSTS header
buffetbouc.com: could not connect to host
+bufla.net: did not receive HSTS header
bugtrack.co.uk: did not receive HSTS header
bugtrack.io: could not connect to host
+bugu.org: could not connect to host
+buhayguro.com: could not connect to host
buhler.pro: did not receive HSTS header
buiko.com: did not receive HSTS header
build.chromium.org: did not receive HSTS header (error ignored - included regardless)
buildci.asia: could not connect to host
+buildfaith.ca: did not receive HSTS header
buildify.co.za: could not connect to host
-building-cost-estimators.com: did not receive HSTS header
buildingclouds.at: could not connect to host
buildingclouds.ch: could not connect to host
+buildingclouds.de: could not connect to host
buildingclouds.es: could not connect to host
buildingclouds.eu: could not connect to host
buildingclouds.fr: could not connect to host
buildrightbuildingservicesltd.co.uk: did not receive HSTS header
-buildsaver.co.za: did not receive HSTS header
+buildsaver.co.za: could not connect to host
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
+bukai.men: could not connect to host
bukatv.cz: could not connect to host
+bul3seas.eu: could not connect to host
+bulbcompare.com: 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
+bulkingtime.com: did not receive HSTS header
bull.id.au: could not connect to host
bullbits.com: max-age too low: 0
bulletbabu.com: could not connect to host
-bullpay.com: did not receive HSTS header
+bulletpoint.cz: could not connect to host
+bullpay.com: could not connect to host
bullterrier.me: could not connect to host
bulmafox.com: could not connect to host
bulmastife.com.br: could not connect to host
bumarkamoda.com: did not receive HSTS header
-bumshow.ru: did not receive HSTS header
+bumshow.ru: could not connect to host
bunadarbankinn.is: could not connect to host
bunaken.asia: could not connect to host
bunbomenu.de: could not connect to host
bunbun.be: could not connect to host
bundaberg.com: did not receive HSTS header
-bunny.tk: did not receive HSTS header
-bunsenlabs.org: max-age too low: 2592000
-buonventosbt.eu: did not receive HSTS header
-bupu.ml: could not connect to host
+bunny.tk: could not connect to host
+bunnymud.com: could not connect to host
+bupu.ml: did not receive HSTS header
+buqi.cc: could not connect to host
+buradangonder.com: could not connect to host
burckardtnet.de: did not receive HSTS header
bureaubolster.nl: did not receive HSTS header
bureaugravity.com: did not receive HSTS header
+burgawnc.gov: could not connect to host
burian-server.cz: could not connect to host
buricloud.fr: could not connect to host
burlesquemakeup.com: did not receive HSTS header
-burningcrash.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+burningcrash.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
burpsuite.site: could not connect to host
burroughsid.com: could not connect to host
burrow.ovh: could not connect to host
@@ -3123,21 +3943,21 @@ bush41.org: did not receive HSTS header
bushcraftfriends.com: could not connect to host
business.lookout.com: could not connect to host
business.medbank.com.mt: did not receive HSTS header
-businessadviceperth.com.au: did not receive HSTS header
businessamongus.com: could not connect to host
businessetmarketing.com: could not connect to host
businessfurs.info: could not connect to host
businesshosting.nl: did not receive HSTS header
businessimmigration-eu.com: could not connect to host
businessimmigration-eu.ru: could not connect to host
-businessmodeler.se: did not receive HSTS header
+businessmodeler.se: could not connect to host
businessradar.com.au: could not connect to host
-bustabit.com: could not connect to host
+bustimes.org: did not receive HSTS header
bustimes.org.uk: did not receive HSTS header
busybee360.com: could not connect to host
busyon.cloud: could not connect to host
butchersworkshop.com: did not receive HSTS header
butian518.com: did not receive HSTS header
+butikpris.se: 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
@@ -3145,29 +3965,25 @@ butterfieldstraining.com: could not connect to host
buttermilk.cf: could not connect to host
buturyu.net: did not receive HSTS header
buturyu.org: did not receive HSTS header
-buvinghausen.com: max-age too low: 86400
buy-thing.com: could not connect to host
-buyaccessible.gov: did not receive HSTS header
+buyaccessible.gov: could not connect to host
buybaby.eu: 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
-buyessayscheap.com: could not connect to host
+buyebook.xyz: 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
+buysellinvestproperties.com: did not receive HSTS header
buyshoe.org: could not connect to host
buytheway.co.za: 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
+bvalle.com: did not receive HSTS header
bvexplained.co.uk: could not connect to host
bvgg.eu: did not receive HSTS header
-bvionline.eu: did not receive HSTS header
-bvv-europe.eu: could not connect to host
bw81.xyz: could not connect to host
bwear4all.de: could not connect to host
bwf11.com: could not connect to host
@@ -3176,20 +3992,26 @@ bwf6.com: could not connect to host
bwf66.com: could not connect to host
bwf77.com: could not connect to host
bwf99.com: could not connect to host
+bwilkinson.co.uk: could not connect to host
bwin86.com: could not connect to host
+bwin8601.com: could not connect to host
+bwin8602.com: did not receive HSTS header
+bwin8603.com: could not connect to host
+bwin8604.com: did not receive HSTS header
+bwin8605.com: did not receive HSTS header
+bwin8606.com: did not receive HSTS header
bwwb.nu: did not receive HSTS header
bx-web.com: did not receive HSTS header
bxdev.me: could not connect to host
by.cx: did not receive HSTS header
by1896.com: could not connect to host
-by1898.com: did not receive HSTS header
+by1898.com: could not connect to host
by1899.com: could not connect to host
by4cqb.cn: could not connect to host
-by77.com: did not receive HSTS header
-by777.com: did not receive HSTS header
+by77.com: could not connect to host
bydisk.com: could not connect to host
+bye-bye.us: 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
@@ -3205,18 +4027,19 @@ 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: could not connect to host
+bypassed.st: did not receive HSTS header
bypassed.today: could not connect to host
bypassed.works: could not connect to host
-bypassed.world: could not connect to host
+bypassed.world: did not receive HSTS header
bypro.xyz: could not connect to host
+byrko.sk: could not connect to host
byronprivaterehab.com.au: did not receive HSTS header
byronr.com: could not connect to host
-byronwade.com: could not connect to host
-byte.chat: did not receive HSTS header
+byronwade.com: did not receive HSTS header
+byte-time.com: did not receive HSTS header
+byte.chat: could not connect to host
byte.wtf: did not receive HSTS header
bytelog.org: did not receive HSTS header
-byteowls.com: did not receive HSTS header
bytepark.de: did not receive HSTS header
bytesatwork.eu: could not connect to host
byteshift.ca: could not connect to host
@@ -3224,13 +4047,16 @@ bytesofcode.de: could not connect to host
bytesund.biz: could not connect to host
byteturtle.eu: did not receive HSTS header
byurudraw.pics: could not connect to host
-bywin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+byvshie.com: could not connect to host
+bywin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bzhub.bid: could not connect to host
c-rickroll-v.pw: could not connect to host
+c0o.cc: 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]
+c12discountonline.com: could not connect to host
+c16t.uk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
c1yd3i.me: could not connect to host
+c2media.de: did not receive HSTS header
c2o2.xyz: could not connect to host
c3-compose.com: could not connect to host
c3.pm: could not connect to host
@@ -3240,42 +4066,58 @@ 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
+c6957.com: could not connect to host
ca-terminal-multiservices.fr: could not connect to host
-cabarave.com: could not connect to host
+caaps.org.au: did not receive HSTS header
+cabanactf.com: could not connect to host
cablehighspeed.net: could not connect to host
cabsites.com: could not connect to host
cabusar.fr: could not connect to host
+cachetagalong.com: could not connect to host
cachethome.com: could not connect to host
cachethq.io: did not receive HSTS header
cacn.pw: could not connect to host
caconnect.org: could not connect to host
-cacr.pw: could not connect to host
-cadacoon.com: did not receive HSTS header
+cadacoon.com: could not connect to host
+cadafamilia.de: could not connect to host
cadao.me: did not receive HSTS header
cadburymovies.in.net: did not receive HSTS header
+cadcreations.co.ke: did not receive HSTS header
cadenadg.gr: did not receive HSTS header
-cadra.nl: could not connect to host
caerostris.com: could not connect to host
caesreon.com: could not connect to host
cafe-murr.de: could not connect to host
cafe-scientifique.org.ec: could not connect to host
cafe-service.ru: could not connect to host
cafechesscourt.com: could not connect to host
+cafeey.com: could not connect to host
cafefresco.pe: did not receive HSTS header
+caferestor.com: did not receive HSTS header
+cafesdomundo.pt: did not receive HSTS header
cafesg.net: did not receive HSTS header
+caibi.io: could not connect to host
caim.cz: did not receive HSTS header
caipai.fm: could not connect to host
+caipao123.com: max-age too low: 0
cairnterrier.com.br: could not connect to host
cais.de: did not receive HSTS header
-cajapopcorn.com: max-age too low: 0
+caiwenjian.xyz: could not connect to host
cake.care: could not connect to host
cal.goip.de: could not connect to host
+calatoruldigital.ro: did not receive HSTS header
+calcasieuparish.gov: could not connect to host
calcularpagerank.com.br: could not connect to host
calculatoaresecondhand.xyz: could not connect to host
+caldaro.de: did not receive HSTS header
caldecotevillagehall.co.uk: could not connect to host
-calebmorris.com: max-age too low: 900
+caleb.host: could not connect to host
+calebennett.com: did not receive HSTS header
+calendriergratuit.fr: max-age too low: 300
+calentadores-solares-sunshine.com: did not receive HSTS header
calgaryconstructionjobs.com: did not receive HSTS header
+calidadelectronica.com: did not receive HSTS header
calidoinvierno.com: could not connect to host
+calkinsmusic.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
@@ -3288,12 +4130,17 @@ 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
+calypsohost.net: did not receive HSTS header
+calyxinstitute.org: 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
+camelliaflowers.com.au: did not receive HSTS header
+cameroonlounge.com: did not receive HSTS header
camisadotorcedor.com.br: could not connect to host
camjackson.net: did not receive HSTS header
-camjobs.net: did not receive HSTS header
+camjobs.net: could not connect to host
cammarkets.com: could not connect to host
camomile.desi: did not receive HSTS header
campaignelves.com: could not connect to host
@@ -3301,72 +4148,84 @@ campbellsoftware.co.uk: could not connect to host
campbrainybunch.com: did not receive HSTS header
campeoesdofutebol.com.br: did not receive HSTS header
campeonatoalemao.com.br: could not connect to host
-campfire.co.il: did not receive HSTS header
+campfire.co.il: could not connect to host
campfourpaws.com: did not receive HSTS header
+camphub.co: could not connect to host
campingcarlovers.com: could not connect to host
campingdreams.com: did not receive HSTS header
campus-cybersecurity.team: did not receive HSTS header
campusportalng.com: did not receive HSTS header
camsanalytics.com: could not connect to host
-camshowdir.com: could not connect to host
-camshowhub.com: could not connect to host
canadianchristianity.com: did not receive HSTS header
canadiangamblingchoice.com: did not receive HSTS header
canarianlegalalliance.com: did not receive HSTS header
cancelmyprofile.com: could not connect to host
cancreate.nl: did not receive HSTS header
candicontrols.com: did not receive HSTS header
+candlcastles.co.uk: could not connect to host
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
+candyout.com: did not receive HSTS header
canerkorkmaz.com: did not receive HSTS header
canfield.gov: did not receive HSTS header
+cangelloplasticsurgery.com: did not receive HSTS header
canifis.net: did not receive HSTS header
cannarobotics.com: could not connect to host
+canopy.ninja: could not connect to host
+cansworld.com: could not connect to host
canterberry.cc: did not receive HSTS header
-canterbury.ws: could not connect to host
canyons.media: did not receive HSTS header
caodecristachines.com.br: could not connect to host
caodesantohumberto.com.br: could not connect to host
caoyu.info: did not receive HSTS header
capacent.is: did not receive HSTS header
-capacitacionyautoempleo.com: did not receive HSTS header
-capecycles.co.za: did not receive HSTS header
+capecycles.co.za: could not connect to host
+capellidipremoli.com: did not receive HSTS header
capeyorkfire.com.au: could not connect to host
capitaltg.com: did not receive HSTS header
capogna.com: did not receive HSTS header
capsule.org: did not receive HSTS header
+capsulesubs.fr: 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
+captivatedbytabrett.com: did not receive HSTS header
captivationscience.com: could not connect to host
+captured-symphonies.com: could not connect to host
capturethepen.co.uk: could not connect to host
car-navi.ph: did not receive HSTS header
car-rental24.com: could not connect to host
+car-shop.top: did not receive HSTS header
carano-service.de: did not receive HSTS header
caraudio69.cz: did not receive HSTS header
carbonmonoxidelawyer.net: could not connect to host
carck.co.uk: could not connect to host
carck.uk: could not connect to host
-card-cashing.com: did not receive HSTS header
card-toka.jp: could not connect to host
+cardelmar.com: did not receive HSTS header
+cardelmar.de: did not receive HSTS header
+cardelmar.es: did not receive HSTS header
+cardgames.com: max-age too low: 0
cardloan-manual.net: could not connect to host
cardoni.net: did not receive HSTS header
-cardse.net: could not connect to host
cardstream.com: did not receive HSTS header
cardurl.com: did not receive HSTS header
cardwars.hu: could not connect to host
+career.support: could not connect to host
careeraid.in: could not connect to host
+careerpower.co.in: could not connect to host
careerstuds.com: did not receive HSTS header
careplasticsurgery.com: did not receive HSTS header
carey.bio: did not receive HSTS header
carey.li: did not receive HSTS header
-carfinancehelp.com: could not connect to host
-carif-idf.net: did not receive HSTS header
-carif-idf.org: did not receive HSTS header
+cargobay.net: could not connect to host
+caribbeanarthritisfoundation.org: did not receive HSTS header
+carif-idf.net: could not connect to host
+carif-idf.org: could not connect to host
carinsurance.es: could not connect to host
+cariocacooking.com: did not receive HSTS header
carlandfaith.com: did not receive HSTS header
carlolly.co.uk: could not connect to host
carlosalves.info: could not connect to host
@@ -3375,17 +4234,22 @@ 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
+caroleblouin.ca: did not receive HSTS header
caroli.biz: could not connect to host
caroli.info: could not connect to host
-carpliyz.com: did not receive HSTS header
+carparo.net: did not receive HSTS header
+carpliyz.com: could not connect to host
carrando.de: could not connect to host
carredejardin.com: did not receive HSTS header
+carrentalsathens.com: did not receive HSTS header
carroarmato0.be: did not receive HSTS header
carrollservicecompany.com: did not receive HSTS header
carrosserie-dubois.com: did not receive HSTS header
+carrouselcompany.fr: could not connect to host
+carseatchecks.ca: could not connect to host
carsforbackpackers.com: could not connect to host
carsten.pw: did not receive HSTS header
-carstenfeuls.de: did not receive HSTS header
+carstenfeuls.de: could not connect to host
cartadeviajes.cl: did not receive HSTS header
cartadeviajes.co: did not receive HSTS header
cartadeviajes.com: did not receive HSTS header
@@ -3402,8 +4266,11 @@ cartelcircuit.com: did not receive HSTS header
carterorland.com: could not connect to host
cartesunicef.be: did not receive HSTS header
cartoonhd.cc: could not connect to host
+carun.us: did not receive HSTS header
carwashvapeur.be: could not connect to host
-casadellecose.com: did not receive HSTS header
+caryefurd.com: could not connect to host
+casa-su.casa: did not receive HSTS header
+casadellecose.com: could not connect to host
casajardininsecticidas.com: did not receive HSTS header
casamorelli.com.br: did not receive HSTS header
casashopp.com.br: could not connect to host
@@ -3417,39 +4284,51 @@ cashlink.de: did not receive HSTS header
cashlink.io: did not receive HSTS header
cashmyphone.ch: could not connect to host
cashsector.ga: could not connect to host
-casinocashflow.ru: did not receive HSTS header
-casinolistings.com: could not connect to host
-casinoluck.com: could not connect to host
+casinoluck.com: did not receive HSTS header
casinoreal.com: could not connect to host
casinostest.com: could not connect to host
+casinovergleich.com: did not receive HSTS header
casionova.org: could not connect to host
casioshop.eu: did not receive HSTS header
-casjay.com: did not receive HSTS header
+casjay.cloud: could not connect to host
+casjay.com: could not connect to host
+casjay.info: could not connect to host
+casjay.us: could not connect to host
+casjaygames.com: could not connect to host
casovi.cf: could not connect to host
castagnonavocats.com: did not receive HSTS header
+castellannenberg.com: could not connect to host
castlejackpot.com: did not receive HSTS header
-castleswa.com.au: could not connect to host
+casualdesignsfurniture.com: max-age too low: 7889238
+cat-blum.com: could not connect to host
cat-box.de: did not receive HSTS header
-cata.ga: did not receive HSTS header
-catalin.pw: could not connect to host
+cat93.com: could not connect to host
+cata.ga: could not connect to host
+catalin.pw: did not receive HSTS header
catarsisvr.com: could not connect to host
-catchfotografie.nl: did not receive HSTS header
+catchfotografie.nl: could not connect to host
catcontent.cloud: could not connect to host
-caterkids.com: did not receive HSTS header
+catdecor.ru: did not receive HSTS header
+caterkids.com: could not connect to host
catgirl.me: did not receive HSTS header
catgirl.pics: could not connect to host
+catgirl.science: did not receive HSTS header
+catharisme.net: 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
catherinescastles.co.uk: did not receive HSTS header
+catherinesofpartick.co.uk: did not receive HSTS header
cathosting.org: could not connect to host
-catinmay.com: did not receive HSTS header
+catinmay.com: could not connect to host
catnapstudios.com: could not connect to host
+catnet.dk: did not receive HSTS header
catnmeow.com: could not connect to host
catprog.org: did not receive HSTS header
+catram.org: did not receive HSTS header
catsmagic.pp.ua: could not connect to host
-caughtredhanded.co.nz: could not connect to host
-causae-fincas.es: did not receive HSTS header
+caudo.net: did not receive HSTS header
+caudohay.com: did not receive HSTS header
+caulong-ao.net: could not connect to host
causae.es: did not receive HSTS header
cavaleria.ro: did not receive HSTS header
cavalierkingcharlesspaniel.com.br: could not connect to host
@@ -3457,32 +4336,39 @@ cave-reynard.ch: could not connect to host
caveclan.org: did not receive HSTS header
cavedevs.de: could not connect to host
cavedroid.xyz: could not connect to host
-cavern.tv: did not receive HSTS header
cavevinsdefrance.fr: did not receive HSTS header
cayafashion.de: did not receive HSTS header
-cayounglab.co.jp: did not receive HSTS header
+cayounglab.co.jp: could not connect to host
+cazes.info: did not receive HSTS header
cbamo.org: did not receive HSTS header
cbdcontact.pl: could not connect to host
cbi-epa.gov: could not connect to host
+cc-brantomois.fr: did not receive HSTS header
cc2729.com: did not receive HSTS header
+cc6957.com: could not connect to host
+ccac.gov: max-age too low: 120
ccayearbook.com: could not connect to host
ccblog.de: did not receive HSTS header
ccgn.co: could not connect to host
+cchen.ga: 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
+ccsource.org: could not connect to host
ccsys.com: could not connect to host
cctech.ph: could not connect to host
cctld.com: could not connect to host
+cctvcanada.net: could not connect to host
ccu.io: could not connect to host
ccv-deutschland.de: did not receive HSTS header
ccv.ch: did not receive HSTS header
ccv.eu: did not receive HSTS header
ccv.nl: did not receive HSTS header
cd0.us: could not connect to host
+cda-nw.co.uk: did not receive HSTS header
cdcpartners.gov: could not connect to host
cdeck.net: could not connect to host
-cdlcenter.com: did not receive HSTS header
+cdlcenter.com: could not connect to host
cdmhp.org.nz: could not connect to host
cdmlb.net: could not connect to host
cdmon.tech: could not connect to host
@@ -3492,27 +4378,32 @@ cdndepo.com: could not connect to host
cdnk39.com: could not connect to host
cdreporting.co.uk: did not receive HSTS header
cdt.org: did not receive HSTS header
+cdu-wilgersdorf.de: did not receive HSTS header
+cduckett.net: could not connect to host
ceagriproducts.com: did not receive HSTS header
+cecilga.gov: could not connect to host
cecilwalker.com.au: did not receive HSTS header
+ced-services.nl: could not connect to host
+cedricmartineau.com: did not receive HSTS header
cee.io: 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
-celec.gob.ec: could not connect to host
+celebphotos.club: did not receive HSTS header
celeirorural.com.br: did not receive HSTS header
celeraindustries.tk: did not receive HSTS header
celigo.com: did not receive HSTS header
celina-reads.de: could not connect to host
-cellartracker.com: could not connect to host
cellsites.nz: could not connect to host
celtadigital.com: did not receive HSTS header
+celuliteonline.com: could not connect to host
cem.pw: did not receive HSTS header
cencalvia.org: could not connect to host
centennialrewards.com: did not receive HSTS header
-centerforpolicy.org: could not connect to host
centillien.com: did not receive HSTS header
+centision.com: did not receive HSTS header
centos.pub: could not connect to host
central4.me: could not connect to host
centralcountiesservices.org: did not receive HSTS header
@@ -3522,23 +4413,28 @@ centralvacsunlimited.net: could not connect to host
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
-centrym.top: did not receive HSTS header
+centrodoinstalador.com.br: could not connect to host
+centromasterin.com: did not receive HSTS header
+centrym.top: could not connect to host
centsforchange.net: could not connect to host
century-group.com: max-age too low: 2592000
ceoimon.com: did not receive HSTS header
ceoptique.com: did not receive HSTS header
cercevelet.com: did not receive HSTS header
+cerebelo.info: could not connect to host
ceres1.space: did not receive HSTS header
ceresia.ch: could not connect to host
ceritamalam.net: could not connect to host
cerize.love: could not connect to host
cernega.ro: did not receive HSTS header
cerpa.com.br: did not receive HSTS header
-cerstve-korenie.sk: could not connect to host
+cerstve-korenie.sk: did not receive HSTS header
cerstvekorenie.sk: did not receive HSTS header
cert.se: max-age too low: 2628001
-certcenter.fr: could not connect to host
+certcenter.ch: max-age too low: 2592000
+certcenter.co.uk: max-age too low: 5184000
+certcenter.de: max-age too low: 2592000
+certcenter.fr: did not receive HSTS header
certifi.io: did not receive HSTS header
certifix.eu: did not receive HSTS header
certly.io: could not connect to host
@@ -3547,21 +4443,28 @@ ceruleanmainbeach.com.au: did not receive HSTS header
cesal.net: could not connect to host
cesantias.co: could not connect to host
cesidianroot.eu: could not connect to host
-cespri.com.pe: could not connect to host
+cespri.com.pe: did not receive HSTS header
cestunmetier.ch: could not connect to host
ceta.one: did not receive HSTS header
cetangarana.com: did not receive HSTS header
cevrimici.com: could not connect to host
+ceyizlikelisleri.com: did not receive HSTS header
cf-tm.net: could not connect to host
cf11.de: did not receive HSTS header
cfa.gov: did not receive HSTS header
+cfan.space: could not connect to host
cfcnexus.org: could not connect to host
cfcproperties.com: did not receive HSTS header
cfetengineering.com: could not connect to host
cfneia.org: did not receive HSTS header
cfoitplaybook.com: could not connect to host
+cfttt.com: could not connect to host
+cgan.pw: could not connect to host
cganx.org: could not connect to host
+cgeceia.cf: could not connect to host
cgerstner.eu: did not receive HSTS header
+cglib.xyz: could not connect to host
+cgminc.net: could not connect to host
cgsshelper.tk: could not connect to host
cgtx.us: could not connect to host
chabaojia.com: did not receive HSTS header
@@ -3571,17 +4474,19 @@ chahub.com: could not connect to host
chainedunion.info: could not connect to host
chainmonitor.com: could not connect to host
chairinstitute.com: did not receive HSTS header
+chaizhikang.com: could not connect to host
chaldeen.pro: did not receive HSTS header
challengeskins.com: could not connect to host
+challstrom.com: could not connect to host
+chamathellawala.com: did not receive HSTS header
chameleon-ents.co.uk: could not connect to host
-chameth.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
chamilo.org: did not receive HSTS header
champ.dog: did not receive HSTS header
championnat-romand-cuisiniers-amateurs.ch: could not connect to host
championsofregnum.com: did not receive HSTS header
chancat.blog: could not connect to host
chandlerredding.com: could not connect to host
-changelab.cc: max-age too low: 0
+chang-feng.info: did not receive HSTS header
changetip.com: did not receive HSTS header
channeladam.com: did not receive HSTS header
channelcards.com: did not receive HSTS header
@@ -3589,34 +4494,43 @@ channellife.asia: did not receive HSTS header
channellife.co.nz: did not receive HSTS header
channellife.com.au: did not receive HSTS header
channyc.com: could not connect to host
+chanoyu-gakkai.jp: did not receive HSTS header
+chanshiyu.com: did not receive HSTS header
chaos.fail: could not connect to host
chaoscastles.co.uk: did not receive HSTS header
chaoswebs.net: did not receive HSTS header
-chaoticlaw.com: did not receive HSTS header
chaouby.com: could not connect to host
chapelaria.tf: could not connect to host
+chapstick.life: could not connect to host
charakato.com: could not connect to host
-chargejuice.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-charityclear.com: could not connect to host
+chargedmonkey.com: did not receive HSTS header
+chargejuice.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+chargersdirect.com.au: did not receive HSTS header
+charityclear.com: did not receive HSTS header
charitystreet.co.uk: could not connect to host
charl.eu: could not connect to host
charlenevondell.com: could not connect to host
-charlesjay.com: did not receive HSTS header
+charlesjay.com: could not connect to host
+charlesmilette.net: did not receive HSTS header
charlestonsecuritysystems.net: did not receive HSTS header
charliemcneive.com: could not connect to host
charlimarie.com: did not receive HSTS header
charlipopkids.com.au: did not receive HSTS header
-charmanterelefant.at: did not receive HSTS header
+charlotte-touati.ch: could not connect to host
+charlottecountyva.gov: could not connect to host
+charlotteswimmingpoolbuilder.com: could not connect to host
charnleyhouse.co.uk: did not receive HSTS header
charonsecurity.com: could not connect to host
charp.eu: could not connect to host
+chars.ga: could not connect to host
chartstoffarm.de: did not receive HSTS header
chasafilli.ch: could not connect to host
chaseandzoey.de: could not connect to host
chaseganey.com: did not receive HSTS header
chasing-coins.com: did not receive HSTS header
-chaska.co.za: could not connect to host
+chaska.co.za: did not receive HSTS header
chasse-et-plaisir.com: did not receive HSTS header
+chat2.cf: could not connect to host
chatbot.me: did not receive HSTS header
chatbot.one: could not connect to host
chatbotclic.com: could not connect to host
@@ -3625,29 +4539,33 @@ 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
-chatnbook.com: did not receive HSTS header
+chatint.com: did not receive HSTS header
+chatme.im: could not connect to host
+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
+chazay.net: could not connect to host
chazgie.se: did not receive HSTS header
+chc9912.com: max-age too low: 0
chcemvediet.sk: max-age too low: 1555200
chci-web.cz: max-age too low: 0
chdgaming.xyz: could not connect to host
cheah.xyz: did not receive HSTS header
+cheapalarmparts.com.au: did not receive HSTS header
cheapdns.org: could not connect to host
-cheapwritinghelp.com: could not connect to host
-cheapwritingservice.com: could not connect to host
+cheapssl.com.tr: 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
checkmateshoes.com: did not receive HSTS header
-checkmatewebsolutions.com: max-age too low: 0
+checkmatewebsolutions.com: did not receive HSTS header
checkout.google.com: could not connect to host (error ignored - included regardless)
-checkras.tk: could not connect to host
+checktechnology.com.au: could not connect to host
checkyourmeds.com: did not receive HSTS header
-cheekylittlerascals.co.uk: did not receive HSTS header
+checookies.com: could not connect to host
+cheekylittlerascals.co.uk: could not connect to host
cheerflow.com: could not connect to host
cheesefusion.com: could not connect to host
cheesehosting.net: did not receive HSTS header
@@ -3659,25 +4577,31 @@ chejianer.cn: could not connect to host
chelema.xyz: could not connect to host
chellame.com: could not connect to host
chellame.fr: could not connect to host
-chelseafs.co.uk: did not receive HSTS header
+cheltenhambounce.co.uk: could not connect to host
chemicalguys-ruhrpott.de: could not connect to host
+chen22311.com: max-age too low: 0
chenfengyi.com: could not connect to host
+chengarda.com: could not connect to host
+chenghao360.top: could not connect to host
chengtongled.com: could not connect to host
chensir.net: could not connect to host
+chentianyi.cn: could not connect to host
+cheolguso.com: did not receive HSTS header
chepaofen.com: did not receive HSTS header
cherekerry.com: could not connect to host
-cherrett.digital: did not receive HSTS header
cherrydropscandycarts.co.uk: could not connect to host
+cherryonit.com: could not connect to host
cherylsoleway.com: did not receive HSTS header
chesscoders.com: did not receive HSTS header
chessreporter.nl: did not receive HSTS header
chesterbrass.uk: did not receive HSTS header
-chhy.at: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+chestnut.cf: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
chiamata-aiuto.ch: could not connect to host
chiaraiuola.com: could not connect to host
chiaramail.com: could not connect to host
chib.chat: could not connect to host
chicorycom.net: did not receive HSTS header
+chiemgauflirt.de: did not receive HSTS header
chihiro.xyz: could not connect to host
chijiokeindustries.co.uk: could not connect to host
chikan-beacon.net: could not connect to host
@@ -3685,15 +4609,18 @@ chikatomo-ryugaku.com: did not receive HSTS header
chikory.com: could not connect to host
childcaresolutionscny.org: did not receive HSTS header
childrendeservebetter.org: could not connect to host
-chilli943.info: did not receive HSTS header
+childwelfare.gov: did not receive HSTS header
+chillebever.nl: could not connect to host
+chilli943.info: could not connect to host
chimparoo.ca: did not receive HSTS header
china-dhl.org: could not connect to host
china-line.org: could not connect to host
chinacdn.org: could not connect to host
+chinatrademarkoffice.com: did not receive HSTS header
chinawhale.com: could not connect to host
+chint.ai: could not connect to host
chinternet.xyz: could not connect to host
chiphell.com: did not receive HSTS header
-chiralsoftware.com: could not connect to host
chirgui.eu: could not connect to host
chloca.jp: could not connect to host
chloe.re: did not receive HSTS header
@@ -3701,18 +4628,22 @@ chloeallison.co.uk: could not connect to host
chloehorler.com: could not connect to host
chlouis.net: could not connect to host
chm.vn: did not receive HSTS header
+chmurakotori.ml: could not connect to host
chocolat-suisse.ch: could not connect to host
chocolate13tilias.com.br: did not receive HSTS header
+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
+choiceautoloan.com: could not connect to host
choiralberta.ca: did not receive HSTS header
choisirmonerp.com: did not receive HSTS header
chollima.pro: could not connect to host
+chon.io: did not receive HSTS header
chontalpa.pw: could not connect to host
-choootto.club: did not receive HSTS header
+choootto.club: could not connect to host
chopperforums.com: could not connect to host
-chordso.com: did not receive HSTS header
+chordso.com: could not connect to host
chorkley.co.uk: could not connect to host
chorkley.com: could not connect to host
chorkley.me: could not connect to host
@@ -3721,6 +4652,7 @@ chorleiterverband.de: did not receive HSTS header
choruscrowd.com: could not connect to host
chotlo.com: did not receive HSTS header
chotu.net: could not connect to host
+chowii.com: 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
@@ -3728,14 +4660,13 @@ chrisbrakebill.com: did not receive HSTS header
chrisbrown.id.au: could not connect to host
chrisebert.net: could not connect to host
chrisfaber.com: could not connect to host
-chrisfinazzo.com: did not receive HSTS header
chriskirchner.de: did not receive HSTS header
chriskyrouac.com: could not connect to host
chrisopperwall.com: could not connect to host
chrisself.xyz: could not connect to host
christchurchbouncycastles.co.uk: could not connect to host
+christerwaren.fi: did not receive HSTS header
christiaandruif.nl: could not connect to host
-christian-fischer.pictures: did not receive HSTS header
christian-krug.website: did not receive HSTS header
christianbro.gq: could not connect to host
christianhoffmann.info: could not connect to host
@@ -3743,8 +4674,10 @@ christianhospitaltank.org: did not receive HSTS header
christiansayswords.com: could not connect to host
christianscholz.eu: did not receive HSTS header
christina-quast.de: did not receive HSTS header
+christophbartschat.com: could not connect to host
christophebarbezat.ch: could not connect to host
christophercolumbusfoundation.gov: could not connect to host
+christopherl.com: did not receive HSTS header
christopherpritchard.co.uk: could not connect to host
christophersole.com: could not connect to host
christophheich.me: did not receive HSTS header
@@ -3757,50 +4690,57 @@ chromaryu.net: 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)
+chromereporting-pa.googleapis.com: did not receive HSTS header (error ignored - included regardless)
chronic101.xyz: could not connect to host
-chronogram.me: did not receive HSTS header
+chrono-ski-aravis.fr: did not receive HSTS header
+chronogram.me: could not connect to host
chronoproject.com: did not receive HSTS header
chrst.ph: could not connect to host
chsh.moe: could not connect to host
chua.cf: did not receive HSTS header
chua.family: did not receive HSTS header
-chuckame.fr: could not connect to host
+chuck.ovh: 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
-churchlinkpro.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+churchlinkpro.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
churchux.co: could not connect to host
churrasqueirafacil.com.br: could not connect to host
chxdf.net: did not receive HSTS header
+chybeck.net: did not receive HSTS header
+ci5.me: could not connect to host
cianmawhinney.xyz: could not connect to host
+ciansc.com: could not connect to host
cidadedopoker.com.br: did not receive HSTS header
-ciderclub.com: could not connect to host
cidr.ml: could not connect to host
cienbeaute-lidl.fr: did not receive HSTS header
+cienciasempresariais.pt: could not connect to host
cigarblogs.net: could not connect to host
-cigarterminal.com: could not connect to host
cigi.site: could not connect to host
-ciicutini.ro: did not receive HSTS header
ciiex.co: could not connect to host
cim2b.de: could not connect to host
cimalando.eu: could not connect to host
cinartelorgu.com: did not receive HSTS header
cinay.pw: could not connect to host
cindey.io: could not connect to host
-cindydudley.com: did not receive HSTS header
cinefilia.tk: could not connect to host
cinelite.club: could not connect to host
cinema5.ru: did not receive HSTS header
cinemaclub.co: could not connect to host
ciner.is: could not connect to host
cinerama.com.br: did not receive HSTS header
+cinicloud.com: did not receive HSTS header
+cinnabon.com: max-age too low: 7889238
+cinq-elements.fr: could not connect to host
+cinq-elements.net: could not connect to host
cintactimber.com: did not receive HSTS header
cintdirect.com: could not connect to host
cioconference.co.nz: could not connect to host
cipher.co.th: did not receive HSTS header
cipher.land: did not receive HSTS header
cipherli.st: did not receive HSTS header
+ciphrex.com: could not connect to host
ciplanutrition.com: could not connect to host
-cipriano.nl: did not receive HSTS header
cira.email: could not connect to host
circ-logic.com: did not receive HSTS header
circlebox.rocks: could not connect to host
@@ -3811,104 +4751,127 @@ cirugiasplasticas.com.mx: did not receive HSTS header
cirujanooral.com: could not connect to host
ciscohomeanalytics.com: could not connect to host
ciscommerce.net: could not connect to host
+citadelnet.works: could not connect to host
citationgurus.com: could not connect to host
citiagent.cz: could not connect to host
+citizen-cam.de: did not receive HSTS header
+citizenslasvegas.com: could not connect to host
+citizenspact.eu: did not receive HSTS header
citra-emu.org: did not receive HSTS header
citroner.blog: did not receive HSTS header
citybusexpress.com: did not receive HSTS header
+cityofarcolatx.gov: could not connect to host
cityofeastpointemi.gov: could not connect to host
cityoflaurel.org: did not receive HSTS header
-cityofwadley-ga.gov: did not receive HSTS header
+cityofmadera.gov: did not receive HSTS header
+cityofwadley-ga.gov: could not connect to host
+cityofwoodward-ok.gov: could not connect to host
citywalkr.com: could not connect to host
ciuciucadou.ro: could not connect to host
cium.ru: could not connect to host
-ciurcasdan.eu: did not receive HSTS header
civicunicorn.com: could not connect to host
civicunicorn.us: could not connect to host
cjcaron.org: could not connect to host
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
+ckrubble.co.za: did not receive HSTS header
+cl0ud.space: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
clacetandil.com.ar: could not connect to host
clad.cf: could not connect to host
claibornecountytn.gov: could not connect to host
claimit.ml: could not connect to host
+clangwarnings.com: could not connect to host
clanthor.com: did not receive HSTS header
clapping-rhymes.com: could not connect to host
clara-baumert.de: could not connect to host
+claraism.com: did not receive HSTS header
claralabs.com: did not receive HSTS header
claretandbanter.uk: did not receive HSTS header
clarity-c2ced.appspot.com: did not receive HSTS header
claritysrv.com: did not receive HSTS header
+clarkeaward.com: did not receive HSTS header
clarksgaragedoorrepair.com: did not receive HSTS header
-clash-movies.de: max-age too low: 172800
clashersrepublic.com: could not connect to host
classicday.nl: could not connect to host
classicsandexotics.com: could not connect to host
classicshop.ua: did not receive HSTS header
classicspublishing.com: could not connect to host
classifiedssa.co.za: could not connect to host
-claude-leveille.com: max-age too low: 86400
+classyvaper.de: 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
clcleaningco.com: could not connect to host
+cldfile.com: could not connect to host
cleanbeautymarket.com.au: did not receive HSTS header
+cleancode.club: could not connect to host
cleanexperts.co.uk: could not connect to host
+cleanfiles.us: could not connect to host
cleaningsquad.ca: did not receive HSTS header
cleanmta.com: could not connect to host
+cleansewellness.com: could not connect to host
cleanstar.org: did not receive HSTS header
-clear.ml: could not connect to host
+clear.ml: did not receive HSTS header
clearc.tk: could not connect to host
clearchatsandbox.com: could not connect to host
clearer.cloud: could not connect to host
clearkonjac.com: did not receive HSTS header
+clearsettle-admin.com: did not receive HSTS header
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
+clevergod.net: max-age too low: 604800
+clic-et-site.com: could not connect to host
clic-music.com: could not connect to host
+clicecompre.com.br: could not connect to host
+clich.cn: did not receive HSTS header
click-2-order.co.uk: did not receive HSTS header
clickandgo.com: did not receive HSTS header
clickandshoot.nl: could not connect to host
+clickclock.cc: could not connect to host
clickforclever.com: did not receive HSTS header
clickgram.biz: could not connect to host
clickomobile.com: did not receive HSTS header
clicks.co.za: max-age too low: 1800
+clicksaveandprint.com: did not receive HSTS header
clicktenisdemesa.com.br: did not receive HSTS header
clicn.bio: could not connect to host
clicnbio.com: could not connect to host
cliftons.com: did not receive HSTS header
climaencusco.com: could not connect to host
+climaticarus.ru: max-age too low: 0
clingout.com: could not connect to host
clinia.ca: did not receive HSTS header
-clinicadelogopedia.net: did not receive HSTS header
clinicaferrusbratos.com: did not receive HSTS header
clinicasilos.com: did not receive HSTS header
cliniko.com: did not receive HSTS header
+cliniquecomplementaire.com: could not connect to host
clintonbloodworth.com: could not connect to host
clintonbloodworth.io: could not connect to host
clintonplasticsurgery.com: did not receive HSTS header
clintwilson.technology: max-age too low: 2592000
-clip.ovh: did not receive HSTS header
clipped4u.com: could not connect to host
+clite.ru: did not receive HSTS header
clnet.com.au: did not receive HSTS header
-clod-hacking.com: could not connect to host
-cloghercastles.co.uk: did not receive HSTS header
+cloaked.ch: could not connect to host
+clochix.net: could not connect to host
+cloghercastles.co.uk: could not connect to host
clojurescript.ru: could not connect to host
+cloppenburg-autmobil.com: could not connect to host
+cloppenburg-automobil.com: could not connect to host
clorik.com: could not connect to host
closient.com: could not connect to host
closingholding.com: could not connect to host
-cloturea.fr: could not connect to host
+cloturea.fr: did not receive HSTS header
cloud-crowd.com.au: did not receive HSTS header
cloud-project.com: could not connect to host
cloud.wtf: could not connect to host
cloud2go.de: did not receive HSTS header
cloud58.org: did not receive HSTS header
-cloudalice.com: could not connect to host
cloudalice.net: could not connect to host
cloudapi.vc: could not connect to host
cloudbased.info: could not connect to host
@@ -3924,90 +4887,107 @@ clouddesktop.co.nz: could not connect to host
cloudfren.com: could not connect to host
cloudimag.es: could not connect to host
cloudimproved.com: could not connect to host
-cloudimprovedtest.com: could not connect to host
cloudkit.pro: did not receive HSTS header
+cloudland.club: did not receive HSTS header
cloudlink.club: did not receive HSTS header
cloudmigrator365.com: did not receive HSTS header
-cloudns.com.au: could not connect to host
+cloudnote.cc: could not connect to host
+cloudns.com.au: did not receive HSTS header
cloudopt.net: did not receive HSTS header
+cloudoptimizedsmb.com: could not connect to host
cloudpagesforwork.com: did not receive HSTS header
cloudpebble.net: did not receive HSTS header
cloudpengu.in: could not connect to host
clouds.webcam: could not connect to host
cloudsocial.io: could not connect to host
+cloudspeedy.net: could not connect to host
cloudspotterapp.com: did not receive HSTS header
+cloudsprt.com: did not receive HSTS header
cloudstoragemaus.com: could not connect to host
cloudstorm.me: could not connect to host
cloudstrike.co: could not connect to host
-cloudtocloud.tk: could not connect to host
+cloudtskr.com: could not connect to host
cloudwalk.io: did not receive HSTS header
cloudwarez.xyz: could not connect to host
+cloudwellmarketing.com: could not connect to host
clounix.online: could not connect to host
clovissantos.com: could not connect to host
clowde.in: could not connect to host
-clownaroundbouncycastles.co.uk: did not receive HSTS header
+clownaroundbouncycastles.co.uk: could not connect to host
clownish.co.il: could not connect to host
clsimplex.com: did not receive HSTS header
-club-duomo.com: could not connect to host
+club-corsicana.de: did not receive HSTS header
+club-is.ru: did not receive HSTS header
clubcall.com: did not receive HSTS header
clubdeslecteurs.net: could not connect to host
+clubedalutashop.com: did not receive HSTS header
clubmate.rocks: could not connect to host
clubmix.co.kr: could not connect to host
clubscannan.ie: did not receive HSTS header
cluj.apartments: could not connect to host
-clush.pw: did not receive HSTS header
+cluj.help: 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
+clweb.ch: 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
+cm.center: max-age too low: 0
+cm3.pw: did not receive HSTS header
cmahy.be: did not receive HSTS header
cmangos.net: could not connect to host
cmc-versand.de: did not receive HSTS header
cmcc.network: could not connect to host
+cmcelectrical.com: did not receive HSTS header
cmci.dk: did not receive HSTS header
cmdtelecom.net.br: did not receive HSTS header
+cmf.qc.ca: could not connect to host
+cmftech.com: could not connect to host
+cmitao.com: could not connect to host
cmpr.es: did not receive HSTS header
cmrss.com: could not connect to host
cmsbattle.com: could not connect to host
cmscafe.ru: did not receive HSTS header
cmskh.co.uk: could not connect to host
cmso-cal.com: could not connect to host
-cmusical.es: did not receive HSTS header
+cmusical.es: could not connect to host
cmweller.com: could not connect to host
cnam.net: did not receive HSTS header
cnaprograms.online: could not connect to host
+cnatraining.network: 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
cnlau.com: could not connect to host
cnlic.com: could not connect to host
+cnnet.fun: could not connect to host
cnnet.in: could not connect to host
cnrd.me: could not connect to host
cnsyear.com: did not receive HSTS header
cnwage.com: could not connect to host
-cnwarn.com: could not connect to host
-co-driversphoto.se: did not receive HSTS header
+cnwarn.com: did not receive HSTS header
+co-driversphoto.se: could not connect to host
+co-factor.ro: did not receive HSTS header
co-yutaka.com: could not connect to host
-coa.one: could not connect to host
-coach-sportif.paris: could not connect to host
+coach-sportif.paris: did not receive HSTS header
+coachfederation.ro: could not connect to host
coachingconsultancy.com: did not receive HSTS header
coam.co: could not connect to host
cobcode.com: could not connect to host
-cobrax.net: could not connect to host
+cobrax.net: did not receive HSTS header
+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
-coccolebenessere.it: did not receive HSTS header
-cocker.cc: max-age too low: 7776000
cockerspanielamericano.com.br: could not connect to host
cockerspanielingles.com.br: could not connect to host
+cocktail-shaken.nl: did not receive HSTS header
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
+cocubes.com: did not receive HSTS header
cocyou.ooo: could not connect to host
codabix.net: could not connect to host
code-35.com: could not connect to host
@@ -4015,68 +4995,85 @@ code-digsite.com: could not connect to host
code-judge.tk: could not connect to host
code.google.com: did not receive HSTS header (error ignored - included regardless)
codealkemy.co: could not connect to host
-codebreaking.org: did not receive HSTS header
+codebreaking.org: could not connect to host
codeco.pw: could not connect to host
codecontrollers.de: could not connect to host
codeforce.io: could not connect to host
+codefordus.de: could not connect to host
codeforhakodate.org: did not receive HSTS header
codejunkie.de: could not connect to host
+codeknights.com: 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: did not receive HSTS header
-codemonkeyrawks.net: could not connect to host
+codemonkeyrawks.net: did not receive HSTS header
codemperium.com: could not connect to host
codenlife.xyz: could not connect to host
codeofhonor.tech: could not connect to host
codeplay.org: did not receive HSTS header
-codepoet.de: did not receive HSTS header
+codepoet.de: could not connect to host
codeproxy.ddns.net: could not connect to host
codepx.com: could not connect to host
codercross.com: could not connect to host
codercy.com: could not connect to host
coderhangout.com: could not connect to host
coderme.com: could not connect to host
-codersatlas.co: could not connect to host
codersatlas.com: could not connect to host
-codersatlas.xyz: could not connect to host
codersbase.org: could not connect to host
codersbistro.com: did not receive HSTS header
codesplain.in: could not connect to host
codestep.io: could not connect to host
codewiththepros.org: could not connect to host
codewiz.xyz: could not connect to host
+codific.eu: did not receive HSTS header
+codigo-bonus-bet.es: did not receive HSTS header
+codigodelbonusbet365.com: could not connect to host
+coding.net: did not receive HSTS header
+codyscafesb.com: did not receive HSTS header
coecrafters.com: could not connect to host
coffeedino.com: did not receive HSTS header
coffeeetc.co.uk: could not connect to host
-coffeestrategies.com: max-age too low: 5184000
+coffeetocode.me: did not receive HSTS header
+coffeist.com: could not connect to host
cogniflex.com: could not connect to host
cognixia.com: did not receive HSTS header
+cognixia.us: did not receive HSTS header
cogumelosmagicos.org: could not connect to host
cohesive.io: could not connect to host
+coi-verify.com: did not receive HSTS header
coin-exchange.cz: could not connect to host
+coinbit.trade: could not connect to host
coincoele.com.br: could not connect to host
+coincolors.co: did not receive HSTS header
coindam.com: could not connect to host
coindatabase.net: could not connect to host
+coindesfilles.fr: did not receive HSTS header
coinessa.com: could not connect to host
coinjar-sandbox.com: could not connect to host
+coinroom.com: could not connect to host
colarelli.ch: could not connect to host
coldaddy.com: could not connect to host
coldlostsick.net: did not receive HSTS header
coldwatericecream.com: did not receive HSTS header
colearnr.com: could not connect to host
-colegiocierp.com.br: did not receive HSTS header
+colectivos.org: did not receive HSTS header
+coleg.gov: could not connect to host
colincampbell.me: did not receive HSTS header
+colinchartier.com: could not connect to host
+colinstark.ca: could not connect to host
+collab.ddnss.org: did not receive HSTS header
collablynk.com: did not receive HSTS header
collabra.email: did not receive HSTS header
+collage.me: could not connect to host
collard.tk: could not connect to host
collbox.co: did not receive HSTS header
-collectivesupply.com: could not connect to host
+collectivesupply.com: did not receive HSTS header
collectosaurus.com: could not connect to host
colleencornez.com: could not connect to host
-collegepaperworld.com: could not connect to host
collegepulse.org: could not connect to host
-collies.eu: max-age too low: 3
+collegesecretary.cn: could not connect to host
+collegesecretary.com: could not connect to host
collinghammethodist.org.uk: did not receive HSTS header
collins.kg: could not connect to host
collins.press: could not connect to host
@@ -4085,25 +5082,28 @@ collision.fyi: could not connect to host
colmexpro.com: did not receive HSTS header
colognegaming.net: could not connect to host
coloppe.com: could not connect to host
+coloradobluebook.gov: could not connect to host
coloradocomputernetworking.net: could not connect to host
colorcentertoner.com.br: did not receive HSTS header
-coloringnotebook.com: did not receive HSTS header
+colorguni.com: could not connect to host
colorlib.com: did not receive HSTS header
-colorunhas.com.br: did not receive HSTS header
-colpatriaws.azurewebsites.net: did not receive HSTS header
+colorunhas.com.br: could not connect to host
+colotimes.com: could not connect to host
coltonrb.com: could not connect to host
com-news.io: could not connect to host
com.cc: could not connect to host
+comandofilmes.club: 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
comeoncolleen.com: did not receive HSTS header
-comercialtrading.eu: could not connect to host
+comercialdragon.com: did not receive HSTS header
cometbot.cf: could not connect to host
cometrueunlimited.com: could not connect to host
+comevius.com: could not connect to host
+comevius.org: could not connect to host
+comevius.xyz: could not connect to host
comfortdom.ua: did not receive HSTS header
comfortticket.de: did not receive HSTS header
-comfy.cafe: could not connect to host
comfy.moe: could not connect to host
comfypc.com: could not connect to host
comico.info: could not connect to host
@@ -4113,27 +5113,31 @@ comidasperuanas.net: did not receive HSTS header
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
-comocurarlashemorroides.org: did not receive HSTS header
+communityflow.info: could not connect to host
+comocurarlashemorroides.org: could not connect to host
comocurarlashemorroidesya.com: did not receive HSTS header
-comodormirmasrapido.com: did not receive HSTS header
comoeliminarlaspapulasperladasenelglande.com: did not receive HSTS header
-comopuededejardefumar.net: did not receive HSTS header
+comohacerelamoraunhombrenet.com: did not receive HSTS header
comorecuperaratumujerpdf.com: could not connect to host
comosatisfaceraunhombreenlacamaydejarloloco.com: did not receive HSTS header
comotalk.com: could not connect to host
compalytics.com: could not connect to host
comparamejor.com: did not receive HSTS header
-compareandrecycle.com: did not receive HSTS header
+compareandrecycle.com: could not connect to host
comparejewelleryprices.co.uk: could not connect to host
comparetravelinsurance.com.au: did not receive HSTS header
+compartir.party: could not connect to host
compassionate-biology.com: could not connect to host
compeuphoria.com: could not connect to host
compiledworks.com: could not connect to host
+compitak.com: could not connect to host
+complete-it.co.uk: did not receive HSTS header
completesportperformance.com: did not receive HSTS header
completionist.audio: could not connect to host
complex-organization.com: could not connect to host
@@ -4141,18 +5145,21 @@ complexorganizations.com: could not connect to host
complexsystems.fail: did not receive HSTS header
complt.xyz: could not connect to host
complymd.com: did not receive HSTS header
+comprarefiereygana.com: could not connect to host
+comprasoffie.com.br: could not connect to host
+compratecno.cl: did not receive HSTS header
compredietlight.com.br: did not receive HSTS header
comprefitasadere.com.br: could not connect to host
comprehensiveihc.com: could not connect to host
-compromised.com: could not connect to host
compros.me: could not connect to host
compsmag.com: did not receive HSTS header
compucastell.ch: did not receive HSTS header
compucorner.com.mx: could not connect to host
compusolve.nl: could not connect to host
computercraft.net: could not connect to host
+computerfreunde-barmbek.de: could not connect to host
computertal.de: could not connect to host
-comssa.org.au: did not receive HSTS header
+comssa.org.au: could not connect to host
comtily.com: could not connect to host
comyuno.com: did not receive HSTS header
concentrade.de: did not receive HSTS header
@@ -4160,10 +5167,11 @@ conceptatelier.de: could not connect to host
conception.sk: could not connect to host
concerts-metal.ch: did not receive HSTS header
conclave.global: could not connect to host
-conclinica.com.br: did not receive HSTS header
concord-group.co.jp: did not receive HSTS header
-conectalmeria.com: did not receive HSTS header
-conectar.ru: did not receive HSTS header
+concursopublico.com.br: could not connect to host
+conectalmeria.com: could not connect to host
+conectar.ru: could not connect to host
+conference.dnsfor.me: could not connect to host
confidential.network: could not connect to host
confirm365.com: could not connect to host
conflux.tw: did not receive HSTS header
@@ -4172,35 +5180,46 @@ conformist.jp: could not connect to host
confucio.cl: could not connect to host
confuddledpenguin.com: did not receive HSTS header
cong5.net: did not receive HSTS header
-congz.me: did not receive HSTS header
+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
+conkret.in: could not connect to host
connaitre-les-astres.com: did not receive HSTS header
-connect.ua: could not connect to host
+connect-me.com: could not connect to host
+connect.social: did not receive HSTS header
+connect.ua: did not receive HSTS header
+connectavid.com: could not connect to host
connected-verhuurservice.nl: did not receive HSTS header
connectfss.com: could not connect to host
-connectingconcepts.com: could not connect to host
+connectingconcepts.com: did not receive HSTS header
conniesacademy.com: could not connect to host
connorsmith.co: did not receive HSTS header
conocimientosdigitales.com: could not connect to host
conrad.am: could not connect to host
+conrail.blue: did not receive HSTS header
consciousandglamorous.com: could not connect to host
consciousbrand.co: did not receive HSTS header
consciousbrand.org.au: could not connect to host
consciousbranding.org.au: could not connect to host
consciousbrands.net.au: could not connect to host
+consciousnesschange.com: could not connect to host
+consec-systems.de: could not connect to host
conseil-gli.fr: did not receive HSTS header
consejosdehogar.com: did not receive HSTS header
+conservados.com.br: could not connect to host
+consideryourways.net: could not connect to host
+consill.com: could not connect to host
console.python.org: did not receive HSTS header
console.support: did not receive HSTS header
-construct-trust.com: did not receive HSTS header
+conspiracyservers.com: max-age too low: 0
+constancechen.me: did not receive HSTS header
+constares.de: did not receive HSTS header
+construct-trust.com: could not connect to host
consultanta-in-afaceri.ro: max-age too low: 0
-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]
+consultcelerity.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
consultingroupitaly.com: did not receive HSTS header
-consultorcr.net: did not receive HSTS header
+consultorcr.net: could not connect to host
consumer.gov: did not receive HSTS header
consumidor.gov: did not receive HSTS header
contactbig.com: did not receive HSTS header
@@ -4213,23 +5232,26 @@ contentdesign.de: did not receive HSTS header
contents.ga: did not receive HSTS header
continuation.io: could not connect to host
continuumgaming.com: could not connect to host
+contourheating.co.uk: did not receive HSTS header
+contractdigital.co.uk: did not receive HSTS header
contraout.com: could not connect to host
-controlarlaansiedad.com: did not receive HSTS header
controlcenter.gigahost.dk: did not receive HSTS header
contxt-agentur.de: did not receive HSTS header
convergemagazine.com: did not receive HSTS header
-convergence.fi: could not connect to host
-conversionsciences.com: did not receive HSTS header
convert.zone: could not connect to host
converter.ml: could not connect to host
-convertimg.com: did not receive HSTS header
+convocatoriafundacionpepsicomexico.org: could not connect to host
convoitises.com: did not receive HSTS header
cooink.net: could not connect to host
+cookcountyclerkil.gov: could not connect to host
+cooker.fr: could not connect to host
+cookiee.net: could not connect to host
+cookielab.io: did not receive HSTS header
cookiestudies.cf: could not connect to host
cookingbazart.com: did not receive HSTS header
+cooko.at: could not connect to host
cooksbookscorks.com: did not receive HSTS header
-cool110.tk: did not receive HSTS header
-cool110.xyz: did not receive HSTS header
+cooksplanet.com: could not connect to host
coolaj86.com: did not receive HSTS header
coolbutbroken.com: did not receive HSTS header
coolchevy.org.ua: did not receive HSTS header
@@ -4238,75 +5260,87 @@ cooljs.me: could not connect to host
coolkidsbouncycastles.co.uk: did not receive HSTS header
coolrc.me: did not receive HSTS header
coolviewthermostat.com: did not receive HSTS header
-coolvox.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-coolwallet.io: did not receive HSTS header
-coonelnel.net: did not receive HSTS header
-coopens.com: could not connect to host
+cooperativehandmade.com: did not receive HSTS header
cooperativehandmade.pe: did not receive HSTS header
coor.fun: could not connect to host
-cooxa.com: could not connect to host
+cooxa.com: did not receive HSTS header
+copinstant.com: did not receive HSTS header
copperhead.co: did not receive HSTS header
+coppermein.co.za: could not connect to host
copshop.com.br: could not connect to host
coptic-treasures.com: max-age too low: 2592000
copycaught.co: could not connect to host
copycaught.xyz: could not connect to host
copytrack.com: did not receive HSTS header
+coquibus.net: did not receive HSTS header
cor-ser.es: could not connect to host
coralproject.net: did not receive HSTS header
coralrosado.com.br: did not receive HSTS header
coramcdaniel.com: could not connect to host
corbinhesse.com: did not receive HSTS header
+cordep.biz: could not connect to host
corderoscleaning.com: did not receive HSTS header
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
-coredump.gr: did not receive HSTS header
+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: did not receive HSTS header
+coriver.me: could not connect to host
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
coroasdefloresonline.com.br: could not connect to host
+corourbano.es: could not connect to host
corozanu.ro: did not receive HSTS header
+corp.goog: could not connect to host (error ignored - included regardless)
corpoatletico.com.br: could not connect to host
+corpoepele.com.br: did not receive HSTS header
+corporacioninternacionallideres.org: did not receive HSTS header
corporateencryption.com: could not connect to host
corporatesubscriptions.com.au: did not receive HSTS header
-corporativoarval.info: did not receive HSTS header
corpsepaint.life: could not connect to host
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
+corruptsamurai.com: could not connect to host
+cortisolsupplement.com: did not receive HSTS header
+corvus.eu.org: could not connect to host
+corytyburski.com: could not connect to host
coslinker.com: could not connect to host
+cosmetic-surgery-prices.co.uk: could not connect to host
cosmeticosdelivery.com.br: could not connect to host
cosmeticosnet.com.br: did not receive HSTS header
cosmiatria.pe: could not connect to host
cosmic-os.org: did not receive HSTS header
-cosmintataru.ro: did not receive HSTS header
-cosmoluziluminacion.com: did not receive HSTS header
+cosmoluziluminacion.com: could not connect to host
cosmoss-departure.com: could not connect to host
cosni.co: could not connect to host
costa-rica-reisen.ch: did not receive HSTS header
+costa-rica-reisen.de: did not receive HSTS header
costcofinance.com: did not receive HSTS header
costellofc.co.uk: could not connect to host
costow.club: did not receive HSTS header
+cote-chasse.com: did not receive HSTS header
cotonea.de: did not receive HSTS header
+cotta.dk: could not connect to host
cougarsland.com: did not receive HSTS header
-coughlan.de: did not receive HSTS header
+coughlan.de: could not connect to host
counselling.network: could not connect to host
counsellingtime.co.uk: could not connect to host
count.sh: could not connect to host
+counterhack.nl: did not receive HSTS header
+countryattire.com: did not receive HSTS header
coup-dun-soir.ch: could not connect to host
+coupe-bordure.com: did not receive HSTS header
couponcodeq.com: could not connect to host
couragewhispers.ca: could not connect to host
coursdeprogrammation.com: could not connect to host
@@ -4314,13 +5348,16 @@ 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: 7776000
+coussinsky.net: could not connect to host
covaci.pro: did not receive HSTS header
cove.sh: could not connect to host
-covenantbank.net: could not connect to host
-covenantmatrix.com: did not receive HSTS header
+covenantbank.net: did not receive HSTS header
+covenantmatrix.com: could not connect to host
+covenantoftheriver.org: did not receive HSTS header
coverdat.com: could not connect to host
coverduck.ru: could not connect to host
+cowboyim.com: could not connect to host
cowo.group: did not receive HSTS header
coworkingmanifesto.com: could not connect to host
coxxs.moe: could not connect to host
@@ -4328,14 +5365,17 @@ cozitop.com.br: could not connect to host
cozmaadrian.ro: could not connect to host
cozy.io: did not receive HSTS header
cozycloud.cc: did not receive HSTS header
+cpahunt.com: did not receive HSTS header
cpaneltips.com: could not connect to host
+cpbanq.com: could not connect to host
+cpbapremiocaduceo.com.ar: could not connect to host
+cpcp380.com: max-age too low: 0
cplala.com: could not connect to host
-cptoon.com: could not connect to host
cpuvinf.eu.org: could not connect to host
cqchome.com: did not receive HSTS header
crackers4cheese.com: could not connect to host
cracking.org: did not receive HSTS header
-crackingking.com: could not connect to host
+crackingking.com: did not receive HSTS header
crackpfer.de: could not connect to host
craftbeerbarn.co.uk: could not connect to host
craftcommerce.com: did not receive HSTS header
@@ -4346,16 +5386,16 @@ 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
-craigary.net: could not connect to host
cranems.com.ua: could not connect to host
-cranesafe.com: max-age too low: 7889238
cranioschule.com: did not receive HSTS header
-crashsec.com: did not receive HSTS header
+crashsec.com: could not connect to host
crate.io: did not receive HSTS header
cravelyrics.com: could not connect to host
crawcial.de: could not connect to host
+crawlspaceandbasementsolutions.com: could not connect to host
crazifyngers.com: could not connect to host
crazy-crawler.de: did not receive HSTS header
+crazybulksteroids.com: did not receive HSTS header
crazycen.com: could not connect to host
crazycraftland.de: could not connect to host
crazyfamily11.de: could not connect to host
@@ -4363,81 +5403,97 @@ crazyhotseeds.com: did not receive HSTS header
crazyker.com: could not connect to host
crbug.com: did not receive HSTS header (error ignored - included regardless)
crc-online.nl: did not receive HSTS header
+creadstudy.com: could not connect to host
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
create-together.nl: did not receive HSTS header
-createcos.com: could not connect to host
+creaticworld.net: could not connect to host
creations-edita.com: could not connect to host
creativeapple.ltd: did not receive HSTS header
creativeartifice.com: did not receive HSTS header
creativecommons.cl: did not receive HSTS header
creativecommonscatpictures.com: could not connect to host
-creativeground.com.au: did not receive HSTS header
+creativefreedom.ca: did not receive HSTS header
creativephysics.ml: could not connect to host
creativeplayuk.com: did not receive HSTS header
+creativerezults.com: did not receive HSTS header
creativlabor.ch: did not receive HSTS header
creato.top: could not connect to host
creators.co: could not connect to host
+crecips.com: could not connect to host
crecket.me: could not connect to host
credia.jp: did not receive HSTS header
+creditcard52.com: max-age too low: 0
creditclear.com.au: did not receive HSTS header
+crediteo.pl: did not receive HSTS header
creditreporttips.net: could not connect to host
+creditta.com: could not connect to host
+credittoken.io: could not connect to host
creepycraft.nl: could not connect to host
-crena.ch: could not connect to host
crendontech.com: did not receive HSTS header
creorin.com: did not receive HSTS header
+crepererum.net: did not receive HSTS header
crescent.gr.jp: did not receive HSTS header
crestoncottage.com: could not connect to host
+crew505.org: could not connect to host
crewplanner.eu: did not receive HSTS header
crge.eu: did not receive HSTS header
criadorespet.com.br: could not connect to host
crickey.eu: could not connect to host
crimewatch.net.za: could not connect to host
crimson.no: did not receive HSTS header
-crip-usk.ba: could not connect to host
crisissurvivalspecialists.com: could not connect to host
-cristiandeluxe.com: did not receive HSTS header
cristianhares.com: could not connect to host
critcola.com: could not connect to host
-criticalaim.com: could not connect to host
+criticalaim.com: did not receive HSTS header
crl-autos.com: could not connect to host
crmdemo.website: could not connect to host
-croceverdevb.it: did not receive HSTS header
crockett.io: did not receive HSTS header
croco.vision: did not receive HSTS header
croeder.net: could not connect to host
-croisieres.discount: did not receive HSTS header
-cromosomax.com: could not connect to host
-cronberg.ch: could not connect to host
-croods-mt2.fr: did not receive HSTS header
+croisieres.discount: could not connect to host
+cromefire.myds.me: could not connect to host
+croncron.io: could not connect to host
+croods-mt2.fr: could not connect to host
croome.no-ip.org: could not connect to host
crop-alert.com: could not connect to host
-croquette.net: did not receive HSTS header
+croquette.net: could not connect to host
crosbug.com: did not receive HSTS header (error ignored - included regardless)
+crosscom.ch: could not connect to host
+crossfunctional.com: could not connect to host
+crossorig.in: did not receive HSTS header
crosspeakoms.com: did not receive HSTS header
crosssec.com: did not receive HSTS header
+crosssellguide.com: could not connect to host
+crow.tw: could not connect to host
crowdcurity.com: did not receive HSTS header
crowdjuris.com: could not connect to host
crowdwis.com: could not connect to host
crownbouncycastlehire.co.uk: did not receive HSTS header
+crownchessclub.com: could not connect to host
crownruler.com: did not receive HSTS header
crox.co: could not connect to host
crrev.com: did not receive HSTS header (error ignored - included regardless)
-crt.sh: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-crtvmgmt.com: could not connect to host
+crt.cloud: could not connect to host
+crt.sh: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+crtvmgmt.com: did not receive HSTS header
crudysql.com: could not connect to host
crufad.org: did not receive HSTS header
cruikshank.com.au: could not connect to host
-crushroom.com: max-age too low: 43200
cruzadobalcazarabogados.com: could not connect to host
cruzeiropedia.org: did not receive HSTS header
cruzr.xyz: could not connect to host
-crypalert.com: did not receive HSTS header
+cryogenix.net: could not connect to host
+cryoit.com: did not receive HSTS header
+cryp.no: could not connect to host
+crypalert.com: could not connect to host
+crypkit.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
crypt.guru: did not receive HSTS header
crypticshell.co.uk: did not receive HSTS header
cryptify.eu: could not connect to host
+crypto-armory.com: did not receive HSTS header
crypto-navi.org: did not receive HSTS header
crypto.tube: max-age too low: 2592000
cryptobells.com: did not receive HSTS header
@@ -4448,31 +5504,35 @@ cryptodyno.ninja: could not connect to host
cryptojar.io: could not connect to host
cryptolab.pro: could not connect to host
cryptolab.tk: could not connect to host
+cryptolinc.com: did not receive HSTS header
cryptolosophy.io: did not receive HSTS header
+cryptolosophy.org: 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
+cryptoya.io: could not connect to host
crysadm.com: could not connect to host
crystalclassics.co.uk: did not receive HSTS header
crystallizedcouture.com: did not receive HSTS header
crystalmate.eu: did not receive HSTS header
cs-colorscreed-betongulve.dk: could not connect to host
cs-ubladego.pl: could not connect to host
-csapak.com: did not receive HSTS header
+csapak.com: could not connect to host
csawctf.poly.edu: could not connect to host
csbgtribalta.com: did not receive HSTS header
-cscau.com: did not receive HSTS header
+csbs.fr: could not connect to host
+csbuilder.io: did not receive HSTS header
+csd-sevnica.si: could not connect to host
csehnyelv.hu: could not connect to host
-cselzer.com: did not receive HSTS header
cser.me: could not connect to host
csfloors.co.uk: could not connect to host
csfs.org.uk: could not connect to host
-csgf.ru: did not receive HSTS header
+csgo.design: could not connect to host
csgo.help: could not connect to host
csgo77.com: could not connect to host
-csgodicegame.com: could not connect to host
+csgodicegame.com: did not receive HSTS header
csgoelemental.com: could not connect to host
csgogamers.com: could not connect to host
csgohandouts.com: did not receive HSTS header
@@ -4486,18 +5546,23 @@ cskdoc.com: did not receive HSTS header
csohack.tk: could not connect to host
cspbuilder.info: did not receive HSTS header
csru.net: could not connect to host
+css125.com: max-age too low: 0
cssps.org: could not connect to host
cssu.in: did not receive HSTS header
+csuw.net: could not connect to host
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
cthomas.work: could not connect to host
cthulhuden.com: could not connect to host
ctknight.me: could not connect to host
+ctoforhire.com.au: could not connect to host
+ctr.id: did not receive HSTS header
ctyi.me: could not connect to host
cuanhua3s.com: could not connect to host
-cubecart.net: could not connect to host
+cube.de: did not receive HSTS header
+cube.la: did not receive HSTS header
+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
@@ -4510,9 +5575,12 @@ cuisinezest.com: did not receive HSTS header
cujanovic.com: did not receive HSTS header
cujba.com: could not connect to host
culinae.nl: could not connect to host
+cultivo.bio: could not connect to host
+culture-school.top: did not receive HSTS header
cultureelbeleggen.nl: did not receive HSTS header
+culturerain.com: could not connect to host
cultureroll.com: could not connect to host
-cumshots-video.ru: did not receive HSTS header
+cumparama.com: did not receive HSTS header
cunha.be: could not connect to host
cuni-cuni-club.com: did not receive HSTS header
cuni-rec.com: did not receive HSTS header
@@ -4523,47 +5591,55 @@ cupcake.io: did not receive HSTS header
cupcake.is: did not receive HSTS header
cupcakesandcrinoline.com: did not receive HSTS header
cupi.co: could not connect to host
-cupidosshop.com: could not connect to host
cupofarchitects.net: could not connect to host
+cuppycakes.fi: did not receive HSTS header
curacao-license.com: could not connect to host
+curareldolordeespalda.com: could not connect to host
curarnosensalud.com: could not connect to host
curia.fi: could not connect to host
curiouscat.me: max-age too low: 2592000
+curiouspeddler.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
curlyroots.com: did not receive HSTS header
current.com: did not receive HSTS header
currentobserver.com: could not connect to host
curroapp.com: could not connect to host
-cursosdnc.cl: did not receive HSTS header
+cursosdnc.cl: could not connect to host
cursosgratuitos.com.br: did not receive HSTS header
+curtislaw-pllc.com: did not receive HSTS header
+curtislinville.net: could not connect to host
curvesandwords.com: did not receive HSTS header
curveweb.co.uk: did not receive HSTS header
cusfit.com: did not receive HSTS header
custe.rs: could not connect to host
custerweb.com: did not receive HSTS header
customadesign.com: did not receive HSTS header
+custombikes.cl: could not connect to host
customd.com: did not receive HSTS header
+customerbox.ir: did not receive HSTS header
customfilmworks.com: could not connect to host
customizeyourshower.com: could not connect to host
-custompapers.com: could not connect to host
customromlist.com: could not connect to host
customshort.link: could not connect to host
-customwritings.com: could not connect to host
cutelariafiveladeouro.com.br: did not receive HSTS header
cutephil.com: could not connect to host
cutimbo.com: could not connect to host
-cutorrent.com: could not connect to host
+cutimbo.ovh: could not connect to host
+cutorrent.com: did not receive HSTS header
cuvva.insure: did not receive HSTS header
cuxpool.club: could not connect to host
cvjm-memmingen.de: did not receive HSTS header
cvninja.pl: did not receive HSTS header
-cvps.top: did not receive HSTS header
-cvsoftub.com: did not receive HSTS header
+cvsoftub.com: could not connect to host
cvtparking.co.uk: did not receive HSTS header
cvursache.com: could not connect to host
cw-bw.de: could not connect to host
cwage.com: did not receive HSTS header
cwbw.network: could not connect to host
cwilson.ga: could not connect to host
+cwr.gov: did not receive HSTS header
+cxfinancia.com: did not receive HSTS header
+cxq77128.com: max-age too low: 0
+cy.ax: could not connect to host
cy.technology: did not receive HSTS header
cyanogenmod.xxx: could not connect to host
cybbh.space: could not connect to host
@@ -4571,29 +5647,36 @@ cyber-computer.club: could not connect to host
cyber-konzept.de: did not receive HSTS header
cyber-perikarp.eu: could not connect to host
cyber.cafe: could not connect to host
+cyberbot.info: could not connect to host
cybercecurity.com: did not receive HSTS header
cybercloud.cc: did not receive HSTS header
cyberdos.de: could not connect to host
cyberdyne-industries.net: could not connect to host
+cyberdyne.llc: could not connect to host
cyberfrancais.ro: did not receive HSTS header
+cybergates.org: did not receive HSTS header
cyberlab.kiev.ua: could not connect to host
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
+cyberprey.com: could not connect to host
cyberpunk.ca: could not connect to host
cybersantri.com: could not connect to host
cyberserver.org: could not connect to host
cybershambles.com: could not connect to host
cybersmart.co.uk: did not receive HSTS header
+cyberspace.community: could not connect to host
cyberspace.today: could not connect to host
cybertorsk.org: could not connect to host
+cybit.io: could not connect to host
+cybozulive-dev.com: did not receive HSTS header
+cybozulive.com: did not receive HSTS header
cybrary.it: did not receive HSTS header
cyclehackluxembourgcity.lu: could not connect to host
cyclingjunkies.com: could not connect to host
+cyclisjumper.gallery: could not connect to host
cydia-search.io: could not connect to host
cyelint.com: could not connect to host
-cygu.ch: did not receive HSTS header
+cygu.ch: could not connect to host
cymtech.net: could not connect to host
cynoshair.com: could not connect to host
cyoda.com: did not receive HSTS header
@@ -4606,14 +5689,13 @@ cyson.tech: could not connect to host
cytadel.fr: did not receive HSTS header
czaw.org: did not receive HSTS header
czechamlp.com: could not connect to host
-czirnich.org: did not receive HSTS header
czlx.co: could not connect to host
d-academia.com: did not receive HSTS header
d-garnier-delaunay.fr: did not receive HSTS header
+d-imitacion.top: did not receive HSTS header
d-msg.com: could not connect to host
d-quantum.com: did not receive HSTS header
d-rickroll-e.pw: could not connect to host
-d.rip: max-age too low: 900
d00r.de: did not receive HSTS header
d0xq.net: could not connect to host
d1ves.io: did not receive HSTS header
@@ -4622,60 +5704,71 @@ 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
-d88871.com: could not connect to host
+d6957.com: could not connect to host
d8studio.net: could not connect to host
da-ist-kunst.de: could not connect to host
da.hn: could not connect to host
-da8.cc: could not connect to host
+da42foripad.com: could not connect to host
+da8.cc: did not receive HSTS header
dabblegoat.com: could not connect to host
dabbot.org: did not receive HSTS header
+dabneydriveanimalhospital.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
dad256.tk: could not connect to host
+dadahen.com: max-age too low: 0
dadtheimpaler.com: could not connect to host
daemon.xin: could not connect to host
daemonslayer.net: did not receive HSTS header
dafnik.me: did not receive HSTS header
+dagmar2018.cz: 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
+dai.top: could not connect to host
+dai94.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
+dair.se: did not receive HSTS header
daiwai.de: did not receive HSTS header
+daiweihu.com: could not connect to host
dakerealestate.com: did not receive HSTS header
dakl-shop.de: did not receive HSTS header
dakotasilencer.com: did not receive HSTS header
dakrib.net: could not connect to host
daku.gdn: could not connect to host
+dalb.in: could not connect to host
dalepresencia.com: did not receive HSTS header
dalfiume.it: did not receive HSTS header
dalingk.co: could not connect to host
dallas.gov: could not connect to host
+dallinbryce.com: could not connect to host
daltonedwards.me: could not connect to host
dam74.com.ar: could not connect to host
-damianuv-blog.cz: could not connect to host
damienpontifex.com: did not receive HSTS header
damjanovic.work: could not connect to host
damongant.de: did not receive HSTS header
dan.org.nz: could not connect to host
-danbarrett.com.au: did not receive HSTS header
+danaketh.com: 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
-dango.in: could not connect to host
-daniel-du.com: could not connect to host
+daniel-du.com: did not receive HSTS header
daniel-mosquera.com: could not connect to host
-daniel-seifert.com: max-age too low: 600000
daniel-stahl.net: could not connect to host
daniel-steuer.de: could not connect to host
+daniel.domains: could not connect to host
+danielalvarez.net: did not receive HSTS header
danielcowie.me: could not connect to host
danieldk.eu: did not receive HSTS header
danielgraziano.ca: could not connect to host
+danielheal.net: could not connect to host
danieliancu.com: could not connect to host
danieljireh.com: did not receive HSTS header
-danielkratz.com: max-age too low: 172800
+daniellockyer.com: did not receive HSTS header
danielt.co.uk: did not receive HSTS header
+danielvanassen.nl: 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
@@ -4685,34 +5778,49 @@ danishenanigans.com: could not connect to host
dankeblog.com: could not connect to host
dankredues.com: could not connect to host
danmark.guide: did not receive HSTS header
+danna888.com: max-age too low: 0
dannycrichton.com: did not receive HSTS header
+danonsecurity.com: could not connect to host
danova.de: did not receive HSTS header
danoz.net: could not connect to host
danrl.de: could not connect to host
+dansa.com.co: could not connect to host
+dansk-skole.de: did not receive HSTS header
danskringsporta.be: did not receive HSTS header
danwillenberg.com: did not receive HSTS header
dao.spb.su: could not connect to host
daolerp.xyz: could not connect to host
+dapianw.com: did not receive HSTS header
daplie.com: could not connect to host
+dapps.earth: could not connect to host
+dappworld.com: could not connect to host
+darbtech.net: did not receive HSTS header
+daren.com.br: could not connect to host
dargasia.is: could not connect to host
darinjohnson.ca: did not receive HSTS header
dario.im: did not receive HSTS header
+dariosirangelo.me: could not connect to host
dark-x.cf: could not connect to host
darkanzali.pl: max-age too low: 0
darkdestiny.ch: could not connect to host
+darkestproductions.net: did not receive HSTS header
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]
-darkkeepers.dk: max-age too low: 172800
+darkishgreen.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
darknebula.space: could not connect to host
darknode.in: did not receive HSTS header
darkpony.ru: could not connect to host
darkroomsaredead.com: could not connect to host
+darkside.re: 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
+darkwebnews.com: could not connect to host
darlastudio66.com: did not receive HSTS header
+darlo.co.uk: could not connect to host
+darookee.net: did not receive HSTS header
+daropia.org: did not receive HSTS header
darrenellis.xyz: could not connect to host
darrenm.net: could not connect to host
dart-tanke.com: could not connect to host
@@ -4722,21 +5830,25 @@ daryl.moe: could not connect to host
das-tyrol.at: did not receive HSTS header
dash-board.jp: did not receive HSTS header
dash.rocks: did not receive HSTS header
+dashboard.run: could not connect to host
dashboard.yt: could not connect to host
dashburst.com: did not receive HSTS header
-dashcloud.co: could not connect to host
-dashlane.com: did not receive HSTS header
dashnimorad.com: did not receive HSTS header
+dashwebconsulting.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
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
+datacandy.com: did not receive HSTS header
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.host: could not connect to host
+datacool.tk: could not connect to host
datacubed.com: did not receive HSTS header
+datadyne.technology: could not connect to host
+dataformers.at: max-age too low: 60
+datagir.ir: did not receive HSTS header
datahoarder.download: could not connect to host
datahoarder.xyz: could not connect to host
datahoarderschool.club: could not connect to host
@@ -4744,8 +5856,8 @@ dataisme.com: did not receive HSTS header
datajapan.co.jp: did not receive HSTS header
datamatic.ru: could not connect to host
dataretention.solutions: could not connect to host
-datascomemorativas.com.br: could not connect to host
-datasharesystem.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+datascomemorativas.com.br: did not receive HSTS header
+datasharesystem.com: could not connect to host
datasnitch.co.uk: could not connect to host
datedeposit.com: could not connect to host
datengrab.ws: could not connect to host
@@ -4754,53 +5866,70 @@ datenreiter.cf: could not connect to host
datenreiter.gq: could not connect to host
datenreiter.ml: could not connect to host
datenreiter.tk: could not connect to host
-datenschutzhelden.org: max-age too low: 172800
datine.com.br: could not connect to host
datorb.com: could not connect to host
datortipsen.se: could not connect to host
+datovyaudit.cz: could not connect to host
datsound.ru: did not receive HSTS header
datsumou-q.com: did not receive HSTS header
+daveedave.de: could not connect to host
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
+davidcrx.net: 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]
+davidgrudl.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
davidhunter.scot: did not receive HSTS header
davidletellier.com: did not receive HSTS header
davidlillo.com: could not connect to host
+davidmessenger.co.uk: did not receive HSTS header
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
-dawgs.ga: could not connect to host
-dawnofeden.org: did not receive HSTS header
+dawena.de: did not receive HSTS header
+dawgtag.ca: could not connect to host
+dawnofeden.org: could not connect to host
+dawnofhope.tk: could not connect to host
dawnson.is: could not connect to host
dawnsonb.com: did not receive HSTS header
day-peak.com: did not receive HSTS header
day.vip: could not connect to host
+daylight-dream.ee: did not receive HSTS header
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-works.nl: did not receive HSTS header
db.gy: could not connect to host
+dbcom.ru: did not receive HSTS header
+dbdc.us: did not receive HSTS header
dbjc.duckdns.org: could not connect to host
+dbjc.tk: could not connect to host
+dbjl.fr: did not receive HSTS header
dblx.io: could not connect to host
+dbmxpca.com: did not receive HSTS header
dbox.ga: could not connect to host
dbpmedia.se: did not receive HSTS header
+dbudj.com: max-age too low: 0
dbx.ovh: could not connect to host
-dbyz.co.uk: max-age too low: 43200
+dbyz.co.uk: did not receive HSTS header
dcaracing.nl: could not connect to host
-dcc.cat: did not receive HSTS header
+dcautomacao.com.br: did not receive HSTS header
+dcc.moe: did not receive HSTS header
dccode.gov: could not connect to host
dccoffeeproducts.com: did not receive HSTS header
+dccommunity.de: did not receive HSTS header
dccraft.net: could not connect to host
+dcl.re: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
dctxf.com: did not receive HSTS header
dcuofriends.net: could not connect to host
dd.art.pl: could not connect to host
+dd6957.com: could not connect to host
dden.website: could not connect to host
dden.xyz: could not connect to host
ddholdingservices.com: did not receive HSTS header
@@ -4809,11 +5938,17 @@ ddns-anbieter.de: could not connect to host
ddocu.me: could not connect to host
ddos-mitigation.co.uk: could not connect to host
ddos-mitigation.info: could not connect to host
-ddoser.cn: could not connect to host
de-osopanda.com: could not connect to host
de-servers.de: could not connect to host
+deadbyhost.com: could not connect to host
+deadinsi.de: max-age too low: 0
deadmann.com: could not connect to host
+deadsoul.net: could not connect to host
deai-life.biz: could not connect to host
+deals.ms: did not receive HSTS header
+deanisa.ninja: did not receive HSTS header
+dearly.com: did not receive HSTS header
+deathberry.ddns.net: could not connect to host
debank.tv: did not receive HSTS header
debatch.se: could not connect to host
debian-vhost.de: could not connect to host
@@ -4824,27 +5959,31 @@ debkleinteam.com: did not receive HSTS header
deborahmarinelli.eu: could not connect to host
debtkit.co.uk: did not receive HSTS header
debtprotectionreporting.com: did not receive HSTS header
+decaffeinated.io: could not connect to host
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: could not connect to host
deco.me: could not connect to host
+decoating.pl: could not connect to host
decoboutique.com: did not receive HSTS header
decoder.link: 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
+decorativeconcretewa.com.au: did not receive HSTS header
+decorauvent.ca: 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: did not receive HSTS header
decstasy.de: did not receive HSTS header
-dede.ml: could not connect to host
dedeo.tk: could not connect to host
dedicatutiempo.es: could not connect to host
dedietrich-asia.com: could not connect to host
+dedimax.de: did not receive HSTS header
deeonix.eu: could not connect to host
deep.social: did not receive HSTS header
deepaero.com: could not connect to host
@@ -4859,39 +5998,46 @@ deeprecce.tech: could not connect to host
deeps.cat: could not connect to host
deepvalley.tech: could not connect to host
deepvision.com.ua: did not receive HSTS header
+deepwealth.institute: did not receive HSTS header
+deepz.pt: max-age too low: 7889238
deer.team: could not connect to host
deetz.nl: did not receive HSTS header
deetzen.de: did not receive HSTS header
deezeno.com: could not connect to host
-defi-metier.com: did not receive HSTS header
-defi-metier.fr: did not receive HSTS header
+defi-metier.com: could not connect to host
+defi-metier.fr: could not connect to host
defi-metier.org: could not connect to host
-defi-metiers.com: did not receive HSTS header
+defi-metiers.com: could not connect to host
defi-metiers.fr: did not receive HSTS header
-defi-metiers.org: did not receive HSTS header
+defi-metiers.org: could not connect to host
defiler.tk: could not connect to host
defimetier.fr: could not connect to host
-defimetier.org: did not receive HSTS header
-defimetiers.com: did not receive HSTS header
-defimetiers.fr: did not receive HSTS header
+defimetier.org: could not connect to host
+defimetiers.com: could not connect to host
+defimetiers.fr: could not connect to host
+defme.eu: could not connect to host
+defrax.com: could not connect to host
defrax.de: did not receive HSTS header
-degestamptepot.nl: did not receive HSTS header
degosoft.nl: did not receive HSTS header
+degressif.com: could not connect to host
degroetenvanrosaline.nl: could not connect to host
dehydrated.de: did not receive HSTS header
deight.co: could not connect to host
deight.in: could not connect to host
+deinserverhost.de: did not receive HSTS header
dekasan.ru: could not connect to host
+dekka.cz: did not receive HSTS header
+delandalucia.com: did not receive HSTS header
+delawarenation-nsn.gov: could not connect to host
delayrefunds.co.uk: could not connect to host
+delbrouck.ch: did not receive HSTS header
delcopa.gov: did not receive HSTS header
delf.co.jp: did not receive HSTS header
-deliberatedigital.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
delitto.top: could not connect to host
-deliver.moe: did not receive HSTS header
deliverance.co.uk: could not connect to host
delivery.co.at: could not connect to host
-deloittequant.com: could not connect to host
-deltaconcepts.de: could not connect to host
+deliveryiquique.cl: could not connect to host
+deltaconcepts.de: did not receive HSTS header
deltasmart.ch: did not receive HSTS header
delvj.org: could not connect to host
demandware.com: did not receive HSTS header
@@ -4900,7 +6046,8 @@ demdis.org: could not connect to host
demilitarized.ninja: could not connect to host
demo-server.us: could not connect to host
demo.sb: could not connect to host
-demo.swedbank.se: did not receive HSTS header
+demo9.ovh: did not receive HSTS header
+demoakasafe2.tk: could not connect to host
democracy.io: did not receive HSTS header
democraticdifference.com: could not connect to host
demotops.com: could not connect to host
@@ -4908,114 +6055,128 @@ demuzere.com: could not connect to host
demuzere.eu: could not connect to host
demuzere.net: could not connect to host
demuzere.org: could not connect to host
-dengchangdong.com: did not receive HSTS header
denh.am: did not receive HSTS header
denimio.com: did not receive HSTS header
denisjean.fr: could not connect to host
dennispotter.eu: did not receive HSTS header
+dennisvandenbos.nl: did not receive HSTS header
densmirnov.com: max-age too low: 7776000
dental-misaki.com: did not receive HSTS header
dentaldomain.org: did not receive HSTS header
dentaldomain.ph: did not receive HSTS header
+dentfix.ro: max-age too low: 0
denvercybersecurity.com: did not receive HSTS header
denverphilharmonic.org: did not receive HSTS header
denverprophit.us: did not receive HSTS header
deped.blog: could not connect to host
+depedclub.ph: could not connect to host
depedshs.com: could not connect to host
+deperewi.gov: could not connect to host
depijl-mz.nl: did not receive HSTS header
depixion.agency: could not connect to host
+deployitwith.me: did not receive HSTS header
depo.space: could not connect to host
+depot-leipzig.de: did not receive HSTS header
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
-derevtsov.com: did not receive HSTS header
+derechosdigitales.org: did not receive HSTS header
+dereddingsklos.nl: did not receive HSTS header
derivativeshub.pro: could not connect to host
derive.cc: could not connect to host
+derk-jan.com: did not receive HSTS header
+derkuki.de: could not connect to host
dermacarecomplex.com: could not connect to host
derpumpkinfuhrer.com: could not connect to host
derrickemery.com: did not receive HSTS header
-dersix.com: could not connect to host
+dersix.com: did not receive HSTS header
+derstulle.de: could not connect to host
derwaldschrat.net: did not receive HSTS header
derwolfe.net: did not receive HSTS header
desiccantpackets.com: did not receive HSTS header
design-fu.com: did not receive HSTS header
+design-production.jp: did not receive HSTS header
designandmore.it: did not receive HSTS header
designanyware.com.br: could not connect to host
designdevs.eu: did not receive HSTS header
designgears.com: could not connect to host
designgraphic.fr: did not receive HSTS header
-designsbykerrialee.co.uk: could not connect to host
+designsbykerrialee.co.uk: did not receive HSTS header
designthinking.or.jp: did not receive HSTS header
-desormiers.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+deskvip.com: could not connect to host
+desmo.gg: could not connect to host
despachomartinyasociados.com: could not connect to host
-despora.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+despora.de: could not connect to host
despotika.de: could not connect to host
desserteagleselvenar.tk: could not connect to host
+desterman.ru: could not connect to host
destileria.net.br: could not connect to host
destinationbijoux.fr: could not connect to host
+destinationsofnewyorkstate.com: did not receive HSTS header
destinopiriapolis.com: did not receive HSTS header
-destom.be: could not connect to host
+destom.be: did not receive HSTS header
+destyntek.com: could not connect to host
desuperheroes.co: did not receive HSTS header
desveja.com.br: could not connect to host
+detalhecomercio.com.br: did not receive HSTS header
detechnologiecooperatie.nl: did not receive HSTS header
-detecte-fuite.ch: could not connect to host
-detecte.ch: could not connect to host
-detectefuite.ch: could not connect to host
detector.exposed: could not connect to host
detest.org: could not connect to host
-dethikiemtra.com: did not receive HSTS header
+detoxsinutritie.ro: did not receive HSTS header
detroitrocs.org: did not receive HSTS header
-detteflies.com: max-age too low: 7889238
+detroitstylepizza.com: max-age too low: 300
+detski.center: could not connect to host
detuprovincia.cl: did not receive HSTS header
detutorial.com: max-age too low: 36000
deusu.de: did not receive HSTS header
-deusu.org: did not receive HSTS header
+deusu.org: could not connect to host
deux.solutions: could not connect to host
deuxsol.co: could not connect to host
deuxsol.com: could not connect to host
deuxsolutions.com: could not connect to host
deuxvia.com: could not connect to host
dev: could not connect to host
-dev-aegon.azurewebsites.net: did not receive HSTS header
+dev-aegon.azurewebsites.net: could not connect to host
dev-bluep.pantheonsite.io: did not receive HSTS header
+dev-dot-naga-226708.appspot.com: did not receive HSTS header
dev-talk.eu: could not connect to host
dev-talk.net: could not connect to host
devafterdark.com: could not connect to host
devdesco.com: could not connect to host
-devdom.io: max-age too low: 172800
devdoodle.net: could not connect to host
develop.fitness: could not connect to host
-developersclub.website: could not connect to host
+developerfair.com: did not receive HSTS header
+developersclub.website: did not receive HSTS header
devenney.io: did not receive HSTS header
-devh.de: could not connect to host
deviltracks.net: could not connect to host
-deviltraxxx.de: could not connect to host
devin-balimuhac.de: did not receive HSTS header
devincrow.me: could not connect to host
-devinpacker.com: could not connect to host
+devinpacker.com: did not receive HSTS header
deviser.wang: could not connect to host
devisonline.ch: could not connect to host
devistravaux.org: did not receive HSTS header
-devjack.de: did not receive HSTS header
+devjack.de: could not connect to host
+devkid.net: 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
devolution.ws: could not connect to host
+devonvintagechina.co.uk: did not receive HSTS header
devopps.me: could not connect to host
devops.moe: could not connect to host
devopsconnected.com: could not connect to host
-devpgsv.com: did not receive HSTS header
-devries.one: could not connect to host
-devstaff.gr: could not connect to host
+devpgsv.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
-devyn.ca: could not connect to host
+devyn.ca: did not receive HSTS header
dewebwerf.nl: did not receive HSTS header
dewin.io: could not connect to host
-dexonsoftware.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+dexonsoftware.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
dezintranet.com: max-age too low: 1
+dfc.gov: 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
@@ -5023,67 +6184,75 @@ 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
-dhbr.org: could not connect to host
+dhbr.org: did not receive HSTS header
dhl-smart.ch: could not connect to host
dhlcotizadorexpo-qa.azurewebsites.net: could not connect to host
dhpcs.com: did not receive HSTS header
dhpiggott.net: did not receive HSTS header
dhub.xyz: could not connect to host
dhxxls.com: could not connect to host
+diabetesblog.org: did not receive HSTS header
diablotine.rocks: could not connect to host
diabolic.chat: could not connect to host
+diadiemdangsong.com: did not receive HSTS header
diadorafitness.es: could not connect to host
+diag.com.ua: max-age too low: 300
diagnocentro.cl: could not connect to host
diagnosia.com: did not receive HSTS header
+diagnostix.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
diagonale-deco.fr: did not receive HSTS header
diagrammingoutloud.co.uk: did not receive HSTS header
dialectic-og.com: could not connect to host
diamondcare.com.br: did not receive HSTS header
diamondpkg.org: could not connect to host
diamondt.us: did not receive HSTS header
-dianlujitao.com: did not receive HSTS header
+dianlujitao.com: could not connect to host
diannaobos.com: did not receive HSTS header
-diasp.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]
-diavo.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]
-dicando.com: did not receive HSTS header
+diasp.cz: did not receive HSTS header
+dicando.com: could not connect to host
diceduels.com: could not connect to host
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
dick.red: could not connect to host
-didierlaumen.be: could not connect to host
+dickieslife.com: did not receive HSTS header
+diconnex.com: did not receive HSTS header
+didikhari.web.id: could not connect to host
die-besten-weisheiten.de: could not connect to host
+die-bobbeloase.com: could not connect to host
dieb.photo: could not connect to host
-diebestengutscheine.de: did not receive HSTS header
+diedrich.me: could not connect to host
+diegobarrosmaia.com.br: could not connect to host
diejanssens.net: did not receive HSTS header
-diemogebhardt.com: could not connect to host
+diemogebhardt.com: did not receive HSTS header
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
+dietbrand.eu: could not connect to host
diewebstube.de: could not connect to host
diezel.com: could not connect to host
diferenca.com: did not receive HSTS header
diff2html.xyz: did not receive HSTS header
diggable.co: max-age too low: 2592000
+digicert.nl: did not receive HSTS header
digihyp.ch: did not receive HSTS header
digikol.net: could not connect to host
-digimomedia.co.uk: did not receive HSTS header
+digimomedia.co.uk: could not connect to host
diginota.com: did not receive HSTS header
digipitch.com: did not receive HSTS header
-digired.ro: could not connect to host
digired.xyz: could not connect to host
digital1world.com: could not connect to host
+digital2web.com: could not connect to host
digitalbank.kz: could not connect to host
digitalcash.cf: could not connect to host
digitalcloud.ovh: could not connect to host
digitalcuko.com: did not receive HSTS header
digitaldaddy.net: could not connect to host
+digitaldashboard.gov: could not connect to host
digitalero.rip: did not receive HSTS header
digitalewelten.de: could not connect to host
digitalexhale.com: did not receive HSTS header
-digitalhurricane.io: 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
@@ -5091,19 +6260,21 @@ digitalmaniac.co.uk: could not connect to host
digitalnonplus.com: could not connect to host
digitalquery.com: did not receive HSTS header
digitalriver.tk: did not receive HSTS header
+digitalroar.com: could not connect to host
digitalrxcloud.com: could not connect to host
digitalwasteland.net: did not receive HSTS header
digiworks.se: did not receive HSTS header
diguass.us: could not connect to host
dijks.com: could not connect to host
dikshant.net: could not connect to host
-diletec.com.br: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-dilichen.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+dilichen.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
dillynbarber.com: did not receive HSTS header
+diluv.com: did not receive HSTS header
dim.lighting: could not connect to host
dimensionen.de: did not receive HSTS header
dimes.com.tr: did not receive HSTS header
-dimitrisotiropoulosbooks.com: max-age too low: 7889238
+dimeshop.nl: did not receive HSTS header
+dimseklubben.dk: could not connect to host
din-tools.com: did not receive HSTS header
dinamoelektrik.com: could not connect to host
dingcc.com: could not connect to host
@@ -5114,13 +6285,12 @@ dinge.xyz: did not receive HSTS header
dingelbob-schuhcreme.gq: could not connect to host
dingss.com: could not connect to host
dinkum.online: could not connect to host
-dinotopia.org.uk: did not receive HSTS header
+dinotopia.org.uk: could not connect to host
dinotv.at: could not connect to host
dintillat.fr: could not connect to host
dinube.com: did not receive HSTS header
dionysus.se: could not connect to host
dipconsultants.com: could not connect to host
-direct2uk.com: max-age too low: 2592000
directhskincream.com: could not connect to host
directinsure.in: did not receive HSTS header
directme.ga: could not connect to host
@@ -5135,8 +6305,9 @@ dirtycat.ru: could not connect to host
dirtygeek.ovh: did not receive HSTS header
disadattamentolavorativo.it: could not connect to host
discha.net: did not receive HSTS header
+disciplesmakingdisciples.ca: could not connect to host
+disciplina.io: did not receive HSTS header
discipul.nl: could not connect to host
-disclosure.io: could not connect to host
disco-crazy-world.de: could not connect to host
discord-chan.net: could not connect to host
discountmania.eu: did not receive HSTS header
@@ -5144,33 +6315,29 @@ discountmetaux.fr: did not receive HSTS header
discover-mercure.com: could not connect to host
discoveringdocker.com: could not connect to host
discoverrsv.com: could not connect to host
-discoverucluelet.com: did not receive HSTS header
discoverwellness.center: could not connect to host
discovery.lookout.com: did not receive HSTS header
-discoveryballoon.org: could not connect to host
+discoveryottawa.ca: could not connect to host
discoveryrom.org: could not connect to host
-dise-online.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]
dislocated.de: did not receive HSTS header
disorderboutique.com: did not receive HSTS header
dispatchitsolutions.com: did not receive HSTS header
dispatchitsolutions.io: did not receive HSTS header
disruptivelabs.net: could not connect to host
disruptivelabs.org: could not connect to host
-dissieux.com: did not receive HSTS header
+dissident.host: could not connect to host
dissimulo.me: could not connect to host
-distiduffer.org: could not connect to host
+distinctdesign2009.com: could not connect to host
distinctivephotography.com.au: could not connect to host
distinguishedwindows.co.uk: did not receive HSTS header
distractionco.de: did not receive HSTS header
distrilogservices.com: could not connect to host
-distro.re: did not receive HSTS header
ditch.ch: could not connect to host
ditrutoancau.vn: could not connect to host
dittvertshus.no: could not connect to host
diva-ey.com: could not connect to host
-divegearexpress.com.cn: did not receive HSTS header
-divenwa.com: did not receive HSTS header
-divergenz.org: did not receive HSTS header
+divegearexpress.com.cn: could not connect to host
+divenwa.com: could not connect to host
diversity-spielzeug.de: did not receive HSTS header
divinemercyparishvlds.com: did not receive HSTS header
divvi.co.nz: did not receive HSTS header
@@ -5179,42 +6346,51 @@ divvyradio.com: could not connect to host
dixiediner.com: did not receive HSTS header
dixmag.com: could not connect to host
diygod.me: did not receive HSTS header
+diysec.tk: could not connect to host
diz.in.ua: could not connect to host
+dizalty.tv: did not receive HSTS header
dizihocasi.com: could not connect to host
dizorg.net: could not connect to host
+dizzieforums.com: did not receive HSTS header
dj4et.de: could not connect to host
djangogolf.com: could not connect to host
+djeung.org: could not connect to host
+djiconsulting.com: did not receive HSTS header
djieno.com: did not receive HSTS header
-djleon.net: did not receive HSTS header
-djlive.pl: did not receive HSTS header
-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]
+djroynomden.nl: 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 :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
djul.net: could not connect to host
djursland-psykologen.dk: did not receive HSTS header
djxmmx.net: did not receive HSTS header
-djz4music.com: did not receive HSTS header
-dkn.go.id: could not connect to host
+djz4music.com: could not connect to host
dkniss.de: could not connect to host
-dko-steiermark.ml: could not connect to host
dl.google.com: did not receive HSTS header (error ignored - included regardless)
-dlbouncers.co.uk: could not connect to host
+dlabouncycastlehire.co.uk: did not receive HSTS header
dlc.viasinc.com: could not connect to host
dlcwilson.com: could not connect to host
dlemper.de: did not receive HSTS header
dlouwrink.nl: could not connect to host
+dlyanxs.com: did not receive HSTS header
dlyl888.com: could not connect to host
+dm1.in: could not connect to host
dmarketer.com: did not receive HSTS header
-dmcastles.com: did not receive HSTS header
+dmcastles.com: could not connect to host
dmcglobaltravel.com.mx: did not receive HSTS header
dmcibulldog.com: did not receive HSTS header
dmdre.com: did not receive HSTS header
dmeevalumate.com: did not receive HSTS header
-dmenergy.ru: max-age too low: 0
dmfd.net: could not connect to host
+dmix.ca: did not receive HSTS header
dmlogic.com: could not connect to host
dmtry.me: did not receive HSTS header
dmwall.cn: could not connect to host
+dmx.xyz: could not connect to host
+dmxledlights.com: could not connect to host
dmz.ninja: could not connect to host
+dmzlab.se: could not connect to host
+dnastatic.com: could not connect to host
dndesign.be: did not receive HSTS header
+dne.lu: did not receive HSTS header
dnfc.rocks: could not connect to host
dnmaze.com: could not connect to host
dns-manager.info: did not receive HSTS header
@@ -5222,6 +6398,8 @@ dns.google.com: did not receive HSTS header (error ignored - included regardless
dnsbird.net: could not connect to host
dnsbird.org: could not connect to host
dnscrypt.org: did not receive HSTS header
+dnsinfo.ml: could not connect to host
+dnsipv6.srv.br: did not receive HSTS header
dnsknowledge.com: did not receive HSTS header
dnsql.io: could not connect to host
dnzz123.com: did not receive HSTS header
@@ -5230,14 +6408,16 @@ do-it.cz: did not receive HSTS header
doak.io: did not receive HSTS header
doanhnhanplus.vn: max-age too low: 0
dobet.in: could not connect to host
+dobrev.family: could not connect to host
+dobsnet.net: did not receive HSTS header
doc-justice.com: did not receive HSTS header
docid.io: could not connect to host
dockerm.com: could not connect to host
dockerturkiye.com: could not connect to host
docket.news: could not connect to host
doclassworks.com: could not connect to host
+docloh.de: did not receive HSTS header
doclot.io: could not connect to host
-docplexus.org: max-age too low: 0
docset.io: could not connect to host
docufiel.com: could not connect to host
doculus.io: could not connect to host
@@ -5247,13 +6427,15 @@ docxtemplater.com: did not receive HSTS header
dodomu.ddns.net: could not connect to host
doesmycodehavebugs.today: could not connect to host
doeswindowssuckforeveryoneorjustme.com: could not connect to host
+dog-blum.com: could not connect to host
dogbox.se: did not receive HSTS header
dogcratereview.info: could not connect to host
+doge.me: did not receive HSTS header
doge.town: could not connect to host
dogespeed.ga: could not connect to host
-dogfi.sh: could not connect to host
+dogfi.sh: did not receive HSTS header
doggieholic.net: could not connect to host
-dognlife.com: could not connect to host
+dognlife.com: did not receive HSTS header
dogoodbehappyllc.com: could not connect to host
dogprograms.net: could not connect to host
dohosting.ru: could not connect to host
@@ -5265,30 +6447,42 @@ doked.io: could not connect to host
dokspot.cf: could not connect to host
dokspot.ga: could not connect to host
doku-gilde.de: could not connect to host
+dokuraum.de: 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
+dollchan.org: could not connect to host
dollywiki.co.uk: could not connect to host
+dolphin-cloud.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+dolphin-hosting.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+dolphin-it.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
dolphincorp.co.uk: could not connect to host
-dolphinswithlasers.com: could not connect to host
dolt.xyz: could not connect to host
domaine-aigoual-cevennes.com: did not receive HSTS header
domainelaremejeanne.com: did not receive HSTS header
+domainhacks.io: could not connect to host
+domains.homes: did not receive HSTS header
domainwatch.me: did not receive HSTS header
domaris.de: did not receive HSTS header
domasazu.pl: did not receive HSTS header
domen-reg.ru: could not connect to host
domengrad.ru: did not receive HSTS header
-domenicocatelli.com: did not receive HSTS header
-domfee.com: could not connect to host
+domenicocatelli.com: could not connect to host
dominikanskarepubliken.guide: could not connect to host
dominioanimal.com: could not connect to host
dominioanimal.com.br: could not connect to host
-dominique-mueller.de: could not connect to host
-domytermpaper.com: could not connect to host
+domix.fun: could not connect to host
+domizx.de: could not connect to host
+dommelschbierfusten.nl: did not receive HSTS header
+domovitae.io: could not connect to host
+domovitae.nl: could not connect to host
+domquixoteepi.com.br: did not receive HSTS header
+domy-drewniane-kanadyjskie.pl: did not receive HSTS header
don.yokohama: could not connect to host
+donateabox.org: could not connect to host
dong8.top: could not connect to host
dongjingre.net: could not connect to host
+dongthucvat.com: did not receive HSTS header
donhoward.org: did not receive HSTS header
donlydental.ca: did not receive HSTS header
donmez.uk: could not connect to host
@@ -5296,34 +6490,42 @@ donmez.ws: could not connect to host
donna-bellini-business-fotografie-muenchen.de: did not receive HSTS header
donotspampls.me: could not connect to host
donotspellitgav.in: did not receive HSTS header
+donovand.info: did not receive HSTS header
donpaginasweb.com: did not receive HSTS header
+donpomodoro.com.co: did not receive HSTS header
donsbach-edv.de: did not receive HSTS header
-donthedragonwilson.com: could not connect to host
+donttrust.me: could not connect to host
donttrustrobots.nl: could not connect to host
donzelot.co.uk: did not receive HSTS header
-donzool.es: did not receive HSTS header
+donzool.es: could not connect to host
doobydude.us: could not connect to host
doodledraw.ninja: could not connect to host
-doodlefinder.de: max-age too low: 600000
dooku.cz: could not connect to host
-doomleika.com: did not receive HSTS header
+doomleika.com: could not connect to host
doooonoooob.com: could not connect to host
-doopdidoop.com: did not receive HSTS header
+doopdidoop.com: could not connect to host
door.cards: could not connect to host
+dopetrue.com: could not connect to host
dopfer-fenstertechnik.de: did not receive HSTS header
+dophys.top: did not receive HSTS header
dopost.it: could not connect to host
doppenpost.nl: could not connect to host
+dopply.com: did not receive HSTS header
+dorfzittig.de: did not receive HSTS header
doriginal.es: did not receive HSTS header
dorkfarm.com: did not receive HSTS header
dormebebe.com.br: could not connect to host
-dosenbierrepublik.com: could not connect to host
+dormkitty.com: 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
dostrece.net: did not receive HSTS header
+dot.ro: could not connect to host
+dota2huds.com: did not receive HSTS header
dotadata.me: could not connect to host
dotb.dn.ua: did not receive HSTS header
dotbrick.co.th: could not connect to host
+dotconnor.com: did not receive HSTS header
dotkod.com: could not connect to host
dotnetsandbox.ca: could not connect to host
dotspaperie.com: could not connect to host
@@ -5334,23 +6536,32 @@ douglas-ma.gov: did not receive HSTS header
douglasstafford.com: did not receive HSTS header
doujin-domain.cz: could not connect to host
doujin.nagoya: could not connect to host
-doulasofgreaterkansascity.org: max-age too low: 300
dovecotadmin.org: could not connect to host
doveholesband.co.uk: did not receive HSTS header
dovetailnow.com: could not connect to host
+dovro.de: did not receive HSTS header
dowc.org: did not receive HSTS header
download.jitsi.org: did not receive HSTS header
downsouthweddings.com.au: did not receive HSTS header
+downtimerobot.com: could not connect to host
doxcelerate.com: could not connect to host
doyoulyft.com: could not connect to host
dpangerl.de: did not receive HSTS header
dpsart.it: could not connect to host
+dpucarriersma.gov: could not connect to host
+dq12321.com: max-age too low: 0
drabben.be: did not receive HSTS header
drabbin.com: could not connect to host
-draghive.club: did not receive HSTS header
+drageeparadise.fr: did not receive HSTS header
+draghive.asia: could not connect to host
+draghive.ca: could not connect to host
+draghive.club: could not connect to host
+draghive.co: could not connect to host
+draghive.co.uk: could not connect to host
draghive.net: could not connect to host
draghive.org: could not connect to host
-draghive.photos: did not receive HSTS header
+draghive.photos: could not connect to host
+draghive.tv: could not connect to host
dragon-aspect.com: could not connect to host
dragoncityhack.tips: could not connect to host
dragonisles.net: could not connect to host
@@ -5358,17 +6569,21 @@ 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
+dragonwork.me: could not connect to host
drahcro.uk: could not connect to host
drainagebuizen.nl: did not receive HSTS header
+drainagedirect.com: did not receive HSTS header
drakefortreasurer.sexy: could not connect to host
+drakensberg-tourism.com: did not receive HSTS header
drakfot.se: could not connect to host
dralexjimenez.com: did not receive HSTS header
drastosasports.com.br: could not connect to host
drbarnabus.com: could not connect to host
drbethanybarnes.com: did not receive HSTS header
+drchristinehatfield.ca: max-age too low: 0
drdavidgilpin.com: did not receive HSTS header
drdevil.ru: could not connect to host
-drdim.ru: could not connect to host
+drdim.ru: did not receive HSTS header
dreadbyte.com: could not connect to host
dreadd.org: could not connect to host
dreamaholic.club: could not connect to host
@@ -5378,22 +6593,25 @@ dreaming.solutions: could not connect to host
dreamithost.com.au: did not receive HSTS header
dreamkitchenbath.com: did not receive HSTS header
dreamlighteyeserum.com: could not connect to host
-dreamsforabetterworld.com.au: did not receive HSTS header
-dreamstream.network: could not connect to host
+dreamlinehost.com: did not receive HSTS header
+dreammakerremodelil.com: did not receive HSTS header
+dreamonkey.com: did not receive HSTS header
+dreamstream.mobi: max-age too low: 0
dreamtechie.com: did not receive HSTS header
-dreatho.com: did not receive HSTS header
-dreax.win: could not connect to host
dredgepress.com: did not receive HSTS header
+dreemurr.com: could not connect to host
dreischneidiger.de: could not connect to host
dreizwosechs.de: could not connect to host
dresdner-christstollen-von-reimann.de: could not connect to host
+dressify.co: could not connect to host
+drew.life: could not connect to host
drewgle.net: could not connect to host
-drgn.li: could not connect to host
-drgn.no: could not connect to host
+drgdrp.com: did not receive HSTS header
+drgiyaseddin.com: did not receive HSTS header
+drgn.li: did not receive HSTS header
drhopeson.com: did not receive HSTS header
drillnation.com.au: could not connect to host
-drinknaturespower.com: could not connect to host
-drinkplanet.eu: could not connect to host
+drinknaturespower.com: did not receive HSTS header
drinkvabeer.com: could not connect to host
dripdoctors.com: did not receive HSTS header
drishti.guru: could not connect to host
@@ -5401,15 +6619,18 @@ drive.xyz: could not connect to host
drivewithstatetransit.com.au: did not receive HSTS header
driving-lessons.co.uk: could not connect to host
drivingtestpro.com: did not receive HSTS header
+drixn.com: could not connect to host
drixn.info: could not connect to host
drixn.net: could not connect to host
-drjacquesmalan.com: could not connect to host
-drkmtrx.xyz: could not connect to host
+drjobs.com.au: did not receive HSTS header
drlazarina.net: did not receive HSTS header
-drnow.ru: did not receive HSTS header
+drlutfi.com: did not receive HSTS header
+drmyco.net: did not receive HSTS header
drobniuch.pl: could not connect to host
drogoz.moe: could not connect to host
+drogueriaelbarco.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
droidboss.com: did not receive HSTS header
+droidwave.com: did not receive HSTS header
droidwiki.de: could not connect to host
droithxn.com: could not connect to host
droncentrum.pl: did not receive HSTS header
@@ -5431,8 +6652,9 @@ 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
-drpure.top: did not receive HSTS header
drrodina.com: did not receive HSTS header
+drros.ru: could not connect to host
+drschruefer.de: max-age too low: 0
drtroyhendrickson.com: could not connect to host
drtti.io: could not connect to host
drturner.com.au: did not receive HSTS header
@@ -5448,12 +6670,19 @@ 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
+dsanraffleshangbai.xyz: could not connect to host
+dsdalismerkezi.com: did not receive HSTS header
dshiv.io: could not connect to host
+dsimons.tk: could not connect to host
dsmstainlessproducts.co.uk: did not receive HSTS header
dsne.com.mx: did not receive HSTS header
dsouzamusic.com: did not receive HSTS header
+dssale.com: did not receive HSTS header
+dstvinstallfourways.co.za: did not receive HSTS header
dsyunmall.com: could not connect to host
+dte.co.uk: did not receive HSTS header
dtechstore.com.br: did not receive HSTS header
+dtpak.cz: max-age too low: 0
dtub.co: could not connect to host
dualias.xyz: could not connect to host
duan.li: could not connect to host
@@ -5464,64 +6693,64 @@ ducius.net: could not connect to host
duckasylum.com: did not receive HSTS header
duckyubuntu.tk: could not connect to host
ducohosting.com: did not receive HSTS header
+due-diligence-security.com: 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
+duerls.de: did not receive HSTS header
+duerlund-falkenberg.dk: could not connect to host
dugnet.tech: could not connect to host
+dui805.com: did not receive HSTS header
dujsq.com: could not connect to host
dujsq.top: could not connect to host
dukec.me: could not connect to host
-dukefox.com: could not connect to host
+dukefox.com: did not receive HSTS header
duks.com.br: could not connect to host
dullsir.com: did not receive HSTS header
-dum.moe: could not connect to host
dumbdemo.com: could not connect to host
+dumbfunded.co.uk: max-age too low: 0
+dumbomove.com.au: did not receive HSTS header
dumont.ovh: did not receive HSTS header
+dumpsters.com: did not receive HSTS header
dunamiscommunity.com: could not connect to host
dunashoes.com: could not connect to host
dune.io: did not receive HSTS header
dunea.nl: did not receive HSTS header
dunesadventure.net: could not connect to host
-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
+duonganhtuan.com: did not receive HSTS header
duongpho.com: did not receive HSTS header
durangoenergyllc.com: could not connect to host
+durexwinkel.nl: could not connect to host
dushu.cat: could not connect to host
duskopy.top: could not connect to host
dusnan.com: could not connect to host
-dutchessuganda.com: did not receive HSTS header
+dustycloth.com: could not connect to host
+dustyro.se: could not connect to host
dutchrank.com: did not receive HSTS header
+dutyfreeinformation.com: did not receive HSTS header
dutyfreeonboard.com: did not receive HSTS header
duuu.ch: could not connect to host
-duyao.de: max-age too low: 86400
dvotx.org: did not receive HSTS header
+dw-loewe.de: could not connect to host
dwbtoftshit.com: did not receive HSTS header
-dwellstudio.com: could not connect to host
-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]
+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 :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
dwnld.me: could not connect to host
dycem-ns.com: did not receive HSTS header
-dycoa.com: could not connect to host
dycontrol.de: could not connect to host
+dylanboudro.com: max-age too low: 0
dylanscott.com.au: did not receive HSTS header
+dylanwise.net: could not connect to host
+dyn-nserve.net: could not connect to host
dynamic-innovations.net: could not connect to host
dynamic-networks.be: could not connect to host
+dynamicyou.co.uk: could not connect to host
dynamize.solutions: did not receive HSTS header
-dynastyarena.com: could not connect to host
-dynastycalculator.com: could not connect to host
-dynastycentral.com: could not connect to host
-dynastychalkboard.com: could not connect to host
-dynastyclubhouse.com: could not connect to host
-dynastycrate.com: could not connect to host
-dynastyduel.com: could not connect to host
-dynastyfan.com: could not connect to host
-dynastygoal.com: could not connect to host
-dynastylocker.com: could not connect to host
-dynastyredline.com: could not connect to host
-dyncdn.me: could not connect to host
-dyz.pw: did not receive HSTS header
-dziekonski.com: could not connect to host
+dynamo.city: did not receive HSTS header
+dynastyredzone.com: could not connect to host
+dz6957.com: could not connect to host
dzimejl.sk: did not receive HSTS header
dzlibs.io: could not connect to host
dzndk.net: could not connect to host
@@ -5533,6 +6762,7 @@ e-aut.net: could not connect to host
e-baraxolka.ru: could not connect to host
e-deca2.org: did not receive HSTS header
e-gemeinde.at: could not connect to host
+e-hon.link: did not receive HSTS header
e-imzo.uz: could not connect to host
e-isfa.eu: did not receive HSTS header
e-kontakti.fi: did not receive HSTS header
@@ -5543,52 +6773,63 @@ 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-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-surveillant.nl: 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 :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+e-vo-linka.cz: could not connect to host
e-wishlist.net: could not connect to host
e024.org: could not connect to host
-e1488.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+e1488.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
e191.com: could not connect to host
e30gruppe.com: did not receive HSTS header
e3amn2l.com: could not connect to host
e3kids.com: did not receive HSTS header
+e3leading.com: did not receive HSTS header
+e3leading.solutions: did not receive HSTS header
+e3leadingsolutions.com: did not receive HSTS header
+e3learning.institute: did not receive HSTS header
+e3li.org: did not receive HSTS header
e3q.de: could not connect to host
e505.net: could not connect to host
-e51888.com: did not receive HSTS header
-e52888.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-e52888.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-e53888.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-e53888.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-e59888.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-e59888.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+e51888.com: could not connect to host
+e52888.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+e52888.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+e53888.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+e53888.net: did not receive HSTS header
+e59888.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+e59888.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+e6957.com: could not connect to host
+e9a.at: could not connect to host
eagle-aluminum.com: did not receive HSTS header
eagle-yard.de: could not connect to host
eagleridgecampground.com: could not connect to host
+eaglesecurity.com: did not receive HSTS header
eam-gmbh.com: did not receive HSTS header
eames-clayton.us: could not connect to host
-eapestudioweb.com: did not receive HSTS header
earga.sm: could not connect to host
earlybirdsnacks.com: could not connect to host
+earn.wiki: could not connect to host
earth-people.org: could not connect to host
earthrise16.com: could not connect to host
+easelforart.com: could not connect to host
easew.com: could not connect to host
east-line.su: could not connect to host
eastcoastbubbleandbounce.co.uk: could not connect to host
-eastcoastinflatables.co.uk: did not receive HSTS header
+eastcoastinflatables.co.uk: could not connect to host
easthokkaido-5airport.jp: did not receive HSTS header
-eastman.space: did not receive HSTS header
-eastmidlandsstargazers.org.uk: did not receive HSTS header
+eastman.space: could not connect to host
eastmontgroup.com: did not receive HSTS header
eastpeoria-il.gov: could not connect to host
+eastsidecottages.co.uk: did not receive HSTS header
easy-factures.fr: could not connect to host
easychiller.org: could not connect to host
easycontentplan.com: could not connect to host
-easycup.com: max-age too low: 7889238
easykonto.de: could not connect to host
+easyocm.hu: did not receive HSTS header
+easyoutdoor.nl: did not receive HSTS header
easyplane.it: did not receive HSTS header
easyreal.ru: could not connect to host
-easyschools.org: did not receive HSTS header
easysimplecrm.com: could not connect to host
+easyssl.com.cn: did not receive HSTS header
eat-the-world.ch: could not connect to host
eat4happiness.com: did not receive HSTS header
eatfitoutlet.com.br: could not connect to host
@@ -5598,99 +6839,115 @@ eattherich.us: did not receive HSTS header
eatvisor.co.uk: could not connect to host
eauclairecommerce.com: could not connect to host
ebankcbt.com: could not connect to host
+ebayinc.com: did not receive HSTS header
ebcs-solutions.com: did not receive HSTS header
ebecs.com: did not receive HSTS header
ebertek.com: did not receive HSTS header
ebiografias.com.br: could not connect to host
-ebolsa.com.br: did not receive HSTS header
+ebolsa.com.br: could not connect to host
ebolsas.com.br: did not receive HSTS header
ebooklaunchers.com: did not receive HSTS header
ebooksgratuits.org: could not connect to host
+ebooktoan.com: did not receive HSTS header
ebop.ch: could not connect to host
ebp2p.com: could not connect to host
ebraph.com: could not connect to host
ebrowz.com: could not connect to host
ec-baran.de: could not connect to host
+ecacollege.nsw.edu.au: did not receive HSTS header
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
+ecfunstalls.com: could not connect to host
ecg.fr: could not connect to host
echipstore.com: did not receive HSTS header
+echo.cc: could not connect to host
echoactive.com: max-age too low: 7776000
+echomall.cn: did not receive HSTS header
echomanchester.net: did not receive HSTS header
-echoteam.gq: could not connect to host
+echoteen.com: did not receive HSTS header
echtes-hutzelbrot.de: could not connect to host
+echtgeld-casinos.de: could not connect to host
eckro.com: could not connect to host
+eclanet.ca: did not receive HSTS header
+ecliptic.cc: could not connect to host
eco-wiki.com: could not connect to host
ecobrain.be: max-age too low: 0
-ecococon.fr: 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
-ecolesrec.ch: did not receive HSTS header
-ecology-21.ru: did not receive HSTS header
+ecolesrec.ch: could not connect to host
ecomlane.com: could not connect to host
ecommercestore.net.br: could not connect to host
ecomparemo.com: did not receive HSTS header
ecompen.co.za: could not connect to host
econativa.pt: could not connect to host
-economy.st: did not receive HSTS header
+economy.st: could not connect to host
economycarrentalscyprus.com: could not connect to host
+ecorp.cc: could not connect to host
ecorus.eu: did not receive HSTS header
-ecos.srl: did not receive HSTS header
ecoskif.ru: could not connect to host
ecosoftconsult.com: could not connect to host
ecosystemmanager.azurewebsites.net: did not receive HSTS header
+ecotaxi2airport.com: did not receive HSTS header
ecotruck-pooling.com: did not receive HSTS header
ecp.ae: did not receive HSTS header
ecrimex.net: did not receive HSTS header
ectora.com: could not connect to host
+ecuinformacion.com: could not connect to host
ed-matters.org: did not receive HSTS header
+edakoe.ru: could not connect to host
edati.lv: could not connect to host
edcphenix.tk: could not connect to host
eddmixpanel.com: could not connect to host
+edeka-jbl-treueaktion.de: could not connect to host
edelblack.ch: could not connect to host
edelsteincosmetic.com: did not receive HSTS header
eden-institut-carita-valdisere.com: did not receive HSTS header
eden-mobility.co.uk: did not receive HSTS header
eden-noel.at: could not connect to host
edenaya.com: could not connect to host
-edenmal.net: did not receive HSTS header
edenvaleplumber24-7.co.za: did not receive HSTS header
edenvalerubbleremovals.co.za: did not receive HSTS header
+edge-cloud.net: could not connect to host
edgecustomersportal.com: could not connect to host
-edgedynasty.com: could not connect to host
edgereinvent.com: could not connect to host
-edh.email: did not receive HSTS header
-edhrealtor.com: did not receive HSTS header
edisonchee.com: did not receive HSTS header
+edisonluiz.com: could not connect to host
edissecurity.sk: did not receive HSTS header
-edition-pommern.com: max-age too low: 86400
editoraacademiacrista.com.br: could not connect to host
editoraimaculada.com.br: did not receive HSTS header
edix.ru: could not connect to host
edk.com.tr: did not receive HSTS header
edpubs.gov: could not connect to host
edsh.de: did not receive HSTS header
+eduard-dopler.de: could not connect to host
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
+educationalstage.com: did not receive HSTS header
+educationunlimited.com: did not receive HSTS header
educator-one.com: could not connect to host
educators.co.nz: did not receive HSTS header
educatoys.com.br: could not connect to host
educatweb.de: did not receive HSTS header
educnum.fr: did not receive HSTS header
educourse.ga: could not connect to host
-eduif.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+eduif.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
edusantorini.com: could not connect to host
+edusitios.com: did not receive HSTS header
eduvance.in: did not receive HSTS header
+edv-bv.de: did not receive HSTS header
+edwar.do: did not receive HSTS header
+edwarddekker.nl: did not receive HSTS header
ee-terminals.com: could not connect to host
+ee6957.com: could not connect to host
eeb98.com: could not connect to host
eeetrust.org: could not connect to host
-eenekorea.com: could not connect to host
+eenekorea.com: did not receive HSTS header
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
eengezinswoning-in-friesland-kopen.nl: could not connect to host
@@ -5706,25 +6963,30 @@ 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
+eerlijktransport.nl: could not connect to host
eesistumine2017.ee: could not connect to host
eez.ee: could not connect to host
-efag.com: did not receive HSTS header
eff-bee-eye.de: did not receive HSTS header
effectiveosgi.com: could not connect to host
-effectivepapers.com: could not connect to host
+effer.me: could not connect to host
+effero.net: could not connect to host
efficienthealth.com: could not connect to host
effizienta.ch: did not receive HSTS header
efflam.net: could not connect to host
+efinity.io: could not connect to host
eftcorp.biz: did not receive HSTS header
-egamespw.com: could not connect to host
-egbert.net: could not connect to host
+eftelingcraft.net: could not connect to host
+eganassociates.com.au: did not receive HSTS header
egfl.org.uk: did not receive HSTS header
egge.com: max-age too low: 0
-eggqvq.com: could not connect to host
+eggplant.today: could not connect to host
+egicloud.com: did not receive HSTS header
egit.co: could not connect to host
eglek.com: did not receive HSTS header
ego-world.org: could not connect to host
+egumenita.ro: did not receive HSTS header
egupova.ru: did not receive HSTS header
+ehdud8451.tk: could not connect to host
ehealthcounselor.com: could not connect to host
ehipaadev.com: could not connect to host
ehito.ovh: could not connect to host
@@ -5734,29 +6996,40 @@ ehrlichesbier.de: could not connect to host
ehseller.com: did not receive HSTS header
ehsellert.com: did not receive HSTS header
ehuber.info: could not connect to host
+eiao.me: could not connect to host
eicfood.com: could not connect to host
eichornenterprises.com: could not connect to host
eidolonhost.com: did not receive HSTS header
-eifelindex.de: could not connect to host
+eidolons.org: did not receive HSTS header
+eifel.website: could not connect to host
eiga-movie.com: max-age too low: 0
eigenbubi.de: could not connect to host
eigo.work: did not receive HSTS header
+eika.as: did not receive HSTS header
+eilandprojectkeukens.nl: did not receive HSTS header
eimanavicius.lt: did not receive HSTS header
+einaros.is: could not connect to host
einfachmaldiefressehalten.de: could not connect to host
einhorn.space: could not connect to host
einmonolog.de: could not connect to host
einsatzstiefel.info: could not connect to host
einsit.com: could not connect to host
einsitapis.com: could not connect to host
+eiti.online: did not receive HSTS header
ejgconsultancy.co.uk: could not connect to host
ejuicelab.co.uk: did not receive HSTS header
ejusu.com: could not connect to host
ek.network: did not receive HSTS header
-ekbanden.nl: could not connect to host
+ekawaiishop.com: could not connect to host
+ekbanden.nl: did not receive HSTS header
+ekeblock.com: could not connect to host
ekobudisantoso.net: could not connect to host
+ekodevices.com: did not receive HSTS header
ekong366.com: could not connect to host
+ekrana.info: could not connect to host
eksik.com: could not connect to host
el-soul.com: did not receive HSTS header
+elaboratefiction.com: could not connect to host
elaintehtaat.fi: did not receive HSTS header
elan-organics.com: did not receive HSTS header
elanguest.pl: could not connect to host
@@ -5765,64 +7038,69 @@ 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
+elcontadorsac.com: could not connect to host
+elderoost.com: could not connect to host
+eldietista.es: did not receive HSTS header
eldisagjapi.com: did not receive HSTS header
eldisagjapi.de: could not connect to host
+ele-sm.com: could not connect to host
elearningpilot.com: did not receive HSTS header
eleaut.com.br: did not receive HSTS header
-electicofficial.com: did not receive HSTS header
+electicofficial.com: could not connect to host
+electmikewaters.com: max-age too low: 0
electricalcontrolpanels.co.uk: could not connect to host
+electricalpacificpalisades.com: 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: did not receive HSTS header
electricianforum.co.uk: did not receive HSTS header
+electricianpacificpalisades.com: could not connect to host
electricianumhlangarocks.co.za: did not receive HSTS header
electricoperaduo.com: did not receive HSTS header
+electroinkoophardenberg.nl: did not receive HSTS header
electromc.com: could not connect to host
eled.io: could not connect to host
+elektro-collee.de: did not receive HSTS header
elektronring.com: could not connect to host
element-43.com: did not receive HSTS header
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: could not connect to host
elenag.ga: could not connect to host
elenagherta.ga: could not connect to host
-elenatranslations.nl: could not connect to host
-elenoon.ir: max-age too low: 1
+elenoon.ir: did not receive HSTS header
elenorsmadness.org: could not connect to host
eleonorengland.com: did not receive HSTS header
-elestanteliterario.com: max-age too low: 43200
elevateandprosper.com: could not connect to host
+elevationfilms.net: could not connect to host
elevator.ee: could not connect to host
+elexel.ru: did not receive HSTS header
elgacien.de: could not connect to host
-elguillatun.cl: did not receive HSTS header
+elguadia.faith: could not connect to host
elhall.pro: did not receive HSTS header
elhall.ru: did not receive HSTS header
-elia.cloud: could not connect to host
-eliasojala.me: did not receive HSTS header
+elib.com: did not receive HSTS header
elielaloum.com: did not receive HSTS header
elimdengelen.com: did not receive HSTS header
-eline168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+eline168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
eliolita.com: could not connect to host
eliott.be: could not connect to host
+elisechristie.com: could not connect to host
+elistor6100.xyz: did not receive HSTS header
elite-box.com: did not receive HSTS header
elite-box.org: did not receive HSTS header
-elite-porno.ru: could not connect to host
elitecovering.fr: did not receive HSTS header
elitefishtank.com: could not connect to host
elitehosting.de: did not receive HSTS header
-elitesensual.com.br: did not receive HSTS header
-elizeugomes.com.br: did not receive HSTS header
-ellen-skye.de: max-age too low: 604800
+elitepaintingsa.com.au: did not receive HSTS header
+elitesensual.com.br: could not connect to host
+elizabethgreenfield.com: could not connect to host
elliff.net: did not receive HSTS header
elliotgluck.com: could not connect to host
-elliquiy.com: could not connect to host
elmar-kraamzorg.nl: did not receive HSTS header
elna-service.com.ua: did not receive HSTS header
+elnan.do: could not connect to host
elnutricionista.es: could not connect to host
elo.fyi: could not connect to host
elodieclerc.ch: could not connect to host
@@ -5830,18 +7108,23 @@ elohellp.com: could not connect to host
elohna.ch: did not receive HSTS header
elonbase.com: could not connect to host
elonm.ru: could not connect to host
+elosuite.com: could not connect to host
eloxt.com: could not connect to host
+elpado.de: did not receive HSTS header
elpay.kz: did not receive HSTS header
elpo.xyz: could not connect to host
elsamakhin.com: could not connect to host
elsemanario.com: did not receive HSTS header
-elsensohn.ch: did not receive HSTS header
elsitar.com: could not connect to host
elsword.moe: could not connect to host
+eltagroup.co.uk: did not receive HSTS header
+eltip.click: could not connect to host
eltransportquevolem.org: could not connect to host
eltrox.me: could not connect to host
-eluft.de: could not connect to host
-elvisripley.com: max-age too low: 0
+elucron.com: could not connect to host
+eluft.de: did not receive HSTS header
+elvcino.com: could not connect to host
+elxsi.de: did not receive HSTS header
elyisus.info: did not receive HSTS header
elytronsecurity.com: did not receive HSTS header
email.lookout.com: could not connect to host
@@ -5851,30 +7134,39 @@ emailcontrol.nl: did not receive HSTS header
emailing.alsace: could not connect to host
emanatepixels.com: could not connect to host
emanga.su: could not connect to host
-emasex.es: could not connect to host
emavok.eu: could not connect to host
embellir-aroma.com: could not connect to host
embellir-kyujin.com: could not connect to host
embracethedarkness.co.uk: could not connect to host
embroidered-stuff.com: could not connect to host
-embudospro.net: could not connect to host
+embudospro.net: did not receive HSTS header
+emby.cloud: did not receive HSTS header
+emcspotlight.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
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]
+emeraldonion.org: did not receive HSTS header
+emergeandsee.com: did not receive HSTS header
+emergencyessay.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
emergencymedicinefoundations.com: did not receive HSTS header
emergentvisiontec.com: did not receive HSTS header
emesolutions.net: did not receive HSTS header
emiele.com.br: could not connect to host
emil-dein-baecker.com: could not connect to host
+emilecourriel.com: could not connect to host
emilreimann.de: could not connect to host
emils-chemnitz.de: could not connect to host
emils1910.de: could not connect to host
emilyhorsman.com: could not connect to host
emilyshepherd.me: did not receive HSTS header
+eminententerprises.io: could not connect to host
eminhuseynov.com: could not connect to host
eminovic.me: could not connect to host
emjainteractive.com: did not receive HSTS header
-emjimadhu.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+emjimadhu.com: could not connect to host
+emkanrecords.com: did not receive HSTS header
+emkei.cz: did not receive HSTS header
emma-o.com: could not connect to host
+emma.ca: did not receive HSTS header
+emmababy420.com: could not connect to host
emmable.com: did not receive HSTS header
emmaliddell.com: did not receive HSTS header
emmanuelle-et-julien.ch: could not connect to host
@@ -5882,7 +7174,7 @@ emmdy.com: could not connect to host
emmehair.com: could not connect to host
emnitech.com: could not connect to host
emojiengine.com: did not receive HSTS header
-emoticonesjaponeses.com: did not receive HSTS header
+emoticonesjaponeses.com: could not connect to host
emotuit.com: did not receive HSTS header
emperor.blog: could not connect to host
empire24.co: could not connect to host
@@ -5891,29 +7183,34 @@ empleosentorreon.mx: could not connect to host
empleostampico.com: did not receive HSTS header
employeestore.org: did not receive HSTS header
emporiovinareal.com.br: could not connect to host
+emprendeconchrisfx.com: could not connect to host
empty-r.com: could not connect to host
emptypath.com: did not receive HSTS header
+emsadi.org: did not receive HSTS header
+emtradingacademy.com: could not connect to host
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
-enaim.de: max-age too low: 0
encadrer-mon-enfant.com: did not receive HSTS header
+encens.boutique: did not receive HSTS header
encode.space: could not connect to host
encode.uk.com: did not receive HSTS header
encoder.pw: could not connect to host
encontrebarato.com.br: could not connect to host
+encore.io: could not connect to host
+encrypt.org.uk: could not connect to host
+encryptallthethings.net: could not connect to host
encrypted.google.com: did not receive HSTS header (error ignored - included regardless)
encryptedaudience.com: could not connect to host
encryptio.com: could not connect to host
+encryptmycard.com: could not connect to host
end.pp.ua: could not connect to host
endangeredwatch.com: could not connect to host
-ende-x.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-endlessdark.net: max-age too low: 600
-endlesshorizon.net: max-age too low: 0
+ender.co.at: could not connect to host
+endlessdark.net: could not connect to host
endlesstone.com: did not receive HSTS header
-endofinternet.goip.de: did not receive HSTS header
+endofinternet.goip.de: could not connect to host
endofnet.org: could not connect to host
endofodo.goip.de: could not connect to host
endohaus.ca: could not connect to host
@@ -5921,20 +7218,18 @@ endohaus.com: could not connect to host
endohaus.eu: could not connect to host
endohaus.us: could not connect to host
endspamwith.us: could not connect to host
-eneamarcantoni.com: could not connect to host
-enecoshop.nl: did not receive HSTS header
+enecoshop.nl: could not connect to host
enefan.jp: could not connect to host
enelacto.com: could not connect to host
energethik-tulln.at: did not receive HSTS header
-energisammenslutningen.dk: could not connect to host
-energy.eu: max-age too low: 0
-energyradio.mk: max-age too low: 0
-enersaveapp.org: could not connect to host
+energisammenslutningen.dk: did not receive HSTS header
+energy-drink-magazin.de: could not connect to host
enersec.co.uk: could not connect to host
+enfield-kitchens.co.uk: did not receive HSTS header
enfoqueseguro.com: did not receive HSTS header
enfu.se: could not connect to host
+engiedev.net: could not connect to host
engineowning.com: did not receive HSTS header
-enginepit.com: could not connect to host
enginx.cn: did not receive HSTS header
englerts.de: did not receive HSTS header
englishclub.com: did not receive HSTS header
@@ -5943,40 +7238,47 @@ englishyamal.ru: did not receive HSTS header
enigmacpt.com: did not receive HSTS header
enigmail.net: did not receive HSTS header
enjen.net: did not receive HSTS header
+enjoy-israel.ru: max-age too low: 300
enjoymayfield.com: max-age too low: 0
+enjoyphoneblog.it: did not receive HSTS header
enjoystudio.ro: did not receive HSTS header
enlatte.com: could not connect to host
enlazaresbueno.cl: could not connect to host
enlightened.si: did not receive HSTS header
+enlightenedmind.co: did not receive HSTS header
+enlightenth.com: did not receive HSTS header
+enomada.net: could not connect to host
enoou.com: could not connect to host
+enord.fr: did not receive HSTS header
enpalmademallorca.info: could not connect to host
-ensemble-vos-idees.fr: could not connect to host
+ensemble-vos-idees.fr: did not receive HSTS header
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
+enteente.xyz: did not receive HSTS header
enterdev.co: did not receive HSTS header
+enteres.eu: did not receive HSTS header
enterprisecarclub.co.uk: did not receive HSTS header
enterprisechannel.asia: did not receive HSTS header
+enterprisey.enterprises: could not connect to host
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
-entreprise-toiture-clement.fr: could not connect to host
+entreprise-toiture-clement.fr: did not receive HSTS header
enum.eu.org: could not connect to host
enumify.com: could not connect to host
envelope.co.nz: did not receive HSTS header
-enviam.de: did not receive HSTS header
enviapresentes.com.br: could not connect to host
+envide.no: did not receive HSTS header
environment.ai: could not connect to host
environmentkirklees.org: did not receive HSTS header
envoutement-desenvoutement.com: did not receive HSTS header
envoyglobal.com: did not receive HSTS header
-envoyworld.com: did not receive HSTS header
+envoyworld.com: could not connect to host
envygeeks.com: did not receive HSTS header
envygeeks.io: did not receive HSTS header
eol34.com: could not connect to host
@@ -5987,241 +7289,263 @@ eos-classic.io: could not connect to host
eosol.services: could not connect to host
eosol.zone: could not connect to host
epanurse.com: could not connect to host
+epasar.my: 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
epicbouncycastlehirenorwich.co.uk: could not connect to host
+epichouse.net: could not connect to host
epicmc.games: could not connect to host
-epo32.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]
+epicsoft.de: did not receive HSTS header
+epo32.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+epoch.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
eposcloud.net: could not connect to host
eposmidlands.co.uk: could not connect to host
-eposnewport.co.uk: did not receive HSTS header
+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
+epossystems.co.uk: did not receive HSTS header
eposwales.co.uk: could not connect to host
epoxate.com: did not receive HSTS header
eprofitacademy.com: did not receive HSTS header
epsorting.cz: did not receive HSTS header
epulsar.ru: could not connect to host
-epvin.com: could not connect to host
eq8.net.au: could not connect to host
eqib.nl: did not receive HSTS header
-eqibank.com: could not connect to host
eqim.me: could not connect to host
eqorg.com: could not connect to host
+equallove.me: could not connect to host
equallyy.com: did not receive HSTS header
-equalparts.eu: could not connect to host
+equalparts.eu: did not receive HSTS header
equate.net.au: did not receive HSTS header
equatetechnologies.com.au: did not receive HSTS header
+equeim.ru: did not receive HSTS header
equilibre-yoga-jennifer-will.com: could not connect to host
-equilime.com: max-age too low: 7889238
+equipeferramentas.com.br: did not receive HSTS header
equippers.de: did not receive HSTS header
equipsupply.com: did not receive HSTS header
-equitee.co: did not receive HSTS header
+equitee.co: could not connect to host
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
+erclaim.com: could not connect to host
erecciontotalal100.com: could not connect to host
erectiepillenwinkel.nl: could not connect to host
erepublik-deutschland.de: did not receive HSTS header
eressea.xyz: could not connect to host
ericbond.net: could not connect to host
erichalv.com: could not connect to host
+ericisaweso.me: did not receive HSTS header
ericloud.tk: could not connect to host
ericorporation.com: did not receive HSTS header
ericschwartzlive.com: did not receive HSTS header
+ericwie.se: did not receive HSTS header
eriel.com.br: could not connect to host
+eriix.org: did not receive HSTS header
+erikseth.de: did not receive HSTS header
erikwagner.de: did not receive HSTS header
erinlin.com: did not receive HSTS header
-erinn.io: could not connect to host
-eriser.fr: did not receive HSTS header
+eriser.fr: could not connect to host
+erixschueler.de: did not receive HSTS header
ernaehrungsberatung-rapperswil.ch: did not receive HSTS header
ernaehrungsberatung-zurich.ch: could not connect to host
ernesto.at: could not connect to host
+ero.ink: could not connect to host
eroimatome.com: could not connect to host
-eroma.com.au: did not receive HSTS header
-eromixx.com: could not connect to host
-eromon.net: could not connect to host
-eroskines.com: did not receive HSTS header
+eromixx.com: did not receive HSTS header
+eromond.com: did not receive HSTS header
+eroskines.com: could not connect to host
erotalia.es: could not connect to host
erotic4me.ch: did not receive HSTS header
eroticforce.com: could not connect to host
erotische-aanbiedingen.nl: could not connect to host
erotpo.cz: could not connect to host
-erpiv.com: could not connect to host
-errolz.com: did not receive HSTS header
+errlytics.com: could not connect to host
+errolz.com: could not connect to host
errors.zenpayroll.com: could not connect to host
erspro.net: could not connect to host
+ertir.ru: could not connect to host
+erudicia.com: could not connect to host
+erudicia.de: could not connect to host
+erudicia.es: could not connect to host
+erudicia.fr: could not connect to host
+erudicia.it: could not connect to host
+erudicia.nl: could not connect to host
+erudicia.se: could not connect to host
+erudicia.uk: could not connect to host
eruvalerts.com: did not receive HSTS header
-erwanlepape.com: did not receive HSTS header
-erwinvanlonden.net: did not receive HSTS header
-es888.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+erwanlepape.com: could not connect to host
+erwinvanlonden.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+es888.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
es8888.net: could not connect to host
es888999.com: could not connect to host
-es999.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-es9999.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esaborit.ddns.net: did not receive HSTS header
-esb-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb-top.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb-top.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+es999.net: could not connect to host
+es9999.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb-top.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb-top.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb111.com: could not connect to host
esb111.net: could not connect to host
esb112.com: could not connect to host
esb112.net: could not connect to host
-esb116.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb116.com: could not connect to host
esb1314.net: could not connect to host
esb1668.com: could not connect to host
-esb168168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb168168.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb168168.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb168168.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb1688.biz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb1688.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb1688.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb1688.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb1688.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb168168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb168168.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb168168.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb168168.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1688.biz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1688.com: did not receive HSTS header
+esb1688.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1688.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1688.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb16888.com: could not connect to host
-esb1711.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb1711.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb1788.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb1788.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb1788.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb1788.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1711.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1711.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1788.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1788.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1788.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb1788.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb17888.com: could not connect to host
-esb2013.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb2013.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb2099.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb2099.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb2013.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb2013.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb2099.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb2099.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb222.net: could not connect to host
-esb258.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb325.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb325.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb333.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb336.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb369.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb433.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb518.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb553.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb555.biz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb555.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb258.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb325.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb325.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb333.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb336.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb369.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb433.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb518.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb553.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb555.biz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb555.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb555.com: could not connect to host
esb556.com: could not connect to host
-esb5889.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb5889.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb6.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb5889.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb5889.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb6.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb666.com: could not connect to host
esb666.net: could not connect to host
esb66666.com: could not connect to host
-esb677.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb677.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb688.com: could not connect to host
esb68888.com: could not connect to host
-esb775.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb777.biz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb775.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb777.biz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb777.cc: could not connect to host
esb777.com: could not connect to host
-esb777.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb777.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb777.net: could not connect to host
-esb777.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb777.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb777.us: could not connect to host
-esb886.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb888.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb886.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb888.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb8886.com: could not connect to host
-esb9527.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb9588.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb9588.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esb9588.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb9527.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb9588.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb9588.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb9588.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb999.biz: could not connect to host
esb999.com: could not connect to host
esb999.info: could not connect to host
-esb999.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esb999.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esb999.us: could not connect to host
esba11.cc: could not connect to host
-esba11.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esba11.in: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esba11.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esba11.in: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esba11.net: could not connect to host
esba11.us: could not connect to host
-esball-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esball-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esball.bz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esball.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.bz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esball.in: could not connect to host
-esball.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esball.mx: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esball.online: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esball.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esball.tv: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esball.win: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esball.ws: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esball518.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esball518.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esball518.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esball518.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.mx: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.online: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.org: did not receive HSTS header
+esball.tv: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.win: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball.ws: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball518.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball518.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball518.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esball518.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esball888.com: could not connect to host
esball888.net: could not connect to host
-esballs.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esbbon.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esbbon.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esbfun.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esbfun.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esbgood.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esbin.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esbjon.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esbjon.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esbm4.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esbm5.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esballs.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbbon.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbbon.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbfun.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbfun.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbgood.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbin.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbjon.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbjon.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbm4.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esbm5.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esbuilders.co.nz: did not receive HSTS header
-escalate.eu: could not connect to host
+escalate.eu: did not receive HSTS header
+escalesensorielle.com: max-age too low: 604800
escape2rooms.fr: did not receive HSTS header
escapees.com: did not receive HSTS header
+escapejoplin.com: did not receive HSTS header
+escaperoomservices.com: did not receive HSTS header
+escapessolutions.com: could not connect to host
escolaengenharia.com.br: did not receive HSTS header
-escolibri.com: could not connect to host
escort-byuro.net: did not receive HSTS header
escort-fashion.com: could not connect to host
escortdisplay.com: could not connect to host
-escortshotsexy.com: did not receive HSTS header
+escortshotsexy.com: could not connect to host
escotour.com: did not receive HSTS header
escueladewordpress.com: did not receive HSTS header
escxtra.com: did not receive HSTS header
esec.rs: did not receive HSTS header
eseth.de: did not receive HSTS header
-esh.ink: could not connect to host
eshepperd.com: did not receive HSTS header
+eshobe.com: did not receive HSTS header
eshtapay.com: could not connect to host
esibun.net: could not connect to host
esipublications.com: did not receive HSTS header
esko.bar: could not connect to host
esln.org: did not receive HSTS header
-esmoney.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-esmoney.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esmincg2t1.com: could not connect to host
+esmoney.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+esmoney.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
esn-ypci.com: did not receive HSTS header
esocweb.com: could not connect to host
esoterik.link: could not connect to host
esp-berlin.de: could not connect to host
-esp-desarrolladores.com: could not connect to host
+esp-desarrolladores.com: did not receive HSTS header
esp.community: could not connect to host
esp8285.store: could not connect to host
+espacecuisine.ca: did not receive HSTS header
espacemontmorency.com: did not receive HSTS header
+espacioantiguo.com: could not connect to host
+espanolseguros.com: did not receive HSTS header
especificosba.com.mx: could not connect to host
+espenandersen.no: did not receive HSTS header
+esphigmenou.gr: did not receive HSTS header
espo.com.ua: did not receive HSTS header
espra.com: could not connect to host
espressivo.com.br: did not receive HSTS header
esprit-cloture.fr: did not receive HSTS header
+esquisse.fr: did not receive HSTS header
esquonic.com: could not connect to host
esrs.gov: could not connect to host
ess-cert.ru: did not receive HSTS header
-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
-essca.fr: max-age too low: 0
essenceofvitalitydetox.com: could not connect to host
essencesdeprana.org: did not receive HSTS header
essential12.com: could not connect to host
@@ -6239,40 +7563,50 @@ 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
+estoniantrade.ee: did not receive HSTS header
estudio21pattern.com: could not connect to host
estudioamazonico.com: could not connect to host
+estudiserradal.com: did not receive HSTS header
+esw00.com: could not connect to host
+esw06.com: could not connect to host
+esw07.com: could not connect to host
+esw08.com: could not connect to host
+esw09.com: could not connect to host
+eswap.cz: could not connect to host
et-buchholz.de: could not connect to host
-et180.com: could not connect to host
+et180.com: did not receive HSTS header
+etajerka-spb.ru: could not connect to host
etalent.net: did not receive HSTS header
etangs-magazine.com: could not connect to host
etaoinwu.tk: could not connect to host
-etath.com: could not connect to host
+etaxi.tn: did not receive HSTS header
etdonline.co.uk: did not receive HSTS header
eteapparel.com: did not receive HSTS header
-etenendrinken.nu: did not receive HSTS header
-eternalsymbols.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+etenendrinken.nu: could not connect to host
+eternalflame.cn: could not connect to host
eternitylove.us: could not connect to host
eth9.net: could not connect to host
+ethaligan.fr: could not connect to host
ethandelany.me: could not connect to host
ethanfaust.com: did not receive HSTS header
ethantskinner.com: did not receive HSTS header
ether.school: could not connect to host
etherderbies.com: could not connect to host
etheria-software.tk: did not receive HSTS header
-etherpad.fr: did not receive HSTS header
-ethicalexploiting.com: could not connect to host
+etherpad.fr: could not connect to host
+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
ethosinfo.com: could not connect to host
etidni.help: did not receive HSTS header
+etikus-hacker.hu: could not connect to host
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
+etrolleybizstore.com: could not connect to host
ets2mp.de: did not receive HSTS header
etsysecure.com: could not connect to host
ettebiz.com: max-age too low: 0
@@ -6280,6 +7614,7 @@ etula.ga: did not receive HSTS header
etula.me: could not connect to host
etys.no: did not receive HSTS header
etzi.myds.me: could not connect to host
+eu-gamers.com: could not connect to host
euanbaines.com: did not receive HSTS header
eucl3d.com: could not connect to host
euclideanpostulates.xyz: could not connect to host
@@ -6295,10 +7630,11 @@ euph.eu: could not connect to host
eupho.me: could not connect to host
eupresidency2018.com: could not connect to host
euren.se: could not connect to host
+eurheilu.com: did not receive HSTS header
euro-servers.de: could not connect to host
eurocamping.se: could not connect to host
-eurocomcompany.cz: could not connect to host
euroescortguide.com: could not connect to host
+euroman.ga: could not connect to host
europapier.ba: did not receive HSTS header
europapier.bg: did not receive HSTS header
europapier.com: did not receive HSTS header
@@ -6314,31 +7650,37 @@ euroservice.com.gr: did not receive HSTS header
euroshop24.net: could not connect to host
eurospecautowerks.com: did not receive HSTS header
eurostrategy.vn.ua: could not connect to host
-eurotime.ua: could not connect to host
+euteamo.cn: could not connect to host
eutram.com: did not receive HSTS header
euvo.tk: could not connect to host
+evaartinger.de: did not receive HSTS header
evades.io: did not receive HSTS header
evadifranco.com: did not receive HSTS header
-evafojtova.cz: did not receive HSTS header
evanhandgraaf.nl: did not receive HSTS header
evankurniawan.com: did not receive HSTS header
evanreev.es: could not connect to host
evansville-wy.gov: could not connect to host
evantage.org: could not connect to host
-evasion-energie.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+evapp.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 :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
evdenevenakliyatankara.pw: could not connect to host
evecalm.com: did not receive HSTS header
evedanjailbreak.com: could not connect to host
evegalaxy.net: could not connect to host
+evemarketer.com: did not receive HSTS header
evenstar-gaming.com: could not connect to host
+evenstargames.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
+evernaut.com: 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
+everydaygary.com: could not connect to host
+everyex.com: could not connect to host
+everygayporn.com: did not receive HSTS header
everygayporn.xyz: could not connect to host
everylab.org: could not connect to host
everymove.org: could not connect to host
@@ -6347,7 +7689,7 @@ everytruckjob.com: did not receive HSTS header
eveseat.net: could not connect to host
eveshaiwu.com: could not connect to host
evi.be: did not receive HSTS header
-evilarmy.com: could not connect to host
+evilarmy.com: did not receive HSTS header
evilbeasts.ru: could not connect to host
evilcult.me: did not receive HSTS header
evilnerd.de: did not receive HSTS header
@@ -6357,60 +7699,68 @@ evilsite.cf: 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
+evitacion.com: did not receive HSTS header
evites.me: could not connect to host
evokepk.com: could not connect to host
-evoludis.net: did not receive HSTS header
+evoludis.net: could not connect to host
evolutionexpeditions.com: did not receive HSTS header
+evolutionsmedicalspa.com: did not receive HSTS header
evomon.com: could not connect to host
evonews.com: did not receive HSTS header
evossd.tk: could not connect to host
evowl.com: could not connect to host
ewallet-optimizer.com: did not receive HSTS header
+ewe2.ninja: could not connect to host
ewex.org: could not connect to host
ewizmo.com: did not receive HSTS header
+ewok.io: could not connect to host
eworksmedia.com: could not connect to host
ewuchuan.com: could not connect to host
-exampleessays.com: could not connect to host
-examplesu.com: could not connect to host
-excelgum.ca: did not receive HSTS header
+example.sc: did not receive HSTS header
+examplesu.com: did not receive HSTS header
+exceed.global: could not connect to host
+excel-utbildning.nu: did not receive HSTS header
+excelgum.ca: could not connect to host
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
exchangeworks.co: did not receive HSTS header
-exclusivedesignz.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+exclusivedesignz.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
exebouncycastles.co.uk: did not receive HSTS header
+exehack.net: could not connect to host
exembit.com: did not receive HSTS header
exfiles.cz: could not connect to host
-exgaywatch.com: could not connect to host
exgravitus.com: could not connect to host
exhaledayspa.com.au: did not receive HSTS header
exno.co: could not connect to host
+exnovin.co: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
exoplatform.com: did not receive HSTS header
-exoticads.com: could not connect to host
+exousiakaidunamis.pw: could not connect to host
exousiakaidunamis.xyz: could not connect to host
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
+expertnews.info: did not receive HSTS header
experts-en-gestion.fr: did not receive HSTS header
exploflex.com.br: could not connect to host
-exploration.ga: could not connect to host
exploravacations.in: could not connect to host
-expo-designers.com: did not receive HSTS header
-expokohler.com: did not receive HSTS header
-exponentialnews.net: could not connect to host
+expo-designers.com: could not connect to host
+expokohler.com: could not connect to host
+expoort.co.uk: could not connect to host
expoort.com.br: could not connect to host
exporo.de: did not receive HSTS header
expoundite.net: did not receive HSTS header
expowerhps.com: did not receive HSTS header
expressfinance.co.za: did not receive HSTS header
-extendwings.com: could not connect to host
+expressglobal.org: could not connect to host
exteriorservices.io: could not connect to host
+extmatrix.com: did not receive HSTS header
extramoney.cash: could not connect to host
+extrapagetab.com: could not connect to host
extrathemeshowcase.net: could not connect to host
-extratorrent.cool: did not receive HSTS header
extratorrent.fyi: could not connect to host
extratorrent.red: could not connect to host
extratorrent.world: could not connect to host
@@ -6418,31 +7768,44 @@ extratorrentlive.xyz: could not connect to host
extratorrents.tech: could not connect to host
extremenetworking.net: could not connect to host
extremeservicesandrestoration.com: could not connect to host
+exultcosmetics.co.uk: did not receive HSTS header
+exxo.tk: did not receive HSTS header
exy.pw: could not connect to host
+eyasc.nl: could not connect to host
eyedarts.com: did not receive HSTS header
eyeglassuniverse.com: did not receive HSTS header
+eyejobs.com.au: did not receive HSTS header
+eyemagic.net: 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
+eyrid.com: could not connect to host
eytosh.net: could not connect to host
+eyyit.com: could not connect to host
+eyyubyilmaz.com: could not connect to host
ez.fi: could not connect to host
-ezgamble.com: did not receive HSTS header
+ezgamble.com: could not connect to host
ezimoeko.net: could not connect to host
ezmod.org: could not connect to host
eznfe.com: could not connect to host
ezorgportaal.nl: could not connect to host
+ezpzdelivery.com: could not connect to host
ezrefurb.co.uk: did not receive HSTS header
eztv.ch: did not receive HSTS header
+ezzhole.net: could not connect to host
+f-be.com: did not receive HSTS header
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
f2f.cash: could not connect to host
f42.net: could not connect to host
+f5.hk: did not receive HSTS header
f5movies.top: could not connect to host
+f5w.de: did not receive HSTS header
+f6957.com: could not connect to host
f8842.com: could not connect to host
-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
@@ -6450,14 +7813,15 @@ fabian-kluge.de: could not connect to host
fabian-koeppen.de: did not receive HSTS header
fabianasantiago.com: could not connect to host
fabianfischer.de: did not receive HSTS header
-fabianmunoz.com: did not receive HSTS header
+fabianmunoz.com: could not connect to host
fabienbaker.com: could not connect to host
-fabiocicerchia.it: could not connect to host
+fabiocicerchia.it: 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
+faccess.it: did not receive HSTS header
facebook.ax: could not connect to host
facebooktsukaikata.net: did not receive HSTS header
facepalmsecurity.com: could not connect to host
@@ -6465,34 +7829,43 @@ 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
+facingbipolar.com: did not receive HSTS header
+factcool.com: did not receive HSTS header
factorable.net: did not receive HSTS header
factoringsolutions.co.uk: did not receive HSTS header
factorygw.com: did not receive HSTS header
factorypartsdirect.com: could not connect to host
-factureenlinea.com: could not connect to host
fadednet.com: could not connect to host
fadeev.legal: did not receive HSTS header
-fadilus.com: did not receive HSTS header
fads-center.online: could not connect to host
+faerb.it: could not connect to host
+faerie-art.com: did not receive HSTS header
faeriecakes.be: could not connect to host
faesser.com: did not receive HSTS header
+fafarishoptrading.com: could not connect to host
fafatiger.com: could not connect to host
fag.wtf: could not connect to host
-fahmed.de: did not receive HSTS header
-failproof.be: max-age too low: 604800
+fahnen-fanwelt.de: did not receive HSTS header
+failoverplan.it: could not connect to host
faircom.co.za: did not receive HSTS header
fairkey.dk: did not receive HSTS header
+fairleighcrafty.com: could not connect to host
fairlyoddtreasures.com: did not receive HSTS header
faisalshuvo.com: did not receive HSTS header
-faizan.net: could not connect to host
-faizan.xyz: did not receive HSTS header
+faithmissionaries.com: did not receive HSTS header
+faizan.net: did not receive HSTS header
+faizan.xyz: could not connect to host
+fakeapple.nl: could not connect to host
fakeletters.org: could not connect to host
faktura.pl: did not receive HSTS header
falaland.com: did not receive HSTS header
+falce.in: could not connect to host
falcibiosystems.org: did not receive HSTS header
+falcona.io: could not connect to host
falconwiz.com: did not receive HSTS header
falkp.no: did not receive HSTS header
falkus.net: could not connect to host
+falldennismarketing.com: did not receive HSTS header
fallenangeldrinks.eu: could not connect to host
fallenangelspirits.uk: could not connect to host
fallingapart.de: could not connect to host
@@ -6503,26 +7876,27 @@ fame-agency.net: could not connect to host
famep.gov: could not connect to host
famer.me: could not connect to host
fameuxhosting.co.uk: could not connect to host
+familie-mischak.de: could not connect to host
familie-sander.rocks: max-age too low: 600
familie-sprink.de: did not receive HSTS header
familie-zimmermann.at: could not connect to host
-familiegrottendieck.de: max-age too low: 7776000
+familledessaint.fr: could not connect to host
familletouret.fr: did not receive HSTS header
famio.cn: could not connect to host
fander.it: could not connect to host
-fanflow.com: could not connect to host
+fanflow.com: did not receive HSTS header
fansmade.art: could not connect to host
fant.dk: did not receive HSTS header
fantasticgardenersmelbourne.com.au: did not receive HSTS header
fantasticpestcontrolmelbourne.com.au: did not receive HSTS header
-fantasycdn.com: could not connect to host
-fantasydrop.com: could not connect to host
-fantasyfootballpundit.com: did not receive HSTS header
+fantasy-judo.com: did not receive HSTS header
fantasyprojections.com: could not connect to host
+fantasysportsnews.org: did not receive HSTS header
fanvoice.com: could not connect to host
fanyl.cn: could not connect to host
+fanzhencha.com: could not connect to host
fap.no: could not connect to host
-faq.lookout.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+faq.lookout.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
faraonplay5.com: could not connect to host
faraonplay7.com: could not connect to host
faraonplay8.com: could not connect to host
@@ -6532,83 +7906,108 @@ farkas.bz: did not receive HSTS header
farm24.co.uk: could not connect to host
farmacia.pt: did not receive HSTS header
farmaciaformula.com.br: could not connect to host
+farmacialaboratorio.it: did not receive HSTS header
farmaciamedicom.com.br: could not connect to host
-farmmaximizer.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+farmmaximizer.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+farrel-f.cf: could not connect to host
farrel-f.id: could not connect to host
+farrel-f.tk: could not connect to host
+farrelf.blog: could not connect to host
+farvisun.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+fascia.fit: did not receive HSTS header
fashion.net: did not receive HSTS header
-fashion4ever.pl: could not connect to host
+fashion4ever.pl: did not receive HSTS header
fashioncare.cz: did not receive HSTS header
-fashiondays.bg: max-age too low: 0
-fashiondays.hu: max-age too low: 0
-fashiondays.ro: max-age too low: 0
fashionholic.my: did not receive HSTS header
fashionoutfits24.com: did not receive HSTS header
fasset.jp: could not connect to host
fastaim.de: could not connect to host
fastbackmbg.be: could not connect to host
fastbackmbm.be: could not connect to host
-fastcomcorp.net: could not connect to host
+fastcomcorp.net: did not receive HSTS header
fastconfirm.com: could not connect to host
fastcp.top: could not connect to host
+fastlike.co: could not connect to host
fastograph.com: could not connect to host
fastopen.ml: could not connect to host
+fastrevision.com: could not connect to host
fastwebsites.com.br: did not receive HSTS header
fatdoge.cn: did not receive HSTS header
fatgeekflix.net: could not connect to host
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
+fau8.ml: did not receive HSTS header
+faui2k17.de: could not connect to host
+fauvettes.be: could not connect to host
+favorit.club: could not connect to host
fawkex.me: did not receive HSTS header
faxite.com: did not receive HSTS header
faxreader.net: could not connect to host
fayolle.info: did not receive HSTS header
+fbcopy.com: could not connect to host
fbf.gov: did not receive HSTS header
-fbi.pw: did not receive HSTS header
+fbi.pw: could not connect to host
+fboerman.nl: 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
+fccarbon.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
+fdn.one: could not connect to host
+fdos.me: could not connect to host
+fdsys.gov: could not connect to host
fdt.name: did not receive HSTS header
feard.space: could not connect to host
+fearghus.org: could not connect to host
+fearsomegaming.com: did not receive HSTS header
fecik.sk: did not receive HSTS header
fed51.com: did not receive HSTS header
fedbizopps.gov: could not connect to host
fedemo.top: did not receive HSTS header
federalregister.gov: did not receive HSTS header
+federicomigliavacca.it: could not connect to host
+federicoparty.it: could not connect to host
fedn.it: could not connect to host
fedo.moe: could not connect to host
-fee-hosting.com: max-age too low: 0
+fedrtc.org: could not connect to host
+fee-hosting.com: did not receive HSTS header
feedstringer.com: could not connect to host
feedthebot.com: did not receive HSTS header
+feeg-wage.gc.ca: could not connect to host
feegg.com.br: could not connect to host
feeriedesign-event.com: could not connect to host
+feestbierfusten.nl: could not connect to host
fefore.com: did not receive HSTS header
+feg-wge.gc.ca: could not connect to host
fegans.org.uk: did not receive HSTS header
fehnladen.de: did not receive HSTS header
feirlane.org: could not connect to host
feist.io: could not connect to host
feitobrasilcosmeticos.com.br: did not receive HSTS header
feizhujianzhi.com: did not receive HSTS header
+feldmann-stachelscheid.de: did not receive HSTS header
felger-times.fr: could not connect to host
felgitscher.xyz: max-age too low: 2592000
felisslovakia.sk: did not receive HSTS header
feliwyn.fr: did not receive HSTS header
felixhefner.de: did not receive HSTS header
+felixklein.com: did not receive HSTS header
felixrr.pro: could not connect to host
femaledom.xyz: could not connect to host
femdombbw.com: could not connect to host
+femiluna.com: could not connect to host
feminism.lgbt: could not connect to host
feminists.co: could not connect to host
femradio.es: did not receive HSTS header
-feng-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-feng-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+fence-stlouis.com: could not connect to host
+feng-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+feng-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
fengyadi.com: could not connect to host
fenixhost.com.br: could not connect to host
fenno.net: could not connect to host
@@ -6616,6 +8015,7 @@ fensdorf.de: did not receive HSTS header
fensterbau-mutscheller.de: could not connect to host
fenteo.com: could not connect to host
feras-alhajjaji.com: could not connect to host
+fergusoncastle.com: did not receive HSTS header
feriahuamantla.com: could not connect to host
ferienwohnungen-lastminute.de: could not connect to host
fermanacuratampaparts.com: could not connect to host
@@ -6624,29 +8024,35 @@ fernseher-kauf.de: could not connect to host
ferrolatino.com: could not connect to host
feschiyan.com: could not connect to host
festember.com: did not receive HSTS header
+festicle.com: did not receive HSTS header
festival.house: could not connect to host
festivalxdentro.com: did not receive HSTS header
festrip.com: could not connect to host
-festx.co.za: did not receive HSTS header
fetclips.se: could not connect to host
-fetlife.com: could not connect to host
-fettbrot.tk: did not receive HSTS header
+fettbrot.tk: could not connect to host
feudaltactics.com: could not connect to host
feuerwehr-dachaufsetzer.de: could not connect to host
-feuerwehr-oberkotzau.de: could not connect to host
feuerwehrbadwurzach.de: did not receive HSTS header
fexmen.com: did not receive HSTS header
ff-bg.xyz: could not connect to host
+ff-getzersdorf.at: did not receive HSTS header
+ff6957.com: could not connect to host
+ffb.gov: could not connect to host
ffbans.org: did not receive HSTS header
+ffh.me: could not connect to host
ffl123.com: did not receive HSTS header
+fgdc.gov: did not receive HSTS header
fgequipamentos.com.br: did not receive HSTS header
fhbnutrition.com: did not receive HSTS header
fhg90.com: could not connect to host
+fhmkh.cn: could not connect to host
fhsseniormens.club: could not connect to host
fi-sanki.co.jp: could not connect to host
fialat.cz: could not connect to host
+fibabanka.com.tr: did not receive HSTS header
ficklenote.net: did not receive HSTS header
fics-twosigma.com: could not connect to host
+fid-elite.ch: did not receive HSTS header
fid.to: could not connect to host
fidel.uk: did not receive HSTS header
fideleslaici.com: did not receive HSTS header
@@ -6654,21 +8060,21 @@ fidufinance.com: did not receive HSTS header
fieldclockapp.com: did not receive HSTS header
fieldtalk.co.uk: could not connect to host
fiendishmasterplan.com: did not receive HSTS header
-fierman.eu: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-fierman.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-fierman.us: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-fiestagenial.com: could not connect to host
+fierman.eu: could not connect to host
+fierman.net: could not connect to host
+fierman.us: could not connect to host
+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]
+figuurzagers.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
fiissh.tech: did not receive HSTS header
-fiksel.info: could not connect to host
+fikriwildannugraha.com: did not receive HSTS header
+fiksel.info: did not receive HSTS header
fikt.space: could not connect to host
-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
@@ -6677,17 +8083,22 @@ fileon.com: could not connect to host
filesense.com: could not connect to host
filewall.de: did not receive HSTS header
filey.co.uk: did not receive HSTS header
+filezilla.cn: did not receive HSTS header
+filhin.es: did not receive HSTS header
filhomes.ph: could not connect to host
fili.org: could not connect to host
filiosoft.cloud: did not receive HSTS header
+filleritemsindia.com: could not connect to host
fillitupchallenge.eu: did not receive HSTS header
fillmysuitca.se: did not receive HSTS header
film-storyboards.com: did not receive HSTS header
film.photography: did not receive HSTS header
-film.photos: did not receive HSTS header
-filmatiporno.xxx: could not connect to host
+film.photos: could not connect to host
filme-online.eu.com: did not receive HSTS header
+filmesonline.online: did not receive HSTS header
filmesubtitrate2017.online: could not connect to host
+filmovizija.mk: did not receive HSTS header
+filmserver.de: did not receive HSTS header
filo.xyz: did not receive HSTS header
filoitoupediou.gr: did not receive HSTS header
filterflasche-kaufen.de: could not connect to host
@@ -6698,16 +8109,21 @@ financewithcromulent.com: could not connect to host
financier.io: did not receive HSTS header
financieringsportaal.nl: did not receive HSTS header
finanzkontor.net: could not connect to host
+finchnest.co.uk: could not connect to host
find-your-happy-place.de: did not receive HSTS header
+findcarspecs.com: did not receive HSTS header
+findcheapmusic.com: did not receive HSTS header
+findhoustonseniorcare.com: max-age too low: 300
findigo.fish: could not connect to host
-findingmyname.com: max-age too low: 2629746
findmybottleshop.com.au: could not connect to host
+findmynudes.com: could not connect to host
findthere.net: could not connect to host
findtutorsnearme.com: did not receive HSTS header
findyour.diet: could not connect to host
fine-services.paris: could not connect to host
-finer04.pw: did not receive HSTS header
-finewineonline.com: could not connect to host
+finecocoin.io: did not receive HSTS header
+finer04.pw: could not connect to host
+finfev.de: did not receive HSTS header
fingent.com: did not receive HSTS header
fingerscrossed.style: could not connect to host
finiteheap.com: did not receive HSTS header
@@ -6722,36 +8138,46 @@ 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: did not receive HSTS header
+firechip.cc: could not connect to host
firefall.rocks: could not connect to host
+firefly-iii.org: did not receive HSTS header
firehost.com: did not receive HSTS header
fireinthedeep.com: could not connect to host
firekoi.com: did not receive HSTS header
firemail.io: could not connect to host
-fireorbit.de: did not receive HSTS header
firepeak.ru: could not connect to host
+fireplex.co.uk: could not connect to host
+firewallconsultants.com: did not receive HSTS header
fireworkcoaching.com: did not receive HSTS header
firexarxa.de: could not connect to host
firmale.com: could not connect to host
firmenverzeichnis.nu: could not connect to host
-firmware.science: did not receive HSTS header
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
+firstinnovationltd.com: could not connect to host
firstlook.org: did not receive HSTS header
-fiscoeconti.it: did not receive HSTS header
+fischers.it: could not connect to host
+fishbattle.io: could not connect to host
+fishbattle.net: could not connect to host
fishfinders.info: did not receive HSTS header
fiskestang.com: did not receive HSTS header
+fistu.la: could not connect to host
fit4medien.de: did not receive HSTS header
fitbylo.com: could not connect to host
+fitchannel.com: did not receive HSTS header
fitea.cz: could not connect to host
-fitfitup.com: did not receive HSTS header
+fitfitup.com: max-age too low: 0
fitiapp.com: could not connect to host
+fitmeat.at: did not receive HSTS header
fitnesswerk.de: could not connect to host
fitqbe.com: did not receive HSTS header
+fitrate.site: could not connect to host
fitshop.com.br: could not connect to host
fitsw.com: did not receive HSTS header
-fiuxy.org: could not connect to host
+fiuxy.co: did not receive HSTS header
+fiuxy.me: could not connect to host
five.vn: did not receive HSTS header
fiveboosts.xyz: could not connect to host
fivestarsitters.com: did not receive HSTS header
@@ -6770,10 +8196,11 @@ fixmyglitch.com: could not connect to host
fixtectools.co.za: could not connect to host
fixthetimeline.com: could not connect to host
fixthetimeline.org: could not connect to host
+fjharcu.com: could not connect to host
fjruiz.es: could not connect to host
+fjugstad.com: could not connect to host
+fkcdn.de: could not connect to host
fkcovering.be: could not connect to host
-fl0000.com: max-age too low: 129600
-fl010.com: max-age too low: 129600
fl0111.com: did not receive HSTS header
fl0222.com: did not receive HSTS header
fl0333.com: did not receive HSTS header
@@ -6784,8 +8211,8 @@ fl0888.com: did not receive HSTS header
fl0999.com: did not receive HSTS header
flacandmp3.ml: could not connect to host
flagfic.com: did not receive HSTS header
+flagriculture.gov: 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
flajshans.cz: did not receive HSTS header
flam.io: could not connect to host
@@ -6795,50 +8222,64 @@ flamingkeys.com.au: could not connect to host
flamingogroup.vn: did not receive HSTS header
flareon.net: could not connect to host
flaretechnologies.io: could not connect to host
+flasaki.gr: could not connect to host
flashbaggie.com: could not connect to host
-flatbellyreview.com: max-age too low: 2592000
flatlandchurch.com: did not receive HSTS header
flawcheck.com: could not connect to host
flc111.com: did not receive HSTS header
-flc999.com: max-age too low: 129600
fleamarketgoods.com: did not receive HSTS header
flemingtonaudiparts.com: could not connect to host
-flesters.com.br: did not receive HSTS header
+flesters.com.br: 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
flextribly.xyz: could not connect to host
+flexve.com: could not connect to host
fliexer.com: could not connect to host
flightschoolusa.com: did not receive HSTS header
+fliio.com: did not receive HSTS header
flikmsg.co: could not connect to host
fling.dating: could not connect to host
flipagram.com: did not receive HSTS header
flipbell.com: did not receive HSTS header
flipkey.com: did not receive HSTS header
flirchi.com: did not receive HSTS header
+flirt-norden.de: did not receive HSTS header
+flirtfaces.de: did not receive HSTS header
flirtycourts.com: could not connect to host
+flixflex.tk: could not connect to host
flixhaven.net: did not receive HSTS header
+flixports.com: could not connect to host
flixtor.net: could not connect to host
-flkrpxl.com: max-age too low: 86400
+floj.tech: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+floless.co.uk: did not receive HSTS header
+flomeyer.de: could not connect to host
flood.io: did not receive HSTS header
floorball-haunwoehr.de: did not receive HSTS header
flopy.club: could not connect to host
-florafiora.com.br: did not receive HSTS header
-florian-lillpopp.de: did not receive HSTS header
+florent-tatard.fr: did not receive HSTS header
+florian-lillpopp.de: could not connect to host
florian-schlachter.de: did not receive HSTS header
florian2833z.de: could not connect to host
-florianlillpopp.de: did not receive HSTS header
-floridaderi.ru: did not receive HSTS header
+florianbecker.it: did not receive HSTS header
+florianlillpopp.de: max-age too low: 10
+floridaagriculture.gov: could not connect to host
+floridaconsumerhelp.gov: could not connect to host
+floridaderi.ru: could not connect to host
+floridaengineering.org: could not connect to host
floridaescapes.co.uk: did not receive HSTS header
-florinapp.com: could not connect to host
+florinapp.com: did not receive HSTS header
florispoort.nl: did not receive HSTS header
floro.me: did not receive HSTS header
+flosch.at: could not connect to host
floseed.fr: could not connect to host
flosserver.de: could not connect to host
floth.at: could not connect to host
flouartistique.ch: could not connect to host
flow.pe: could not connect to host
+flowair24.ru: could not connect to host
+flowchats.me: could not connect to host
flowcount.xyz: could not connect to host
flowerandplant.org: did not receive HSTS header
flowersandclouds.com: could not connect to host
@@ -6846,17 +8287,19 @@ floweslawncare.com: could not connect to host
flowlo.me: could not connect to host
flox.io: could not connect to host
floydm.com: did not receive HSTS header
+flucky.xyz: could not connect to host
flucto.com: did not receive HSTS header
flue-ducting.co.uk: did not receive HSTS header
flugplatz-edvc.de: could not connect to host
flugsportvereinigungcelle.de: did not receive HSTS header
flugstadplasticsurgery.com: did not receive HSTS header
fluidojobs.com: could not connect to host
-fluitbeurt.nl: could not connect to host
flukethoughts.com: did not receive HSTS header
+flurp.de: did not receive HSTS header
flurrybridge.com: could not connect to host
flushstudios.com: did not receive HSTS header
flux.by: did not receive HSTS header
+fluxent.de: could not connect to host
flyaces.com: could not connect to host
flyawayantennas.com: did not receive HSTS header
flybunnyfly.dk: did not receive HSTS header
@@ -6865,6 +8308,7 @@ flyingdoggy.net: could not connect to host
flyingspaghettimonsterdonationsfund.nl: could not connect to host
flyingyoung.top: could not connect to host
flyshe.co.uk: did not receive HSTS header
+flysnax.com: could not connect to host
flyspace.ga: did not receive HSTS header
flyspace.ml: did not receive HSTS header
flyss.net: could not connect to host
@@ -6879,196 +8323,235 @@ fmstr.ml: could not connect to host
fnb-griffinonline.com: did not receive HSTS header
fnfpt.co.uk: could not connect to host
fniephaus.com: did not receive HSTS header
-fnncat.com: did not receive HSTS header
+fnncat.com: could not connect to host
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
fognini-depablo.eu: could not connect to host
fohome.ca: could not connect to host
-fokan.ch: did not receive HSTS header
-fol.tf: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+fokos.de: did not receive HSTS header
+fol.tf: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
foliekonsulenten.dk: did not receive HSTS header
folioapp.io: could not connect to host
folkfests.org: did not receive HSTS header
+followersya.com: did not receive HSTS header
folwarkwiazy.pl: could not connect to host
fondanastasia.ru: did not receive HSTS header
+fondsdiscountbroker.de: 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
fontawesome.com: did not receive HSTS header
foo: could not connect to host
food4health.guide: could not connect to host
-foodacademy.capetown: max-age too low: 43200
foodbuddy.ch: could not connect to host
-foodcare.ml: could not connect to host
foodcowgirls.com: could not connect to host
-foodiebox.no: did not receive HSTS header
+foodev.de: could not connect to host
+foodiebox.no: could not connect to host
foodies.my: did not receive HSTS header
foodievenues.com: could not connect to host
-foodplantengineering.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+foodplantengineering.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
foodsafetyworkinggroup.gov: could not connect to host
-foodserve.in: did not receive HSTS header
+foodserve.in: could not connect to host
+football.de: did not receive HSTS header
footballmapped.com: could not connect to host
footlegende.fr: did not receive HSTS header
+footloose.co.uk: did not receive HSTS header
forafifty.co.za: could not connect to host
foraje-profesionale.ro: could not connect to host
forbid.life: could not connect to host
forbiddenhistory.info: could not connect to host
-forbook.net: did not receive HSTS header
+forbook.net: could not connect to host
forcamp.ga: could not connect to host
force-des-maths.com: did not receive HSTS header
+forces.army: could not connect to host
fordbydesign.com: could not connect to host
-fordshop.by: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+fordshop.by: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
foreignexchangeresource.com: did not receive HSTS header
+foresdon.jp: did not receive HSTS header
forestfinance.fr: did not receive HSTS header
+forever.cat: could not connect to host
foreveralone.io: could not connect to host
foreveryoung.pt: did not receive HSTS header
forex-dan.com: did not receive HSTS header
forex-plus.com: did not receive HSTS header
forexsignals7.com: could not connect to host
forgix.com: could not connect to host
-forglemmigej.net: could not connect to host
forlagetmarx.dk: did not receive HSTS header
formadmin.com: 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
+formbetter.com: could not connect to host
+formforger.com: could not connect to host
formkiq.com: could not connect to host
formula.cf: could not connect to host
foro.io: could not connect to host
+foroaranda.com: did not receive HSTS header
forpc.us: did not receive HSTS header
forplanetsake.com: could not connect to host
forplayers.pl: could not connect to host
-forquilhinhanoticias.com.br: could not connect to host
+forquilhinhanoticias.com.br: did not receive HSTS header
+forsakringsarkivet.se: could not connect to host
forsyththeatre.com: could not connect to host
-fort.eu: max-age too low: 0
+fortesanshop.it: could not connect to host
+fortknox.cz: did not receive HSTS header
fortnitemagic.ga: 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]
+fortuna-s.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
fortworth.ch: did not receive HSTS header
forty2.eu: did not receive HSTS header
forum.linode.com: did not receive HSTS header
-forum3.ru: could not connect to host
+forum3.ru: did not receive HSTS header
forumjuridico.org: did not receive HSTS header
forus.be: could not connect to host
+foryouandyourcustomers.com: max-age too low: 86400
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
-fossguard.com: did not receive HSTS header
+fossguard.com: could not connect to host
fotiu.com: could not connect to host
foto-pro.by: did not receive HSTS header
-fotoallerlei.com: did not receive HSTS header
fotocerita.net: could not connect to host
fotogiraffe.ru: did not receive HSTS header
fotografosexpertos.com: did not receive HSTS header
fotopasja.info: could not connect to host
-fotostravestisbr.com: could not connect to host
+foundationspecialisteast.com: could not connect to host
fourchin.net: could not connect to host
+fourdesignstudio.com: could not connect to host
fourwheelpartloanssimple.com: did not receive HSTS header
+foutrelis.com: did not receive HSTS header
+foxbnc.co.uk: did not receive HSTS header
+foxbnc.uk: could not connect to host
+foxdev.co: did not receive HSTS header
foxdev.io: could not connect to host
-foxelbox.com: did not receive HSTS header
+foxelbox.com: could not connect to host
foxes.no: could not connect to host
foxhound.com.br: could not connect to host
+foxing.club: 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
foxterrier.com.br: could not connect to host
-foxtrot.pw: did not receive HSTS header
+foxtrot.pw: could not connect to host
foxyslut.com: could not connect to host
foyale.io: could not connect to host
+foyer-laique-segre.com: did not receive HSTS header
fpki.sh: could not connect to host
+fptravelling.com: did not receive HSTS header
+fpvr.org: did not receive HSTS header
fq.mk: did not receive HSTS header
fr0zenbits.io: could not connect to host
fr33d0m.link: could not connect to host
fr33tux.org: did not receive HSTS header
fragilesolar.cf: could not connect to host
-fragnic.com: could not connect to host
+fragnic.com: did not receive HSTS header
+fragrances.bg: did not receive HSTS header
fralef.me: did not receive HSTS header
francesca-and-lucas.com: did not receive HSTS header
francescoservida.ch: did not receive HSTS header
francevpn.xyz: could not connect to host
+francois-gaillard.fr: did not receive HSTS header
francois-vidit.com: did not receive HSTS header
-francoise-paviot.com: could not connect to host
-frangor.info: could not connect to host
+frangor.info: did not receive HSTS header
+frank.fyi: did not receive HSTS header
+franke-chemie.de: could not connect to host
frankedier.com: did not receive HSTS header
frankfurt-am-start.de: did not receive HSTS header
+frankfurt-coworking.de: did not receive HSTS header
frankhaala.com: could not connect to host
+franklincountyflorida.gov: could not connect to host
franklinhua.com: could not connect to host
-fransallen.com: did not receive HSTS header
+frankwei.xyz: did not receive HSTS header
+fransallen.com: could not connect to host
franta.biz: did not receive HSTS header
franta.email: did not receive HSTS header
+franzt.de: could not connect to host
franzt.ovh: could not connect to host
+frasch-umzuege.de: max-age too low: 0
frasesaniversarios.com.br: did not receive HSTS header
frasesdeamizade.pt: could not connect to host
frasys.cloud: max-age too low: 2592000
frasys.io: could not connect to host
+frau-inge.de: did not receive HSTS header
fraudempire.com: could not connect to host
+fraurichter.net: could not connect to host
freakyamazing.com: could not connect to host
-freakyaweso.me: did not receive HSTS header
-freakyawesome.blog: max-age too low: 86400
-freakyawesome.club: did not receive HSTS header
-freakyawesome.co: did not receive HSTS header
+freakyawesome.agency: could not connect to host
+freakyawesome.art: could not connect to host
+freakyawesome.band: could not connect to host
+freakyawesome.business: could not connect to host
+freakyawesome.ca: could not connect to host
+freakyawesome.club: could not connect to host
+freakyawesome.co: could not connect to host
+freakyawesome.co.uk: could not connect to host
freakyawesome.com: could not connect to host
-freakyawesome.company: did not receive HSTS header
-freakyawesome.dance: did not receive HSTS header
+freakyawesome.company: could not connect to host
+freakyawesome.dance: could not connect to host
freakyawesome.design: could not connect to host
-freakyawesome.education: did not receive HSTS header
-freakyawesome.email: did not receive HSTS header
-freakyawesome.events: did not receive HSTS header
-freakyawesome.fashion: did not receive HSTS header
-freakyawesome.fitness: did not receive HSTS header
-freakyawesome.fun: did not receive HSTS header
-freakyawesome.fyi: did not receive HSTS header
-freakyawesome.games: did not receive HSTS header
-freakyawesome.guide: did not receive HSTS header
-freakyawesome.guru: did not receive HSTS header
-freakyawesome.info: did not receive HSTS header
-freakyawesome.life: did not receive HSTS header
-freakyawesome.live: did not receive HSTS header
-freakyawesome.management: did not receive HSTS header
-freakyawesome.marketing: did not receive HSTS header
-freakyawesome.me: did not receive HSTS header
-freakyawesome.media: did not receive HSTS header
-freakyawesome.network: did not receive HSTS header
-freakyawesome.news: did not receive HSTS header
-freakyawesome.online: did not receive HSTS header
-freakyawesome.photography: did not receive HSTS header
-freakyawesome.photos: did not receive HSTS header
-freakyawesome.press: did not receive HSTS header
-freakyawesome.recipes: did not receive HSTS header
-freakyawesome.rentals: did not receive HSTS header
-freakyawesome.reviews: did not receive HSTS header
-freakyawesome.science: did not receive HSTS header
-freakyawesome.services: did not receive HSTS header
-freakyawesome.shop: did not receive HSTS header
-freakyawesome.site: did not receive HSTS header
-freakyawesome.social: did not receive HSTS header
-freakyawesome.software: did not receive HSTS header
+freakyawesome.education: could not connect to host
+freakyawesome.email: could not connect to host
+freakyawesome.events: could not connect to host
+freakyawesome.fashion: could not connect to host
+freakyawesome.fitness: could not connect to host
+freakyawesome.fm: could not connect to host
+freakyawesome.fun: could not connect to host
+freakyawesome.fyi: could not connect to host
+freakyawesome.games: could not connect to host
+freakyawesome.guide: could not connect to host
+freakyawesome.guru: could not connect to host
+freakyawesome.in: could not connect to host
+freakyawesome.info: could not connect to host
+freakyawesome.io: could not connect to host
+freakyawesome.lgbt: could not connect to host
+freakyawesome.life: could not connect to host
+freakyawesome.live: could not connect to host
+freakyawesome.management: could not connect to host
+freakyawesome.marketing: could not connect to host
+freakyawesome.me: could not connect to host
+freakyawesome.media: could not connect to host
+freakyawesome.net: could not connect to host
+freakyawesome.network: could not connect to host
+freakyawesome.news: could not connect to host
+freakyawesome.online: could not connect to host
+freakyawesome.org: could not connect to host
+freakyawesome.photography: could not connect to host
+freakyawesome.photos: could not connect to host
+freakyawesome.press: could not connect to host
+freakyawesome.recipes: could not connect to host
+freakyawesome.rentals: could not connect to host
+freakyawesome.reviews: could not connect to host
+freakyawesome.science: could not connect to host
+freakyawesome.services: could not connect to host
+freakyawesome.shop: could not connect to host
+freakyawesome.site: could not connect to host
+freakyawesome.social: could not connect to host
+freakyawesome.software: could not connect to host
freakyawesome.solutions: could not connect to host
-freakyawesome.space: did not receive HSTS header
-freakyawesome.store: did not receive HSTS header
-freakyawesome.support: did not receive HSTS header
-freakyawesome.team: did not receive HSTS header
-freakyawesome.tech: did not receive HSTS header
-freakyawesome.technology: did not receive HSTS header
-freakyawesome.tips: did not receive HSTS header
-freakyawesome.today: did not receive HSTS header
-freakyawesome.tours: did not receive HSTS header
-freakyawesome.training: did not receive HSTS header
-freakyawesome.tv: did not receive HSTS header
-freakyawesome.video: did not receive HSTS header
-freakyawesome.website: did not receive HSTS header
-freakyawesome.work: did not receive HSTS header
+freakyawesome.space: could not connect to host
+freakyawesome.store: could not connect to host
+freakyawesome.support: could not connect to host
+freakyawesome.team: could not connect to host
+freakyawesome.tech: could not connect to host
+freakyawesome.technology: could not connect to host
+freakyawesome.tips: could not connect to host
+freakyawesome.today: could not connect to host
+freakyawesome.tours: could not connect to host
+freakyawesome.training: could not connect to host
+freakyawesome.tv: could not connect to host
+freakyawesome.video: could not connect to host
+freakyawesome.website: could not connect to host
+freakyawesome.work: could not connect to host
freakyawesome.world: could not connect to host
-freakyawesome.wtf: did not receive HSTS header
-freakyawesome.xyz: did not receive HSTS header
+freakyawesome.wtf: could not connect to host
+freakyawesome.xyz: could not connect to host
freakyawesome.yoga: could not connect to host
freakyawesomeblog.com: could not connect to host
freakyawesomeio.com: could not connect to host
@@ -7083,14 +8566,16 @@ freakyawesomethemes.com: could not connect to host
freakyawesomewp.com: could not connect to host
frebi.org: could not connect to host
frebib.me: could not connect to host
+freddyfazbearspizzeria.com: did not receive HSTS header
freddythechick.uk: could not connect to host
frederickalcantara.com: could not connect to host
fredliang.cn: could not connect to host
fredriksslekt.se: could not connect to host
-fredtec.ru: could not connect to host
+fredtec.ru: did not receive HSTS header
free-your-pc.com: could not connect to host
free8.xyz: could not connect to host
-freeasinlliure.org: did not receive HSTS header
+freeasinlliure.org: could not connect to host
+freeassangenow.org: did not receive HSTS header
freeben666.fr: could not connect to host
freebies.id: could not connect to host
freeblog.me: could not connect to host
@@ -7098,91 +8583,99 @@ freebookmakerbets.com.au: did not receive HSTS header
freecycleusa.com: 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
+freelance.guide: could not connect to host
freelancecollab.com: could not connect to host
freelanced.co.za: could not connect to host
freelanceshipping.com: did not receive HSTS header
freelandinnovation.com: did not receive HSTS header
freelansir.com: could not connect to host
-freemanning.de: could not connect to host
-freematthale.net: could not connect to host
-freemomhugs.org: did not receive HSTS header
+freelysurf.cf: could not connect to host
+freemanning.de: did not receive HSTS header
+freematthale.net: did not receive HSTS header
freepoints.us: could not connect to host
-freeslots.guru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+freergform.org: 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 :: .\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
+freesquare.net: could not connect to host
freethought.org.au: could not connect to host
freeutopia.org: did not receive HSTS header
freevps.us: did not receive HSTS header
+frei.social: could not connect to host
frenzel.dk: could not connect to host
freqlabs.com: did not receive HSTS header
freshfind.xyz: could not connect to host
+freshislandfish.com: did not receive HSTS header
freshkiss.com.au: did not receive HSTS header
-freshmaza.io: did not receive HSTS header
+freshmaza.io: could not connect to host
+freshpounds.com: could not connect to host
frettboard.com: did not receive HSTS header
frezbo.com: could not connect to host
-frforms.com: did not receive HSTS header
fribourgviking.net: could not connect to host
frickenate.com: could not connect to host
fridaperfumaria.com.br: could not connect to host
+fridayfoucoud.ma: could not connect to host
+friedenauer-herbstfest.de: could not connect to host
friedhelm-wolf.de: could not connect to host
friendica.ch: could not connect to host
friendlyfiregameshow.com: could not connect to host
-friller.com.au: did not receive HSTS header
-frimons.com: max-age too low: 7889238
fritteli.ch: did not receive HSTS header
+frly.de: could not connect to host
frodriguez.xyz: could not connect to host
froehlich.it: did not receive HSTS header
froggstack.de: could not connect to host
-frolov.net: could not connect to host
+frogsonamission.de: could not connect to host
+frolov.net: did not receive HSTS header
+from-the-net.com: could not connect to host
fromix.de: could not connect to host
fromlemaytoz.com: could not connect to host
+fromthemonks.com: could not connect to host
fromthesoutherncross.com: could not connect to host
front-end.dog: could not connect to host
-frontier.bet: could not connect to host
-frontierdiscount.com: did not receive HSTS header
+frontierdiscount.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
frontisme.nl: did not receive HSTS header
frontline6.com: did not receive HSTS header
frontmin.com: did not receive HSTS header
frost-ci.xyz: could not connect to host
frostbytes.net: could not connect to host
+frostednetwork.com: could not connect to host
frosty-gaming.xyz: could not connect to host
frp-roleplay.de: could not connect to host
-frprn.com: could not connect to host
-frprn.xxx: could not connect to host
frsis2017.com: could not connect to host
frugal-millennial.com: did not receive HSTS header
fruitusers.com: could not connect to host
frumious.fyi: could not connect to host
frusky.net: could not connect to host
-fs-community.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]
+fs-community.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
fs-fitness.eu: could not connect to host
fs-gamenet.de: did not receive HSTS header
-fsck.cz: could not connect to host
+fsdress.com: could not connect to host
fsf.moe: could not connect to host
fsfi.is: could not connect to host
fsinf.at: did not receive HSTS header
fsj4u.ch: did not receive HSTS header
fspphoto.com: could not connect to host
-fsradio.eu: did not receive HSTS header
+fsradio.eu: could not connect to host
fsrs.gov: could not connect to host
+fsstyle.com: could not connect to host
fstatic.io: could not connect to host
fstfy.de: could not connect to host
-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
+ftf.agency: did not receive HSTS header
ftgho.com: could not connect to host
ftpi.ml: could not connect to host
-ftv.re: could not connect to host
-fu-li88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-fu-li88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+fu-li88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+fu-li88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
fu639.top: could not connect to host
+fu898.top: could not connect to host
fuchsy.com: could not connect to host
+fuck-your-false-positive.de: could not connect to host
+fuckav.ru: could not connect to host
fuckbilibili.com: could not connect to host
fuckcf.cf: could not connect to host
fuckgfw233.org: could not connect to host
@@ -7191,33 +8684,35 @@ fuckobr.net: could not connect to host
fuckobr.org: could not connect to host
fuckobr.ru: could not connect to host
fuckobr.su: could not connect to host
+fuckup.dk: could not connect to host
fudanshi.org: could not connect to host
+fuelfirebrand.com: could not connect to host
fuelministry.com: did not receive HSTS header
fugamo.de: did not receive HSTS header
fugle.de: could not connect to host
-fuitedeau.ch: could not connect to host
fujiorganics.com: did not receive HSTS header
fukuko.biz: could not connect to host
fukuko.xyz: could not connect to host
fukuoka-cityliner.jp: did not receive HSTS header
fukushima-web.com: did not receive HSTS header
-fuli.am: max-age too low: 129600
fulilingyu.info: could not connect to host
fuliydys.com: could not connect to host
+fullhost.com: did not receive HSTS header
+fullnitrous.com: did not receive HSTS header
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
+fun25.tk: did not receive HSTS header
+fun4tomorrow.com: could not connect to host
fun9.cc: could not connect to host
fun99.cc: could not connect to host
funarena.com.ua: could not connect to host
-fundacionfranciscofiasco.org: could not connect to host
fundacionhijosdelsol.org: could not connect to host
-fundayltd.com: could not connect to host
funderburg.me: did not receive HSTS header
funerariahogardecristo.cl: did not receive HSTS header
fungame.eu: did not receive HSTS header
+fungames.com: max-age too low: 0
funi4u.com: did not receive HSTS header
funideas.org: could not connect to host
funkes-ferien.de: did not receive HSTS header
@@ -7227,13 +8722,12 @@ 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-event-hire.co.uk: could not connect to host
funtastic.ie: could not connect to host
funtimebourne.co.uk: did not receive HSTS header
fuorifuocogenova.it: could not connect to host
furaje-iasi.com: could not connect to host
furcity.me: could not connect to host
-furgetmeknot.org: 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
@@ -7241,75 +8735,82 @@ furnitureconcept.co.uk: could not connect to host
furry.agency: could not connect to host
furry.be: did not receive HSTS header
furry.zone: did not receive HSTS header
-furrybot.me: could not connect to host
+furrybot.me: did not receive HSTS header
+furrytf.club: could not connect to host
+furryyiff.site: did not receive HSTS header
furtherfood.com: did not receive HSTS header
furtivelook.com: did not receive HSTS header
-fusedrops.com: did not receive HSTS header
+fusedrops.com: could not connect to host
+fushee.com: could not connect to host
fusionmate.com: could not connect to host
fuszara.eu: could not connect to host
futa.agency: could not connect to host
+futagro.com: did not receive HSTS header
futbol11.com: did not receive HSTS header
-futbolvivo.tv: could not connect to host
-futos.de: could not connect to host
futurefire.de: could not connect to host
futurefundapp.com: could not connect to host
futurehack.io: could not connect to host
-futuresonline.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+futuresonline.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
futurestarsusa.org: did not receive HSTS header
futuretechnologi.es: could not connect to host
futureyouhealth.com: did not receive HSTS header
futuristarchitecture.com: did not receive HSTS header
+futurope.com: did not receive HSTS header
fuvelis.com: could not connect to host
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
+fwww7.com: did not receive HSTS header
+fx24.uk: could not connect to host
fxgame.online: could not connect to host
fxpig-ib.com: could not connect to host
fxwebstudio.com.au: max-age too low: 0
+fy380.com: max-age too low: 0
fyodorpi.com: did not receive HSTS header
fyol.pw: could not connect to host
+fysio123.nl: did not receive HSTS header
fysiohaenraets.nl: did not receive HSTS header
-fzhyzamt.com: could not connect to host
+fysiotherapienieuwveen.nl: did not receive HSTS header
fzn.io: did not receive HSTS header
fzslm.me: did not receive HSTS header
g-i-s.vn: could not connect to host
g-marketing.ro: could not connect to host
g-o.pl: did not receive HSTS header
g-rickroll-o.pw: could not connect to host
-g01.in.ua: could not connect to host
g1jeu.com: could not connect to host
g1s.cc: could not connect to host
g2-inc.com: max-age too low: 600
g2a.co: did not receive HSTS header
g2g.com: did not receive HSTS header
g4w.co: could not connect to host (error ignored - included regardless)
+g5.gov: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
g5led.nl: could not connect to host
g6666g.tk: could not connect to host
+g6957.com: 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
+gabehoban.com: could not connect to host
gabemack.com: did not receive HSTS header
gabethebabetv.com: could not connect to host
gabi.com.es: could not connect to host
gabi.soy: did not receive HSTS header
gabi.uno: could not connect to host
gablaxian.com: max-age too low: 2592000
-gabriele-kluge.de: could not connect to host
+gabrielkoo.com: did not receive HSTS header
gabrielsimonet.ch: could not connect to host
+gadse.games: could not connect to host
gaelleetarnaud.com: did not receive HSTS header
gafachi.com: could not connect to host
gagne-enterprises.com: did not receive HSTS header
-gaiavanderzeyp.com: could not connect to host
gaichanh.com: did not receive HSTS header
-gaichon.com: could not connect to host
gainesvillegoneaustin.org: did not receive HSTS header
-gaite.me: did not receive HSTS header
-gajas18.com: could not connect to host
+gaite.me: could not connect to host
+gakkainavi-epsilon.jp: could not connect to host
+gakkainavi-epsilon.net: could not connect to host
gakkainavi.jp: did not receive HSTS header
gakkainavi.net: did not receive HSTS header
gakkainavi4.com: could not connect to host
@@ -7320,31 +8821,31 @@ galecia.com: did not receive HSTS header
galena.io: could not connect to host
galenskap.eu: could not connect to host
galeriadobimba.com.br: could not connect to host
+galerialottus.com.br: max-age too low: 7889238
galeriart.xyz: could not connect to host
galerieautodirect.com: did not receive HSTS header
galgoafegao.com.br: could not connect to host
galgoingles.com.br: could not connect to host
galgopersa.com.br: could not connect to host
-gali.review: did not receive HSTS header
galilahiskye.com: did not receive HSTS header
galileomtz.com: did not receive HSTS header
gallery44.org: did not receive HSTS header
galoisvpn.xyz: could not connect to host
+galoscoin.nl: max-age too low: 2592000
gam3rs.de: could not connect to host
gamajo.com: did not receive HSTS header
+gambitboard.com: max-age too low: 300
gambitcloud.net: could not connect to host
gamblersgaming.eu: could not connect to host
-gamcore.com: could not connect to host
game-gentle.com: could not connect to host
-game-topic.ru: did not receive HSTS header
game.yt: could not connect to host
-game88city.com: could not connect to host
gamebits.net: did not receive HSTS header
gamecave.de: could not connect to host
-gamecdn.com: could not connect to host
+gamecdn.com: did not receive HSTS header
gamechasm.com: could not connect to host
gamefund.me: could not connect to host
-gamehacks.me: could not connect to host
+gameguardian.net: did not receive HSTS header
+gamehacks.me: did not receive HSTS header
gameharbor.eu: could not connect to host
gameink.net: did not receive HSTS header
gamek.es: could not connect to host
@@ -7365,7 +8866,6 @@ 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
-gametilt.com: could not connect to host
gametium.com: could not connect to host
gametium.es: could not connect to host
gametowndev.tk: could not connect to host
@@ -7375,21 +8875,22 @@ gamingreinvented.com: did not receive HSTS header
gamingwithcromulent.com: could not connect to host
gamishijabsyari.com: could not connect to host
gamismodelbaru.com: did not receive HSTS header
-gamoice.com: did not receive HSTS header
+gamoice.com: could not connect to host
gampenhof.de: could not connect to host
gan.wtf: could not connect to host
gandc.co: could not connect to host
gangnam-club.com: could not connect to host
gangnam-karaoke.com: did not receive HSTS header
ganhonet.com.br: did not receive HSTS header
-ganyouxuan.com: could not connect to host
ganzgraph.de: did not receive HSTS header
+gaojianli.tk: could not connect to host
gaon.network: could not connect to host
-gaphag.ddns.net: could not connect to host
gaptek.id: did not receive HSTS header
gar-nich.net: could not connect to host
garage-abri-chalet.fr: did not receive HSTS header
garage-door.pro: could not connect to host
+garage-meynard.com: could not connect to host
+garagelink.jp: did not receive HSTS header
garageon.net: did not receive HSTS header
garbage-juice.com: could not connect to host
garciamartin.me: could not connect to host
@@ -7397,8 +8898,13 @@ 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: could not connect to host
-garfieldairlines.net: could not connect to host
+gardencarezone.com: did not receive HSTS header
+gardinte.com: could not connect to host
+garethkirkreviews.com: could not connect to host
+garfieldairlines.net: did not receive HSTS header
+garforthgolfclub.co.uk: did not receive HSTS header
+garriganenterprises.net: did not receive HSTS header
+garriganenterprisesinc.net: did not receive HSTS header
garten-bau.ch: did not receive HSTS header
garten-diy.de: could not connect to host
gartenhauszentrum.de: did not receive HSTS header
@@ -7406,42 +8912,40 @@ gasbarkenora.com: could not connect to host
gasnews.net: could not connect to host
gasser-daniel.ch: did not receive HSTS header
gassouthkenticoqa.azurewebsites.net: could not connect to host
-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]
+gastritisolucion.com: did not receive HSTS header
gatapro.net: could not connect to host
gatemotorsumhlanga.co.za: did not receive HSTS header
gatemoves.com: could not connect to host
+gatewaybronco.com: did not receive HSTS header
gateworld.fr: did not receive HSTS header
gatilagata.com.br: could not connect to host
gatomix.net: could not connect to host
gatorsa.es: could not connect to host
gaussorgues.me: could not connect to host
-gautham.pro: did not receive HSTS header
+gautham.pro: could not connect to host
gavick.com: did not receive HSTS header
gavinsblog.com: did not receive HSTS header
gay-jays.com: could not connect to host
-gay-sissies.com: could not connect to host
gaya-sa.org: did not receive HSTS header
-gayauthors.org: could not connect to host
-gaycc.cc: could not connect to host
+gaycamvids.com: could not connect to host
gayforgenji.com: could not connect to host
gaygeeks.de: could not connect to host
gayjays.com: could not connect to host
-gaysfisting.com: could not connect to host
-gaytorrent.ru: could not connect to host
-gayxsite.com: could not connect to host
+gazachallenge.org: could not connect to host
gazee.net: did not receive HSTS header
gazflynn.com: did not receive HSTS header
gbit.xyz: could not connect to host
gc.net: could not connect to host
-gccm-events.com: did not receive HSTS header
-gchoic.com: max-age too low: 7889238
-gchp.ie: did not receive HSTS header
+gccm-events.com: could not connect to host
+gcguild.net: did not receive HSTS header
+gchq.wtf: could not connect to host
gcodetools.com: could not connect to host
gdegem.org: did not receive HSTS header
gdevpenze.ru: could not connect to host
+gdhzcgs.com: could not connect to host
gdprhallofshame.com: did not receive HSTS header
gdutnic.com: could not connect to host
-gdz-otvety.com: could not connect to host
+gdz-otvety.com: did not receive HSTS header
gdz.tv: could not connect to host
gear-acquisition-syndrome.community: could not connect to host
gearseo.com.br: did not receive HSTS header
@@ -7455,19 +8959,20 @@ geekbaba.com: could not connect to host
geekcast.co.uk: could not connect to host
geekchimp.com: could not connect to host
geekdt.com: could not connect to host
-geekmind.org: max-age too low: 172800
-geeks.berlin: could not connect to host
-geeks.lgbt: could not connect to host
+geeknik.com: could not connect to host
+geeksky.org: could not connect to host
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
+gehaowu.com: did not receive HSTS header
gehrke.nrw: could not connect to host
geigr.de: could not connect to host
geiser.io: did not receive HSTS header
gekosoft.eu: could not connect to host
geldteveel.eu: could not connect to host
-geluk.io: could not connect to host
+gelodosul.com.br: could not connect to host
+gem-indonesia.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
gemeentemolenwaard.nl: did not receive HSTS header
gemeinfreie-lieder.de: did not receive HSTS header
gemsoftheworld.org: could not connect to host
@@ -7476,34 +8981,40 @@ genemesservwparts.com: could not connect to host
general-insurance.tk: could not connect to host
generalpants.com.au: did not receive HSTS header
generationnext.pl: could not connect to host
+generationsweldom.com: could not connect to host
genesischangelog.com: did not receive HSTS header
+genevacountyal.gov: did not receive HSTS header
geneve.guide: could not connect to host
-genia-life.de: could not connect to host
+genia-life.de: did not receive HSTS header
genie-seiner-generation.de: did not receive HSTS header
+geniushost.in: did not receive HSTS header
genneve.com: did not receive HSTS header
+genome.gov: did not receive HSTS header
genoog.com: could not connect to host
genossen.ru: could not connect to host
genshiken.org: could not connect to host
-gensokyo.chat: could not connect to host
gentooblog.de: could not connect to host
genuu.com: could not connect to host
genuxation.com: could not connect to host
genuxtsg.com: did not receive HSTS header
-genxbeats.com: could not connect to host
-genxnotes.com: could not connect to host
+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: did not receive HSTS header
+geoffreyrichard.com: could not connect to host
+geofox.org: did not receive HSTS header
geopals.net: could not connect to host
georgehalachev.com: did not receive HSTS header
+georgemaschke.com: did not receive HSTS header
georgeperez.me: could not connect to host
georgesonarthurs.com.au: did not receive HSTS header
+georgiatransport.com: could not connect to host
+geosphereservices.com: did not receive HSTS header
gepe.ch: did not receive HSTS header
-gereja.ga: max-age too low: 1209600
+gereja.ga: could not connect to host
gerencianet.com.br: did not receive HSTS header
gereon.ch: could not connect to host
geri.be: could not connect to host
@@ -7512,30 +9023,34 @@ germansoldiers.net: could not connect to host
germanticz.de: did not receive HSTS header
gers-authentique.com: could not connect to host
gerum.dynv6.net: did not receive HSTS header
-geschichtscheck.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]
+geschenkly.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
geschmackspiloten.de: did not receive HSTS header
-gesiwista.net: did not receive HSTS header
+gesiwista.net: could not connect to host
gesunde-smoothies.de: did not receive HSTS header
gesundes-im-napf.de: did not receive HSTS header
gesundheitszentrum-am-reischberg.de: did not receive HSTS header
get-asterisk.ru: could not connect to host
get-cctv.com: could not connect to host
-get-link.info: could not connect to host
+get-link.info: did not receive HSTS header
get.zenpayroll.com: did not receive HSTS header
-getable.com: did not receive HSTS header
+get4x.com: did not receive HSTS header
+geta.pub: could not connect to host
+getable.com: could not connect to host
getblys.com.au: did not receive HSTS header
getcarefirst.com: could not connect to host
getcarina.com: could not connect to host
getcleartouch.com: did not receive HSTS header
getcolor.com: did not receive HSTS header
getcolq.com: could not connect to host
+getcommande.com: did not receive HSTS header
getdigitized.net: could not connect to host
-geteduroam.no: could not connect to host
getenergized2018.kpn: could not connect to host
+getenseguros.com.br: did not receive HSTS header
getenv.io: could not connect to host
getfestify.com: did not receive HSTS header
getfirepress.com: could not connect to host
getfittedstore.com: did not receive HSTS header
+getfoundquick.com: did not receive HSTS header
getfuturama.com: could not connect to host
getgeek.dk: could not connect to host
getgeek.ee: could not connect to host
@@ -7546,46 +9061,52 @@ getgeek.io: could not connect to host
getgeek.no: could not connect to host
getgeek.nu: could not connect to host
getgeek.pl: could not connect to host
-getgeek.se: did not receive HSTS header
+geti2p.com: could not connect to host
getinternet.de: did not receive HSTS header
+getitpeople.com: could not connect to host
getkai.co.nz: did not receive HSTS header
getlantern.org: did not receive HSTS header
-getleanflorida.gov: could not connect to host
+getleanflorida.gov: did not receive HSTS header
getlifti.com: could not connect to host
getlittleapps.com: could not connect to host
getlolaccount.com: did not receive HSTS header
getmassage.com.ng: could not connect to host
getmondo.co.uk: could not connect to host
-geto.ml: did not receive HSTS header
+getoutofdebt.org: did not receive HSTS header
getpake.com: could not connect to host
getpop.org: did not receive HSTS header
-getpost.online: could not connect to host
+getpost.online: did not receive HSTS header
+getprivacy.de: could not connect to host
+getprivacy.net: could not connect to host
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
+getsilknow.com: could not connect to host
getspeaker.com: did not receive HSTS header
getspire.com: could not connect to host
getsubs.net: could not connect to host
-getts.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]
+getswadeshi.com: could not connect to host
+gettodoing.com: could not connect to host
+getts.ro: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
getwarden.net: could not connect to host
getwashdaddy.com: could not connect to host
-getweloop.io: did not receive HSTS header
+getweloop.io: could not connect to host
getyou.onl: could not connect to host
getyourphix.tk: could not connect to host
gevaulug.fr: could not connect to host
gfbouncycastles.co.uk: did not receive HSTS header
-gfedating.com: could not connect to host
-gfhgiro.nl: did not receive HSTS header
-gflclan.ru: could not connect to host
+gfe.link: could not connect to host
+gflclan.ru: did not receive HSTS header
gfm.tech: could not connect to host
gfoss.gr: could not connect to host
gfournier.ca: could not connect to host
gfw.moe: could not connect to host
-gfwno.win: max-age too low: 15
+gfwno.win: could not connect to host
gfwsb.ml: could not connect to host
+gg6957.com: 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
@@ -7593,37 +9114,47 @@ 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: did not receive HSTS header
+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
+ghost-legion.com: did not receive HSTS header
+ghostblog.info: could not connect to host
+ghou.me: could not connect to host
+ghrelinblocker.info: did not receive HSTS header
+ghrelinblocker.org: did not receive HSTS header
+giacomodrago.com: could not connect to host
+giacomodrago.it: could not connect to host
+giaithich.net: did not receive HSTS header
gianlucapartengo.photography: did not receive HSTS header
giant-powerfit.co.uk: did not receive HSTS header
gibraltar-firma.com: did not receive HSTS header
gibraltar.at: could not connect to host
+gibraltarwi.gov: did not receive HSTS header
gicl.dk: could not connect to host
giddyaunt.net: could not connect to host
gidea.nu: could not connect to host
giduv.com: did not receive HSTS header
giegler.software: did not receive HSTS header
-giftbg.org: did not receive HSTS header
-giftgofers.com: max-age too low: 2592000
+giftbg.org: could not connect to host
+gifts.best: could not connect to host
giftservices.nl: could not connect to host
gifzilla.net: could not connect to host
gigacloud.org: could not connect to host
gigantar.com: did not receive HSTS header
-gigawattz.com: did not receive HSTS header
-gigime.com: could not connect to host
+gigawa.lt: could not connect to host
+gigawattz.com: could not connect to host
+gigime.com: did not receive HSTS header
gigiscloud.servebeer.com: could not connect to host
-gigolodavid.be: could not connect to host
gilcloud.com: could not connect to host
gilescountytn.gov: did not receive HSTS header
gilgaz.com: did not receive HSTS header
gilium.com: could not connect to host
+gillesdesnoyers.com: max-age too low: 0
gillet-cros.fr: could not connect to host
gilly.berlin: did not receive HSTS header
gilmourluna.com: could not connect to host
@@ -7637,24 +9168,27 @@ 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
+giochi-online.ws: did not receive HSTS header
giochistem.it: could not connect to host
giogadesign.com: did not receive HSTS header
gip-carif-idf.net: could not connect to host
gip-carif-idf.org: could not connect to host
gipsamsfashion.com: could not connect to host
gipsic.com: did not receive HSTS header
-giraffeinflatables.co.uk: did not receive HSTS header
+giraffeinflatables.co.uk: could not connect to host
+girlsgenerationgoods.com: could not connect to host
girlsgonesporty.com: could not connect to host
-girlsnet.work: could not connect to host
gis3m.org: did not receive HSTS header
-gisac.org: did not receive HSTS header
+gisgov.be: did not receive HSTS header
gistfy.com: could not connect to host
git-stuff.tk: could not connect to host
-git.ac.cn: could not connect to host
+git.ac.cn: did not receive HSTS header
git.co: could not connect to host
gitar.io: could not connect to host
github.party: did not receive HSTS header
+giulianosdeli.com: did not receive HSTS header
givastar.com: did not receive HSTS header
+giveme.online: could not connect to host
givemyanswer.com: could not connect to host
giverang.biz: could not connect to host
giverang.com: could not connect to host
@@ -7662,27 +9196,31 @@ givip.eu: could not connect to host
gix.net.pl: could not connect to host
gixtools.co.uk: could not connect to host
gixtools.uk: could not connect to host
-gizmo.ovh: could not connect to host
gizzo.sk: could not connect to host
gkimanyar.org: could not connect to host
glabiatoren-kst.de: could not connect to host
+gladiatorboost.com: could not connect to host
gladystudio.com: did not receive HSTS header
-glaspe.com: could not connect to host
+glasner.photo: could not connect to host
+glass-mag.eu: did not receive HSTS header
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
+glazedmag.fr: could not connect to host
+glbg.eu: could not connect to host
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
+glevolution.com: could not connect to host
glicerina.online: could not connect to host
glittersjabloon.nl: did not receive HSTS header
glitzmirror.com: could not connect to host
glnpo.gov: could not connect to host
+glob-coin.com: could not connect to host
+global-lights.ma: did not receive HSTS header
global.hr: did not receive HSTS header
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
@@ -7698,26 +9236,35 @@ 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
+globcoin.io: could not connect to host
globeinform.com: did not receive HSTS header
globuli-info.de: could not connect to host
gloomyspark.com: could not connect to host
glossopnorthendafc.co.uk: could not connect to host
glotter.com: did not receive HSTS header
gloucesterphotographer.com: did not receive HSTS header
+glu3cifer.rocks: could not connect to host
glubbforum.de: did not receive HSTS header
+glueck-im-norden.de: did not receive HSTS header
glutenfreiheit.at: could not connect to host
glws.org: did not receive HSTS header
gm-assicurazioni.it: could not connect to host
+gmail: could not connect to host
gmail.com: did not receive HSTS header (error ignored - included regardless)
gmantra.org: max-age too low: 7776000
gmanukyan.com: could not connect to host
gmat.ovh: could not connect to host
+gmind.ovh: could not connect to host
gmoes.at: did not receive HSTS header
gmplab.com: did not receive HSTS header
+gn00.ink: could not connect to host
gnaptracker.tk: could not connect to host
gnhub.org: could not connect to host
+gnilebein.de: did not receive HSTS header
gnom.me: could not connect to host
gnosticjade.net: did not receive HSTS header
+gnuand.me: could not connect to host
+gnunet.org: did not receive HSTS header
gnuplus.me: could not connect to host
gnylf.com: could not connect to host
go.ax: did not receive HSTS header
@@ -7728,38 +9275,39 @@ goalsetup.com: could not connect to host
goaltree.ch: did not receive HSTS header
goapunks.net: could not connect to host
goat.chat: did not receive HSTS header
-goat.xyz: could not connect to host
+goat.xyz: did not receive HSTS header
+goatbot.xyz: could not connect to host
goben.ch: could not connect to host
goblins.net: could not connect to host
goblinsatwork.com: could not connect to host
goblintears.com: could not connect to host
-gocardless.com: did not receive HSTS header
-god-esb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-godbo9.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-godbo9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-godbo9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-godesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-godofnea.com: could not connect to host
+gobranding.com.vn: did not receive HSTS header
+god-esb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+godbo9.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+godbo9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+godbo9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+godesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+godofnea.com: did not receive HSTS header
godrealms.com: could not connect to host
godrive.ga: could not connect to host
godruoyi.com: did not receive HSTS header
goedeke.ml: could not connect to host
+goedkopelaptopshardenberg.nl: did not receive HSTS header
goerner.me: did not receive HSTS header
goesta-hallenbau.de: did not receive HSTS header
goge.site: could not connect to host
gogenenglish.com: could not connect to host
-gogetssl.com: did not receive HSTS header
goggs.eu: could not connect to host
gogold-g.com: could not connect to host
gogonano.com: did not receive HSTS header
-goguel.org: did not receive HSTS header
+goguel.org: could not connect to host
goiaspropaganda.com.br: could not connect to host
gold24.in: could not connect to host
-goldclubcasino.com: could not connect to host
+gold24.ru: did not receive HSTS header
+goldegg-training.com: did not receive HSTS header
goldendata.io: could not connect to host
-goldeneggs.club: did not receive HSTS header
goldfelt.com: could not connect to host
-goldminer.ga: could not connect to host
+goldminer.ga: did not receive HSTS header
goldpros.com: did not receive HSTS header
goldsky.com.au: could not connect to host
goldwater.gov: could not connect to host
@@ -7767,7 +9315,10 @@ goldwaterfoundation.gov: could not connect to host
goldwaterscholarship.gov: could not connect to host
golearn.gov: could not connect to host
golfburn.com: could not connect to host
+golkala.com: did not receive HSTS header
golocal-media.de: could not connect to host
+gomelagromashplus.by: did not receive HSTS header
+gomena.io: max-age too low: 0
gomiblog.com: did not receive HSTS header
gong8.win: could not connect to host
gonkar.com: did not receive HSTS header
@@ -7782,7 +9333,6 @@ 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)
@@ -7791,43 +9341,50 @@ googlehosts.org: could not connect to host
googlemail.com: did not receive HSTS header (error ignored - included regardless)
googleplex.com: did not receive HSTS header (error ignored - included regardless)
goolok.com: could not connect to host
-goontopia.com: could not connect to host
-gootax.pro: did not receive HSTS header
+gooroosmarketplace.com: did not receive HSTS header
gootlijsten.nl: did not receive HSTS header
goozz.nl: did not receive HSTS header
gopay.cz: did not receive HSTS header
+goplex.com.au: did not receive HSTS header
gopokego.cz: could not connect to host
+gopwhip.gov: did not receive HSTS header
goranrango.ch: could not connect to host
gorgiaxx.com: could not connect to host
gorilla-gym.site: could not connect to host
gorillow.com: could not connect to host
gorognyelv.hu: could not connect to host
gorschenin.com: could not connect to host
+goru.travel: did not receive HSTS header
+gosciencegirls.com: did not receive HSTS header
gosharewood.com: did not receive HSTS header
goshop.cz: did not receive HSTS header
-goshow.tv: could not connect to host
-gostargazing.co.uk: did not receive HSTS header
+gospelofmark.ch: could not connect to host
+gostest.org: did not receive HSTS header
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)
+goto.world: could not connect to host
gotobrno.cz: did not receive HSTS header
gotocloud.ru: could not connect to host
gotspot.com: could not connect to host
+gottfridsberg.org: could not connect to host
gottfriedfeyen.com: did not receive HSTS header
-goubi.me: could not connect to host
+goubi.me: did not receive HSTS header
+goufaan.com: could not connect to host
goujianwen.com: did not receive HSTS header
goukon.ru: could not connect to host
gourmettia.com: did not receive HSTS header
-gouthro-goteborg.se: did not receive HSTS header
+gouthro-goteborg.se: could not connect to host
gouv.ovh: did not receive HSTS header
gov.ax: could not connect to host
+gov.tc: did not receive HSTS header
goverage.org: did not receive HSTS header
govillemo.ca: did not receive HSTS header
-gowin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-gowin9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+govtrack.us: did not receive HSTS header
+gowe.wang: could not connect to host
+gowin9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+gowin9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
gozadentro.com: could not connect to host
gozel.com.tr: did not receive HSTS header
-gpalabs.com: could not connect to host
gparent.org: did not receive HSTS header
gpfclan.de: could not connect to host
gpga.cf: could not connect to host
@@ -7835,33 +9392,42 @@ gplintegratedit.com: could not connect to host
gpo.gov: did not receive HSTS header
gps.com.br: could not connect to host
gpsarena.ro: could not connect to host
+gpscamera.nl: could not connect to host
gpsfix.cz: could not connect to host
gpstuner.com: did not receive HSTS header
+gra2.com: could not connect to host
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
+graciousmay.com: did not receive HSTS header
grademymac.com: could not connect to host
grademypc.com: could not connect to host
gradenotify.com: could not connect to host
+gradingcontractornc.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
grads360.org: could not connect to host
-gradsm-ci.net: could not connect to host
+gradsm-ci.net: did not receive HSTS header
grafitec.ru: did not receive HSTS header
grafmurr.de: could not connect to host
graftworld.pw: could not connect to host
grahamofthewheels.com: did not receive HSTS header
+gram.tips: did not receive HSTS header
grana.com: did not receive HSTS header
+grancellconsulting.com: could not connect to host
grandchamproofing.com: did not receive HSTS header
+grandefratellonews.com: could not connect to host
grandlinecsk.ru: did not receive HSTS header
grandmascookieblog.com: could not connect to host
grandmasfridge.org: did not receive HSTS header
granian.pro: could not connect to host
+grantdb.ca: did not receive HSTS header
grantedby.me: max-age too low: 0
granth.io: could not connect to host
+granular.ag: did not receive HSTS header
graph.no: did not receive HSTS header
-graphified.nl: did not receive HSTS header
+graphified.nl: could not connect to host
graphire.io: could not connect to host
graphite.org.uk: could not connect to host
graphsearchengine.com: could not connect to host
@@ -7869,6 +9435,7 @@ gratis-app.com: did not receive HSTS header
gratis-lovecheck.de: did not receive HSTS header
gratisonlinesex.com: could not connect to host
gravitation.pro: could not connect to host
+gravitechthai.com: did not receive HSTS header
gravito.nl: did not receive HSTS header
gravity-net.de: could not connect to host
graycell.net: could not connect to host
@@ -7877,6 +9444,7 @@ 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
+greathosts.biz: did not receive HSTS header
greatideahub.com: did not receive HSTS header
greatlengthshairextensionssalon.com: did not receive HSTS header
greatnet.de: did not receive HSTS header
@@ -7884,6 +9452,7 @@ greatsong.net: max-age too low: 2592000
greditsoft.com: did not receive HSTS header
greedbutt.com: max-age too low: 2592000
greenbaysecuritysolutions.com: did not receive HSTS header
+greencard.su: could not connect to host
greencardtalent.com: could not connect to host
greenconn.ca: could not connect to host
greendroid.de: did not receive HSTS header
@@ -7894,19 +9463,21 @@ greenglam.biz: did not receive HSTS header
greengoblindev.com: could not connect to host
greengov.gov: could not connect to host
greenhillantiques.co.uk: could not connect to host
-greenitpark.net: did not receive HSTS header
+greenitpark.net: could not connect to host
+greenpaws.ee: did not receive HSTS header
+greensad36.ru: did not receive HSTS header
greensolid.biz: could not connect to host
greenville.ag: did not receive HSTS header
greenvines.com.tw: did not receive HSTS header
greenvpn.ltd: could not connect to host
greenvpn.pro: did not receive HSTS header
+greenwaylog.net: could not connect to host
+greer.ru: could not connect to host
greggsfoundation.org.uk: could not connect to host
gregmartyn.com: could not connect to host
-gregmarziomedia-dev.com: did not receive HSTS header
-gregmarziomedia.co.za: could not connect to host
-gregmarziomedia.com: did not receive HSTS header
gregmilton.org: could not connect to host
-gregorytlee.me: could not connect to host
+grego.pt: could not connect to host
+gregorytlee.me: did not receive HSTS header
grekland.guide: could not connect to host
gremots.com: could not connect to host
grengine.ch: could not connect to host
@@ -7917,22 +9488,26 @@ 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
+greybeards.ca: could not connect to host
greyline.se: could not connect to host
grian-bam.at: did not receive HSTS header
gribani.com: could not connect to host
grid2osm.org: could not connect to host
griecopelino.com: did not receive HSTS header
-grifomarchetti.com: did not receive HSTS header
+grieg.com: could not connect to host
+grieg.net: could not connect to host
+grieg.org: could not connect to host
grigalanzsoftware.com: could not connect to host
grillinfools.com: did not receive HSTS header
gripnijmegen.rip: could not connect to host
gripopgriep.net: could not connect to host
+grippe-impftermin.de: did not receive HSTS header
gritte.net: could not connect to host
griyo.online: could not connect to host
-grizzlys.com: could not connect to host
+grmp.fr: did not receive HSTS header
groben-itsolutions.de: could not connect to host
groenders.nl: did not receive HSTS header
+groenewoud.me: could not connect to host
groenewoud.run: could not connect to host
groentefruitzeep.com: could not connect to host
groentefruitzeep.nl: could not connect to host
@@ -7942,6 +9517,7 @@ grossell.ru: could not connect to host
grossmann.gr: could not connect to host
grossmisconduct.news: could not connect to host
grouchysysadmin.com: could not connect to host
+groundlevelup.com: did not receive HSTS header
groupe-cassous.com: did not receive HSTS header
groups.google.com: did not receive HSTS header (error ignored - included regardless)
grow-shop.ee: could not connect to host
@@ -7954,12 +9530,14 @@ grumples.biz: did not receive HSTS header
grunex.com: did not receive HSTS header
grupopgn.com.br: could not connect to host
gruppoipl.it: did not receive HSTS header
+gruselgrotte.com: could not connect to host
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
+gsmbrick.com: could not connect to host
gsmkungen.com: could not connect to host
gsnort.com: did not receive HSTS header
gtalife.net: did not receive HSTS header
@@ -7969,15 +9547,19 @@ gtchipsi.org: did not receive HSTS header
gtcprojects.com: could not connect to host
gtech.work: did not receive HSTS header
gtldna.com: could not connect to host
+gtmasterclub.it: did not receive HSTS header
gtraxapp.com: could not connect to host
gts-dp.de: did not receive HSTS header
gts-schulsoftware.de: did not receive HSTS header
-gtts.space: did not receive HSTS header
+guajars.cl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+guannan.net.cn: could not connect to host
guarajubaimoveis.com.br: did not receive HSTS header
-guava.studio: did not receive HSTS header
-guchengf.me: max-age too low: 0
+guardiansoftheearth.org: could not connect to host
+guava.studio: could not connect to host
+guchengf.me: did not receive HSTS header
gudangpangan.id: could not connect to host
gudrun.ml: could not connect to host
+guelo.ch: 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
@@ -7988,10 +9570,12 @@ guge.gq: could not connect to host
gugert.net: could not connect to host
gugga.dk: could not connect to host
guguke.net: did not receive HSTS header
+guhei.net: could not connect to host
guidechecking.com: could not connect to host
+guidedselling.net: could not connect to host
guides-et-admin.com: did not receive HSTS header
+guides-peche64.com: could not connect to host
guidesetc.com: did not receive HSTS header
-guildbase.de: 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
@@ -8000,7 +9584,9 @@ guillaumematheron.fr: did not receive HSTS header
guiltypleasuresroleplaying.com: did not receive HSTS header
guinea-pig.co: did not receive HSTS header
guineafruitcorp.com: could not connect to host
+guishem.com: max-age too low: 7889238
gulch.in.ua: could not connect to host
+gulenbase.no: 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
@@ -8008,17 +9594,17 @@ gulleyperformancecenter.com: did not receive HSTS header
gumannp.de: did not receive HSTS header
gumballs.com: did not receive HSTS header
gummibande.noip.me: could not connect to host
+gunceloyunhileleri.com: did not receive HSTS header
gunhunter.com: could not connect to host
guniram.com: did not receive HSTS header
gunnarhafdal.com: did not receive HSTS header
gunnaro.com: did not receive HSTS header
+gunsofshadowvalley.com: did not receive HSTS header
guntbert.net: could not connect to host
guoqiang.info: did not receive HSTS header
-guphi.net: did not receive HSTS header
-gurochan.ch: could not connect to host
+gurochan.ch: did not receive HSTS header
gurom.lv: could not connect to host
gurubetng.com: did not receive HSTS header
-gurugardener.co.nz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
gurusupe.com: could not connect to host
gus.moe: could not connect to host
guso.gq: could not connect to host
@@ -8026,13 +9612,15 @@ guso.ml: could not connect to host
guso.site: could not connect to host
guso.tech: could not connect to host
gussi.is: could not connect to host
-gustiaux.com: did not receive HSTS header
+gustom.io: did not receive HSTS header
+gutenbergthemes.info: did not receive HSTS header
guthabenkarten-billiger.de: could not connect to host
gutuia.blue: could not connect to host
guvernalternativa.ro: could not connect to host
guyot-tech.com: did not receive HSTS header
gvchannel.xyz: could not connect to host
gvi.be: did not receive HSTS header
+gviedu.com: could not connect to host
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)
@@ -8042,40 +9630,50 @@ gw2reload.eu: could not connect to host
gwa-verwaltung.de: did not receive HSTS header
gwijaya.com: could not connect to host
gwtest.us: could not connect to host
+gx3.cn: did not receive HSTS header
gxgx.org: could not connect to host
gxlrx.net: could not connect to host
gyakori.com: could not connect to host
+gyara.moe: did not receive HSTS header
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
-gymnasium-farmsen.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]
-gypsycatdreams.com: did not receive HSTS header
+gymnasium-farmsen.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+gypsycatdreams.com: could not connect to host
gypthecat.com: did not receive HSTS header
-gyz.io: did not receive HSTS header
+gyume.ir: did not receive HSTS header
+gyz.io: could not connect to host
gzitech.com: could not connect to host
gzitech.net: could not connect to host
gzitech.org: could not connect to host
gzpblog.com: could not connect to host
h-og.com: could not connect to host
h-rickroll-n.pw: could not connect to host
+h-suppo.com: did not receive HSTS header
+h0r.st: could not connect to host
+h11.moe: could not connect to host
h2cdn.cloud: could not connect to host
h2check.org: could not connect to host
+h33t.xyz: did not receive HSTS header
h3x.jp: could not connect to host
+haancommunity.cf: could not connect to host
haarkliniek.com: did not receive HSTS header
+habbig.cc: could not connect to host
habbixed.tk: could not connect to host
habbo.life: could not connect to host
-habbos.es: could not connect to host
+habbos.es: did not receive HSTS header
habbotalk.nl: could not connect to host
habeo.si: could not connect to host
-hablemosdetecnologia.com.ve: could not connect to host
-habtium.com: could not connect to host
+hablemosdetecnologia.com.ve: did not receive HSTS header
+habtium.com: did not receive HSTS header
+habview.net: did not receive HSTS header
hac30.com: could not connect to host
hack.cz: did not receive HSTS header
hack.li: could not connect to host
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
hackerco.com: could not connect to host
hackerforever.com: did not receive HSTS header
@@ -8085,47 +9683,54 @@ hackerpoints.com: did not receive HSTS header
hackerspace-ntnu.no: did not receive HSTS header
hackerstxt.org: could not connect to host
hackest.org: did not receive HSTS header
+hackettrecipes.com: could not connect to host
+hackingarise.com: did not receive HSTS header
hackingsafe.com: could not connect to host
hackit.im: could not connect to host
hackmeplz.com: could not connect to host
hackroyale.xyz: could not connect to host
+hacksecu.re: could not connect to host
hacksnack.io: could not connect to host
hacktic.info: could not connect to host
hackyourfaceoff.com: could not connect to host
hackzogtum-coburg.de: did not receive HSTS header
-hadaf.pro: max-age too low: 300
hadret.com: did not receive HSTS header
-hadret.sh: could not connect to host
+hadret.sh: did not receive HSTS header
hadzic.co: could not connect to host
haeckl.eu: did not receive HSTS header
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]
+haemmerle.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
haf.gr: could not connect to host
hafoda.com: did not receive HSTS header
hahayidu.org: could not connect to host
haidihai.ro: did not receive HSTS header
hail2u.net: did not receive HSTS header
hainoni.com: did not receive HSTS header
+hairbeautyartists.it: could not connect to host
hairlossstop.net: could not connect to host
haitschi.com: could not connect to host
haitschi.de: did not receive HSTS header
haitschi.net: could not connect to host
haitschi.org: could not connect to host
haizum.pro: could not connect to host
+hajnzic.at: could not connect to host
+hak5.org: did not receive HSTS header
+hakans.science: did not receive HSTS header
+hakase.io: did not receive HSTS header
+hakkasangroup.com: did not receive HSTS header
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: did not receive HSTS header
hal-9th.space: could not connect to host
-halbich.design: could not connect to host
+halbowman.com: did not receive HSTS header
halcyonsbastion.com: could not connect to host
half-logic.eu.org: could not connect to host
halfco.de: could not connect to host
halfwaythere.eu: could not connect to host
halkyon.net: could not connect to host
halledesprix.fr: did not receive HSTS header
-halletienne.fr: could not connect to host
+hallettxn.com: did not receive HSTS header
halloweenthings.website: could not connect to host
hallumlaw.com: did not receive HSTS header
halo.red: could not connect to host
@@ -8133,17 +9738,21 @@ halongbaybackpackertour.com: could not connect to host
halta.info: did not receive HSTS header
halyul.cc: could not connect to host
haman.nl: could not connect to host
+hamikala.com: could not connect to host
hamish.ca: did not receive HSTS header
hamking.tk: could not connect to host
hammamsayad.com: could not connect to host
hammer-corp.com: did not receive HSTS header
-hammer-schnaps.com: did not receive HSTS header
+hammerpondkennels.co.uk: did not receive HSTS header
hamon.cc: did not receive HSTS header
+hamsters-uk.org: did not receive HSTS header
hamu.blue: could not connect to host
+hanashi.eu: did not receive HSTS header
hancatemc.com: did not receive HSTS header
hancc.net: could not connect to host
handenafvanhetmedischdossier.nl: could not connect to host
handicapindeles.nl: did not receive HSTS header
+handicaps-ensemble.org: did not receive HSTS header
handinhandfoundation.org.uk: did not receive HSTS header
handiworker.com: could not connect to host
handmadegobelin.com: could not connect to host
@@ -8151,10 +9760,11 @@ handmadeshoes.pe: could not connect to host
handmadetutorials.ro: could not connect to host
handsandall.com: did not receive HSTS header
handyglas.com: could not connect to host
-hanfu.la: did not receive HSTS header
-hanfverband-erfurt.de: could not connect to host
+handyklinik.info: did not receive HSTS header
+hanfu.la: could not connect to host
hang333.pw: could not connect to host
hangar18-modelismo.com.br: could not connect to host
+hangout: could not connect to host (error ignored - included regardless)
hanimalis.fr: could not connect to host
hanksservice.com: could not connect to host
hannes-speelgoedencadeautjes.nl: did not receive HSTS header
@@ -8162,6 +9772,7 @@ hanoibuffet.com: could not connect to host
hans-natur.de: did not receive HSTS header
hansch.ventures: could not connect to host
hanxv.pw: did not receive HSTS header
+hanying6.com: 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
@@ -8172,16 +9783,25 @@ haobo4444.com: could not connect to host
haobo5555.com: could not connect to host
haobo6666.com: could not connect to host
haobo7777.com: could not connect to host
+haocq3.com: did not receive HSTS header
haomwei.com: could not connect to host
+haorenka.cc: max-age too low: 0
+haoshen666.com: max-age too low: 0
haotown.cn: did not receive HSTS header
haoyugao.com: could not connect to host
+haozhexie.com: could not connect to host
+haozi.me: did not receive HSTS header
haozijing.com: could not connect to host
+hapijs.cn: could not connect to host
hapissl.com: could not connect to host
hapivm.com: could not connect to host
-happist.com: did not receive HSTS header
happix.nl: did not receive HSTS header
+happndin.com: did not receive HSTS header
+happy-end-shukatsu.com: could not connect to host
+happybeerdaytome.com: could not connect to host
happyfabric.me: did not receive HSTS header
happygastro.com: could not connect to host
+happyhealthylifestyle.com: did not receive HSTS header
happyheartsabode.com: did not receive HSTS header
happytiger.eu: could not connect to host
hapsfordmill.co.uk: could not connect to host
@@ -8190,29 +9810,34 @@ haqaza.com.br: could not connect to host
harambe.site: could not connect to host
harbourweb.net: did not receive HSTS header
hardline.xyz: could not connect to host
+hardloopfysio.nl: did not receive HSTS header
hardtime.ru: could not connect to host
hardyboyplant.com: did not receive HSTS header
+harekaze.info: could not connect to host
haribosupermix.com: could not connect to host
hariome.com: did not receive HSTS header
haritsa.co.id: could not connect to host
harlentimberproducts.co.uk: did not receive HSTS header
-harmonycosmetic.com: max-age too low: 300
harrisonsdirect.co.uk: did not receive HSTS header
+harrisonvillenaz.org: did not receive HSTS header
harristony.com: could not connect to host
-harryharrison.co: did not receive HSTS header
+harry-baker.com: could not connect to host
+harryharrison.co: could not connect to host
+harryphoto.fr: did not receive HSTS header
harrypottereditor.com: could not connect to host
harrypottereditor.net: could not connect to host
+hartfordct.gov: 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
+has.vision: did not receive HSTS header
hasabig.wang: could not connect to host
hasalittle.wang: could not connect to host
-haschrebellen.de: could not connect to host
hash-list.com: could not connect to host
hashiconf.com: did not receive HSTS header
+hashiconf.eu: did not receive HSTS header
hashidays.com: did not receive HSTS header
hashplex.com: could not connect to host
hasinase.de: could not connect to host
@@ -8227,28 +9852,27 @@ 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
-havarijna-sluzba-bratislava.sk: did not receive HSTS header
havasuhomepage.com: did not receive HSTS header
+havasutacohacienda.com: could not connect to host
haveeruexaminer.com: could not connect to host
haven-staging.cloud: could not connect to host
haven.cloud: did not receive HSTS header
havenmoon.com: could not connect to host
havenswift-hosting.co.uk: did not receive HSTS header
+hawawa.kr: could not connect to host
+hawaya.com: did not receive HSTS header
hawk-la.com: could not connect to host
hawthornharpist.com: could not connect to host
-haxoff.com: did not receive HSTS header
+haxoff.com: could not connect to host
haxon.me: could not connect to host
-haxx.hu: could not connect to host
-hayden.one: did not receive HSTS header
haydenhill.us: could not connect to host
haydentomas.com: did not receive HSTS header
hayleishop.fr: did not receive HSTS header
-hayzepvp.us: did not receive HSTS header
+hayzepvp.us: could not connect to host
hazcod.com: could not connect to host
haze-productions.com: could not connect to host
haze.network: could not connect to host
haze.sucks: could not connect to host
-hazeltime.com: could not connect to host
hazeltime.se: could not connect to host
hazyrom.net: could not connect to host
hb1111.com: could not connect to host
@@ -8265,44 +9889,48 @@ hbvip05.com: could not connect to host
hbvip06.com: could not connect to host
hbvip07.com: could not connect to host
hbvip08.com: could not connect to host
+hcaz.io: did not receive HSTS header
hcfhomelottery.ca: 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: could not connect to host
+hcs-company.nl: did not receive HSTS header
hcstr.com: could not connect to host
hd1tj.org: did not receive HSTS header
+hd4138.com: could not connect to host
+hd6556.com: could not connect to host
+hd6957.com: could not connect to host
hda.me: did not receive HSTS header
-hdm.io: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hdm.io: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
hdrboundless.com: could not connect to host
-hdritalyphotos.com: did not receive HSTS header
hdserver.info: did not receive HSTS header
hdsmigrationtool.com: could not connect to host
-hdtwinks.com: could not connect to host
hduin.xyz: could not connect to host
-hdwallpapers.net: could not connect to host
hdy.nz: could not connect to host
head-shop.lt: could not connect to host
head-shop.lv: could not connect to host
headmates.xyz: could not connect to host
-healey.io: max-age too low: 2592000
+headshopinternational.com: did not receive HSTS header
health-and-beauty-news.net: could not connect to host
health-match.com.au: could not connect to host
healthcare6.com: did not receive HSTS header
-healthiercompany.com: did not receive HSTS header
+healtheals.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
-healthyfitfood.com: could not connect to host
healtious.com: could not connect to host
+hearinghelpexpress.com: did not receive HSTS header
hearingshofar.com: could not connect to host
heart.ge: could not connect to host
+heartbeat24.de: did not receive HSTS header
+heartgames.pl: could not connect to host
heartlandrentals.com: did not receive HSTS header
heartsucker.com: could not connect to host
+hearty.blog: could not connect to host
hearty.cf: did not receive HSTS header
hearty.ink: could not connect to host
+hearty.org.tw: could not connect to host
hearty.space: could not connect to host
hearty.taipei: could not connect to host
hearty.tech: could not connect to host
@@ -8313,22 +9941,27 @@ 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
hebergeurssd.com: could not connect to host
heberut.gov: did not receive HSTS header
hebriff.com: could not connect to host
hechamano.es: did not receive HSTS header
-hectorj.net: could not connect to host
-hedweb.com: could not connect to host
+heckticmedia.com: did not receive HSTS header
+hectorj.net: did not receive HSTS header
heeler.blue: could not connect to host
heeler.red: could not connect to host
heidilein.info: did not receive HSTS header
heimnetze.org: could not connect to host
+heimprofis.de: could not connect to host
+heinemann.io: did not receive HSTS header
+heisenberg.co: could not connect to host
+hejahanif.se: did not receive HSTS header
hejsupport.se: could not connect to host
hekeki.com: could not connect to host
+heldtech.services: could not connect to host
hele.cz: could not connect to host
helencrump.co.uk: did not receive HSTS header
+helenelefauconnier.com: could not connect to host
helgakristoffer.com: could not connect to host
helgakristoffer.wedding: could not connect to host
helgaschultz.de: could not connect to host
@@ -8337,7 +9970,7 @@ helixflight.com: did not receive HSTS header
hellenicaward.com: did not receive HSTS header
hellerup.net: did not receive HSTS header
hello-nestor.com: did not receive HSTS header
-helloanselm.com: max-age too low: 172800
+helloaigo.com: could not connect to host
hellofilters.com: could not connect to host
hellomouse.tk: could not connect to host
hellotandem.com: could not connect to host
@@ -8356,72 +9989,84 @@ helpgerer.com: did not receive HSTS header
helpgoabroad.com: did not receive HSTS header
helpium.de: did not receive HSTS header
helpmebuild.com: did not receive HSTS header
-helpmij.cf: could not connect to host
helppresta.com: did not receive HSTS header
helprocleaningservices.com: did not receive HSTS header
-helptasker.org: did not receive HSTS header
+helptasker.org: could not connect to host
helpverif.com: 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
-hendyisaac.com: did not receive HSTS header
+hendrik.li: could not connect to host
+hendyisaac.com: could not connect to host
+hengelsportdeal.com: could not connect to host
henhenlu.com: could not connect to host
henkbrink.com: did not receive HSTS header
hennadesigns.org: did not receive HSTS header
henningkerstan.org: did not receive HSTS header
henriknoerr.com: could not connect to host
henrock.net: could not connect to host
-hentai.design: did not receive HSTS header
+hentai.design: could not connect to host
hentaimaster.net: could not connect to host
hentaiworld.cc: 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
-heracles-hotel.eu: did not receive HSTS header
herbal-id.com: did not receive HSTS header
herbandpat.org: could not connect to host
herbertmouwen.nl: could not connect to host
+herculex.fi: could not connect to host
here.ml: could not connect to host
here4funpartysolutions.ie: did not receive HSTS header
+herealways.tk: could not connect to host
+herebedragons.io: could not connect to host
heribe-maruo.com: did not receive HSTS header
-heritagedentistry.ca: did not receive HSTS header
+heribro.com: did not receive HSTS header
+heritagedentistry.ca: could not connect to host
hermann.in: could not connect to host
hermes-servizi.it: could not connect to host
hermes.cat: could not connect to host
+herndl.org: could not connect to host
+hernn.com: could not connect to host
heroin.org.uk: could not connect to host
herpaderp.net: could not connect to host
herr-webdesign.de: could not connect to host
+herramientasbazarot.com: did not receive HSTS header
herrenfahrt.com: did not receive HSTS header
herrtxbias.org: could not connect to host
hervespanneut.com: did not receive HSTS header
+hessen-liebe.de: did not receive HSTS header
hetmeisjeachterpauw.nl: could not connect to host
-hetmer.com: did not receive HSTS header
-hetmer.net: did not receive HSTS header
hetzflix.stream: did not receive HSTS header
-heutger.net: did not receive HSTS header
heverhagen.rocks: did not receive HSTS header
hex.bz: could not connect to host
+hex.nl: did not receive HSTS header
hex2013.com: did not receive HSTS header
hexacon.io: could not connect to host
hexadecimal.tech: could not connect to host
+hexclock.io: could not connect to host
hexe.net: did not receive HSTS header
hexhu.com: could not connect to host
+hexid.me: could not connect to host
hexieshe.com: could not connect to host
hexobind.com: could not connect to host
heyfringe.com: could not connect to host
heyguevara.com: did not receive HSTS header
heyjournal.com: could not connect to host
heywoodtown.co.uk: did not receive HSTS header
+hf-tekst.nl: did not receive HSTS header
hfbg.nl: did not receive HSTS header
-hfcbank.com.gh: did not receive HSTS header
+hfcbank.com.gh: could not connect to host
hfi.me: did not receive HSTS header
hflsdev.org: could not connect to host
+hfsctx.gov: could not connect to host
hfu.io: could not connect to host
-hg525.com: could not connect to host
+hg525.com: did not receive HSTS header
hg71839.com: could not connect to host
hg881.com: could not connect to host
hgfa.fi: could not connect to host
+hh46953255.com: max-age too low: 0
+hh6957.com: could not connect to host
+hi.team: 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
@@ -8431,99 +10076,113 @@ hiddenprocess.com: did not receive HSTS header
hiddenrefuge.eu.org: could not connect to host
hidedd.com: could not connect to host
hideftv.deals: could not connect to host
-hideo54.com: could not connect to host
-hideout.agency: could not connect to host
hidrofire.com: did not receive HSTS header
hiexmerida-mailing.com: could not connect to host
hig.gov: could not connect to host
+higgsboson.tk: did not receive HSTS header
highgrove.org.uk: could not connect to host
highland-webcams.com: could not connect to host
highlandparkcog.org: did not receive HSTS header
highperformancehvac.com: did not receive HSTS header
-highseer.com: did not receive HSTS header
-highspeedinternetservices.ca: did not receive HSTS header
+highspeedinternetservices.ca: could not connect to host
highsurf-miyazaki.com: could not connect to host
+hightechbasementsystems.com: could not connect to host
hightechgadgets.net: could not connect to host
-hightimes.com: could not connect to host
hightower.eu: could not connect to host
highvelocitydesign.com: could not connect to host
higp.de: did not receive HSTS header
hiisukun.com: could not connect to host
hiitcentre.com: did not receive HSTS header
+hijackpost.com: did not receive HSTS header
hijoan.com: did not receive HSTS header
-hik-cloud.com: did not receive HSTS header
hikagestudios.com: did not receive HSTS header
hikariempire.com: could not connect to host
+hikarukujo.com: did not receive HSTS header
hilaolu.com: could not connect to host
hilaolu.studio: max-age too low: 0
hilariousbeer.com.mx: could not connect to host
hilinemerchandising.com: did not receive HSTS header
hill.selfip.net: could not connect to host
hillcity.org.nz: did not receive HSTS header
-hillebrand.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]
+hillcountryoralsurgery.com: max-age too low: 0
hilnu.tk: could not connect to host
hiltonhyland.com: did not receive HSTS header
+himalaya-cross.com: could not connect to host
+himalaya.video: could not connect to host
+himcy.ga: could not connect to host
himens.com: did not receive HSTS header
+hindi-movie.org: did not receive HSTS header
hindmanfuneralhomes.com: did not receive HSTS header
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: did not receive HSTS header
-hiojbk.com: did not receive HSTS header
+hiojbk.com: could not connect to host
hipercultura.com: did not receive HSTS header
hiphopconvention.nl: could not connect to host
hipi.jp: could not connect to host
hipnoseinstitute.org: did not receive HSTS header
+hippo.ge: could not connect to host
hiqfleet.co.uk: did not receive HSTS header
hiraku.me: did not receive HSTS header
hirefitness.co.uk: did not receive HSTS header
hireprofs.com: could not connect to host
-hiresuccessstaffing.com: did not receive HSTS header
+hiresuccessstaffing.com: could not connect to host
hiretech.com: did not receive HSTS header
-hirevets.gov: did not receive HSTS header
+hiring-process.com: could not connect to host
hirokilog.com: did not receive HSTS header
hirte-digital.de: did not receive HSTS header
hisingenrunt.se: did not receive HSTS header
-histocamp.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]
-histoire-theatre.com: did not receive HSTS header
+histoire-theatre.com: could not connect to host
history.pe: could not connect to host
hitchunion.org: could not connect to host
hitoy.org: could not connect to host
hitrek.ml: could not connect to host
hittipps.com: could not connect to host
hivatal-info.hu: could not connect to host
-hj2999.com: did not receive HSTS header
+hj2999.com: could not connect to host
+hj3455.com: could not connect to host
+hj9379.com: could not connect to host
+hj99111.com: could not connect to host
+hj99177.com: could not connect to host
+hj99188.com: could not connect to host
+hj99vip.com: could not connect to host
hjes.com.ve: could not connect to host
hjf-immobilien.de: did not receive HSTS header
+hjkbm.cn: could not connect to host
hjkhs.cn: did not receive HSTS header
+hjw-kunstwerk.de: did not receive HSTS header
+hjyl9898.com: could not connect to host
hknet.at: did not receive HSTS header
-hl7999.com: did not receive HSTS header
-hlacosedora.com: max-age too low: 7889238
+hl8999.com: did not receive HSTS header
+hledejpravnika.cz: 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
hm1ch.ovh: could not connect to host
+hm5189.com: max-age too low: 0
hmksq.ae: max-age too low: 7776000
hmm.nyc: could not connect to host
hnwebi.com: did not receive HSTS header
hoast.xyz: did not receive HSTS header
hobaugh.social: could not connect to host
hobby-gamerz-community.de: did not receive HSTS header
-hocassian.cn: did not receive HSTS header
+hoberg.ch: did not receive HSTS header
hochzeitshelferlein.de: did not receive HSTS header
-hockey.academy: did not receive HSTS header
+hoctap.net: 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
+hoepli.it: did not receive HSTS header
hoerbuecher-und-hoerspiele.de: could not connect to host
+hoeveiligismijn.nl: could not connect to host
hoffens.se: could not connect to host
hofiprojekt.cz: did not receive HSTS header
hogar123.es: could not connect to host
-hohm.in: could not connect to host
hoiku-map.tokyo: could not connect to host
hoiku-navi.com: did not receive HSTS header
+hoikuen-now.top: did not receive HSTS header
hokepon.com: did not receive HSTS header
hokieprivacy.org: did not receive HSTS header
hokify.at: did not receive HSTS header
@@ -8533,11 +10192,13 @@ holad.de: did not receive HSTS header
holgerlehner.com: could not connect to host
holidayincotswolds.co.uk: could not connect to host
holifestival-freyung.de: could not connect to host
-holisticdrbright.com: max-age too low: 300
hollandguns.com: did not receive HSTS header
hollerau.de: could not connect to host
+holmq.dk: max-age too low: 2592000
+holodeck.us: could not connect to host
holowaty.me: could not connect to host
holstphoto.com: max-age too low: 2592000
+holy-hi.com: could not connect to host
holymoly.lu: could not connect to host
holymolycasinos.com: did not receive HSTS header
homa.website: could not connect to host
@@ -8545,24 +10206,27 @@ 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-handymen.co.uk: did not receive HSTS header
home-insurance-quotes.tk: could not connect to host
home-v.ind.in: could not connect to host
home-work-jobs.com: could not connect to host
homeandyarddetailing.com: could not connect to host
homeautomated.com: could not connect to host
-homecarpetcleaning.co.uk: did not receive HSTS header
+homecarpetcleaning.co.uk: could not connect to host
homeclouding.de: could not connect to host
homecoming.city: could not connect to host
homedna.com: did not receive HSTS header
homeexx.com: did not receive HSTS header
-homehuntertoronto.com: could not connect to host
-homehunting.pt: did not receive HSTS header
+homehuntertoronto.com: did not receive HSTS header
homeoesp.org: did not receive HSTS header
homeownersassociationmanagementla.com: could not connect to host
homeremodelingcontractorsca.com: did not receive HSTS header
+homes-in-norcal.com: did not receive HSTS header
+homes-in-stockton.com: did not receive HSTS header
homesandal.com: did not receive HSTS header
homeseller.co.uk: could not connect to host
homesfordinner.ca: did not receive HSTS header
+homestay.id: did not receive HSTS header
homeyantra.com: did not receive HSTS header
homezhi.com.tw: could not connect to host
homoglyph.net: could not connect to host
@@ -8577,22 +10241,25 @@ 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
+hoodiecrow.com: did not receive HSTS header
hoodoo.io: could not connect to host
hoodoo.tech: could not connect to host
hookandloom.com: did not receive HSTS header
-hoooc.com: did not receive HSTS header
hoopsacademyusa.com: could not connect to host
+hootworld.net: could not connect to host
hopemeet.info: could not connect to host
hopesb.org: did not receive HSTS header
hopewellproperties.co.uk: did not receive HSTS header
hopglass.eu: could not connect to host
hopglass.net: could not connect to host
+hopo.design: could not connect to host
+hoponmedia.de: could not connect to host
+hor.website: could not connect to host
horace.li: did not receive HSTS header
horisonttimedia.fi: did not receive HSTS header
-horizonlawncare.tk: could not connect to host
horizonmoto.fr: did not receive HSTS header
horizonresourcesinc.com: could not connect to host
+horizonshypnosis.ca: did not receive HSTS header
horkel.cf: could not connect to host
horning.co: did not receive HSTS header
hornyforhanzo.com: could not connect to host
@@ -8603,6 +10270,7 @@ hortifarm.ro: did not receive HSTS header
horvathtom.com: could not connect to host
horvatnyelvkonyv.hu: could not connect to host
host.black: could not connect to host
+host97.de: could not connect to host
hostam.link: could not connect to host
hostcoz.com: could not connect to host
hosted-oswa.org: did not receive HSTS header
@@ -8611,77 +10279,92 @@ hostedtalkgadget.google.com: did not receive HSTS header (error ignored - includ
hostelite.com: did not receive HSTS header
hostfuture.co.in: did not receive HSTS header
hostgarou.com: did not receive HSTS header
+hostgigz.com: did not receive HSTS header
+hostico.ro: did not receive HSTS header
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
hostma.ma: could not connect to host
+hostme.co.il: max-age too low: 0
hostserv.org: could not connect to host
+hostworkz.com: did not receive HSTS header
hosyaku.gr.jp: did not receive HSTS header
-hot-spa.ch: did not receive HSTS header
hotartup.com: could not connect to host
+hotcamvids.com: could not connect to host
hotchillibox.co.za: could not connect to host
hotchoc.io: could not connect to host
+hotdoc.com.au: did not receive HSTS header
hotel-huberhof.at: did not receive HSTS header
+hotelarevalo.com: max-age too low: 0
hotelaustria-wien.at: did not receive HSTS header
hotello.io: could not connect to host
hotelmadhuwanvihar.com: could not connect to host
+hotelromacuernavaca.com.mx: did not receive HSTS header
hotelvictoriaoax-mailing.com: could not connect to host
hotelvillahermosa-mailing.com: could not connect to host
-hotelvue.nl: could not connect to host
-hotesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hotelvue.nl: did not receive HSTS header
+hotesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
hotesb.net: could not connect to host
-hotjuice.com: could not connect to host
-hotornot.com: could not connect to host
+hoto.us: could not connect to host
+hotplug.gr: could not connect to host
hotpoint-training.com: did not receive HSTS header
hottestwebcamgirls.org: could not connect to host
+houhaoyi.com: max-age too low: 0
houkago-step.com: did not receive HSTS header
-houseinvestor.com: could not connect to host
+house-of-japan.co.jp: did not receive HSTS header
+houseinvestor.com: did not receive HSTS header
housemaadiah.org: could not connect to host
housetalk.ru: did not receive HSTS header
housingstudents.org.uk: could not connect to host
how2fsbo.com: could not connect to host
-howardwatts.co.uk: did not receive HSTS header
+how2play.pl: did not receive HSTS header
+howardwatts.co.uk: could not connect to host
howfargames.com: could not connect to host
howrandom.org: could not connect to host
-howsmytls.com: could not connect to host
+howtocommunicate.com.au: did not receive HSTS header
howtocuremysciatica.com: could not connect to host
howtofreelance.com: did not receive HSTS header
+howtogeekpro.com: could not connect to host
howtoinstall.co: did not receive HSTS header
hozinga.de: could not connect to host
hpctecnologias.com: did not receive HSTS header
hpeditor.tk: could not connect to host
hpepub.asia: could not connect to host
-hpepub.com: could not connect to host
-hpepub.org: did not receive HSTS header
hpnow.com.br: could not connect to host
hppub.info: could not connect to host
hppub.org: could not connect to host
hppub.site: could not connect to host
+hqhh.org: could not connect to host
hqhost.net: did not receive HSTS header
-hqq.tv: could not connect to host
hqy.moe: did not receive HSTS header
hr-intranet.com: could not connect to host
hr-tech.store: could not connect to host
hr98.tk: could not connect to host
hr98.xyz: could not connect to host
+hrabogados.com: could not connect to host
hrackydomino.cz: did not receive HSTS header
+hrbl.lc: could not connect to host
hrfhomelottery.com: did not receive HSTS header
hrjfeedstock.com: did not receive HSTS header
-hrk.io: could not connect to host
+hrk.io: did not receive HSTS header
+hro.to: could not connect to host
+hrobert.hu: could not connect to host
+hrstapps-dev.com: 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
hserver.top: could not connect to host
hsex.tv: did not receive HSTS header
hsir.me: could not connect to host
-hsn.com: could not connect to host
hsts-preload-test.xyz: could not connect to host
+hsts-webapp.azurewebsites.net: could not connect to host
hsts.com.br: could not connect to host
hsts.date: could not connect to host
hstspreload.me: could not connect to host
hsulei.com: could not connect to host
hszhyy120.com: could not connect to host
+htcp99.com: could not connect to host
htlball.at: could not connect to host
html-lab.tk: could not connect to host
htp2.top: could not connect to host
@@ -8689,74 +10372,105 @@ http418.xyz: could not connect to host
httphacker.com: could not connect to host
https.ps: could not connect to host
https.ren: could not connect to host
+httpsecurityreport.com: could not connect to host
httpstatuscode418.xyz: could not connect to host
httptest.net: could not connect to host
-hua-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-hua-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-hua-li88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-hua-li88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-huang-haitao.com: did not receive HSTS header
+hu8188.com: could not connect to host
+hu8518.com: could not connect to host
+hu8555.com: could not connect to host
+hu8588.com: could not connect to host
+hu8777.com: could not connect to host
+hu8bet.com: could not connect to host
+hu8hu8.com: could not connect to host
+hua-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hua-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hua-li88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hua-li88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+huabianwa.com: did not receive HSTS header
huangguancq.com: could not connect to host
+huangjia71.com: could not connect to host
+huangjia72.com: could not connect to host
+huangjia73.com: could not connect to host
+huangjia74.com: could not connect to host
+huangjia75.com: could not connect to host
+huangjia76.com: could not connect to host
+huangjia77.com: could not connect to host
+huangjia777.com: could not connect to host
+huangjia78.com: could not connect to host
+huangjia79.com: could not connect to host
+huangjia99.com: could not connect to host
huangliangbo.com: did not receive HSTS header
huangting.me: did not receive HSTS header
huangzenghao.com: could not connect to host
huarongdao.com: did not receive HSTS header
-huaxueba.com: could not connect to host
-hubert.systems: did not receive HSTS header
+huaxueba.com: did not receive HSTS header
hubertmoszka.pl: could not connect to host
hubrecht.at: could not connect to host
hubrick.com: could not connect to host
hudhaifahgoga.co.za: could not connect to host
hudingyuan.cn: could not connect to host
+huffsinsurance.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hughtodd.ink: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
hugizrecords.com: did not receive HSTS header
+hugo6.com: could not connect to host
hugocollignon.fr: could not connect to host
-hui-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-hui-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hui-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hui-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+hui89119.com: max-age too low: 0
+huirongis.me: 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
+hukutuu.com: did not receive HSTS header
hulsoft.co.uk: could not connect to host
humanexperiments.com: could not connect to host
humankode.com: did not receive HSTS header
humblebee.es: could not connect to host
humblefinances.com: could not connect to host
humeurs.net: could not connect to host
+humorcaliente.com: could not connect to host
humorce.com: did not receive HSTS header
humortuga.pt: did not receive HSTS header
hump.dk: could not connect to host
+humpchies.com: did not receive HSTS header
humpi.at: could not connect to host
humpteedumptee.in: did not receive HSTS header
-hunqz.com: could not connect to host
+hundeformel.de: could not connect to host
hunterjohnson.io: could not connect to host
huodongweb.com: could not connect to host
huongquynh.com: could not connect to host
hup.blue: did not receive HSTS header
hupp.se: could not connect to host
-hurleyhomestead.com: could not connect to host
hurricanelabs.com: did not receive HSTS header
huskybutt.dog: could not connect to host
huskyduvercors.com: did not receive HSTS header
hustle.com: did not receive HSTS header
hustle.life: did not receive HSTS header
+hustunique.com: could not connect to host
huto.ml: could not connect to host
+huwcbjones.uk: could not connect to host
huwjones.me: could not connect to host
+huyaya123.com: max-age too low: 0
huzu.com: did not receive HSTS header
huzurmetal.net: could not connect to host
+hvenetworks.cf: could not connect to host
hveradistributions.com: could not connect to host
+hverdagogkink.no: could not connect to host
+hwaddress.com: max-age too low: 60
hwcine.com: could not connect to host
hwinfo.com: did not receive HSTS header
-hwpkasse.de: max-age too low: 2592000
hyakumachi.com: did not receive HSTS header
+hyansc.com: max-age too low: 0
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: did not receive HSTS header
-hydra.zone: could not connect to host
+hydra.ws: could not connect to host
hydrabit.nl: did not receive HSTS header
-hydrante.ch: could not connect to host
+hydradigital.com.au: did not receive HSTS header
+hydrasolutions.de: 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
@@ -8764,112 +10478,133 @@ 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: did not receive HSTS header
+hydronyx.me: could not connect to host
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
+hypeitems.pl: could not connect to host
hyper-matrix.org: could not connect to host
hyper69.com: could not connect to host
hyperporn.net: could not connect to host
-hyperreal.info: could not connect to host
+hyperreal.info: did not receive HSTS header
hypnoresults.com.au: did not receive HSTS header
hypnos.hu: did not receive HSTS header
hypotheques24.ch: could not connect to host
+hyr.mn: could not connect to host
hysg.me: could not connect to host
-hyvive.com: could not connect to host
+hysh.jp: could not connect to host
+hysolate.com: did not receive HSTS header
+hyvive.com: did not receive HSTS header
+hyyen.com: could not connect to host
hzh.pub: did not receive HSTS header
+i-0v0.in: 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-scream.space: could not connect to host
i-stats.net: could not connect to host
i10z.com: could not connect to host
+i1place.com: did not receive HSTS header
i28s.com: did not receive HSTS header
i496.eu: could not connect to host
i4m1k0su.com: could not connect to host
i66.me: could not connect to host
+i6957.com: could not connect to host
i9multiequipamentos.com.br: could not connect to host
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
iamcarrico.com: did not receive HSTS header
+iamhealthystore.com: could not connect to host
+iaminashittymood.today: could not connect to host
iamlbk.com: could not connect to host
iamlizu.com: did not receive HSTS header
-iamlzh.com: did not receive HSTS header
+iamlzh.com: could not connect to host
iamokay.nl: did not receive HSTS header
iamreubin.co.uk: did not receive HSTS header
iamsoareyou.se: could not connect to host
iamveto.com: did not receive HSTS header
ian.sh: did not receive HSTS header
ianvisits.co.uk: did not receive HSTS header
-iapws.com: did not receive HSTS header
iban.is: could not connect to host
ibarf.nl: did not receive HSTS header
ibase.com: did not receive HSTS header
-ibenchu.com: did not receive HSTS header
-ibestreview.com: did not receive HSTS header
+ibenchu.com: could not connect to host
+ibericarempresas.es: could not connect to host
ibiu.xyz: did not receive HSTS header
ibizatopcharter.com: did not receive HSTS header
+ibkvkk.org: did not receive HSTS header
ibna.online: could not connect to host
ibnuwebhost.com: could not connect to host
ibnw.de: did not receive HSTS header
ibox.ovh: did not receive HSTS header
+iboy1069.com: 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
+ibutikk.no: did not receive HSTS header
icabanken.se: did not receive HSTS header
icaforsakring.se: did not receive HSTS header
icake.life: did not receive HSTS header
icasnetwork.com: did not receive HSTS header
-icbemp.gov: could not connect to host
+icci.info: could not connect to host
ice.yt: could not connect to host
icebat.dyndns.org: could not connect to host
+icebook.co.uk: did not receive HSTS header
icebound.cc: did not receive HSTS header
icebound.win: could not connect to host
iceiu.com: could not connect to host
iceloch.com: could not connect to host
icepink.com.br: could not connect to host
-icewoman.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+icewoman.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
icfl.com.br: could not connect to host
ich-find-den-g.net: could not connect to host
ich-mach-druck.eu: did not receive HSTS header
+ichmachdas.net: did not receive HSTS header
ichnichtskaufmann.de: could not connect to host
ichoosebtec.com: did not receive HSTS header
ichronos.net: did not receive HSTS header
icity.ly: did not receive HSTS header
ickerseashop.com: could not connect to host
icloud.net: could not connect to host
+icnc.ga: did not receive HSTS header
+icnsoft.cf: did not receive HSTS header
+icnsoft.ga: did not receive HSTS header
icnsoft.me: could not connect to host
+icnsoft.ml: did not receive HSTS header
icnsoft.org: could not connect to host
icntorrent.download: could not connect to host
-ico500.com: did not receive HSTS header
+ico500.com: could not connect to host
icondoom.nl: could not connect to host
icpc2016.in.th: could not connect to host
icreative.nl: did not receive HSTS header
+icsadviseurs.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
-idaeus.eu: could not connect to host
-idafauziyah.com: did not receive HSTS header
-idblab.tk: did not receive HSTS header
+id7.fr: could not connect to host
+idafauziyah.com: could not connect to host
+idblab.tk: could not connect to host
+idbs.com: did not receive HSTS header
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
ideadozz.hu: could not connect to host
+idealcontabilidade.net: did not receive HSTS header
idealinflatablehire.co.uk: did not receive HSTS header
idealmoto.com: did not receive HSTS header
idealmykonos.com: did not receive HSTS header
idealvenir.com: did not receive HSTS header
+ideaman924.com: did not receive HSTS header
ideapaisajistas.es: did not receive HSTS header
ideaplus.me: could not connect to host
ideasmeetingpoint.com: could not connect to host
@@ -8881,19 +10616,23 @@ 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
+idid.tk: could not connect to host
idinby.dk: did not receive HSTS header
-idiopolis.org: did not receive HSTS header
+idiopolis.org: could not connect to host
idisplay.es: could not connect to host
+idisposable.co.uk: did not receive HSTS header
idlekernel.com: could not connect to host
idol-bikes.ru: could not connect to host
-idolshop.dk: could not connect to host
+idolshop.dk: did not receive HSTS header
idolshop.me: could not connect to host
idontexist.me: could not connect to host
+idranktoomuch.coffee: did not receive HSTS header
+idrinktoomuch.coffee: did not receive HSTS header
idsafe.co.za: could not connect to host
idsoccer.com: did not receive HSTS header
idyl.fr: did not receive HSTS header
-iec.pe: could not connect to host
ieedes.com: did not receive HSTS header
+ieffalot.me: did not receive HSTS header
iemas.azurewebsites.net: did not receive HSTS header
iemb.cf: could not connect to host
ierna.com: did not receive HSTS header
@@ -8904,33 +10643,41 @@ iewar.com: could not connect to host
iexpert9.com: did not receive HSTS header
if0.ru: could not connect to host
ifad.org: did not receive HSTS header
-ifamily.top: did not receive HSTS header
+ifamily.top: could not connect to host
ifan.ch: could not connect to host
ifastuniversity.com: did not receive HSTS header
ifcfg.jp: could not connect to host
ifcfg.me: could not connect to host
ifconfig.co: did not receive HSTS header
-ifengge.cn: did not receive HSTS header
-ifengge.me: did not receive HSTS header
+ifixe.ch: did not receive HSTS header
ifleurs.com: could not connect to host
ifly.pw: could not connect to host
+ifreetion.cn: could not connect to host
+ifreetion.com: did not receive HSTS header
ifroheweihnachten.net: did not receive HSTS header
+iftarsaati.org: did not receive HSTS header
ifx.ee: could not connect to host
ifxnet.com: could not connect to host
ifxor.com: could not connect to host
+ifyou.live: could not connect to host
igamingforums.com: could not connect to host
igaryhe.io: did not receive HSTS header
igd.chat: could not connect to host
igforums.com: did not receive HSTS header
+igi-2.com: could not connect to host
igi.codes: could not connect to host
-igiftcards.de: did not receive HSTS header
-igiftcards.nl: did not receive HSTS header
+igm-be.ch: did not receive HSTS header
ignatisd.gr: did not receive HSTS header
+ignitedmindz.in: could not connect to host
+igsmgmt.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
igule.net: could not connect to host
-iha6.com: could not connect to host
+igva.or.kr: could not connect to host
+ihakkitekin.com: could not connect to host
ihatethissh.it: could not connect to host
+ihc.im: did not receive HSTS header
ihcr.top: did not receive HSTS header
-iheartmary.org: max-age too low: 604800
+ihls.stream: did not receive HSTS header
+ihls.world: did not receive HSTS header
ihls.xyz: could not connect to host
ihongzu.com: could not connect to host
ihrlotto.de: could not connect to host
@@ -8941,49 +10688,56 @@ ihzys.com: could not connect to host
iide.co: did not receive HSTS header
iideaz.org: could not connect to host
iilin.com: did not receive HSTS header
+iimarckus.org: could not connect to host
+iirii.com: could not connect to host
iispeed.com: did not receive HSTS header
ijn-dd.nl: could not connect to host
ijoda.com: did not receive HSTS header
ijr.com: did not receive HSTS header
-ike.io: did not receive HSTS header
+ik-life.com: did not receive HSTS header
+ike.io: could not connect to host
+ikebuku.ro: could not connect to host
ikenmeyer.com: could not connect to host
ikenmeyer.eu: could not connect to host
-ikiler.com: could not connect to host
ikocik.sk: could not connect to host
ikon.name: could not connect to host
+ikools.com: did not receive HSTS header
+iktisatbank.com: did not receive HSTS header
ikudo.top: could not connect to host
+ikumi.us: could not connect to host
+ikuuuu.com: did not receive HSTS header
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
ilgi.work: could not connect to host
+ilhansubasi.com: did not receive HSTS header
iliasdeli.nl: did not receive HSTS header
ilii.me: could not connect to host
ilikerainbows.co: did not receive HSTS header
ilikerainbows.co.uk: could not connect to host
-ilikfreshweedstores.com: 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
+iloli.name: could not connect to host
ilona.graphics: did not receive HSTS header
iltisim.ch: did not receive HSTS header
iluvscotland.co.uk: did not receive HSTS header
im-design.com.ua: did not receive HSTS header
imadalin.ro: could not connect to host
image.tf: could not connect to host
-imagecurl.com: could not connect to host
-imagecurl.org: could not connect to host
imagenesdedibujosalapizfacilesdehacer.com: could not connect to host
imaginarymakings.me: could not connect to host
imakepoems.net: could not connect to host
-imanhearts.com: max-age too low: 0
+imanhearts.com: could not connect to host
imanudin.net: did not receive HSTS header
+imaple.org: could not connect to host
+imask.ml: could not connect to host
imbrian.org: could not connect to host
-imed.com.pt: did not receive HSTS header
-imed.pt: did not receive HSTS header
imedes.de: did not receive HSTS header
imedi.it: could not connect to host
+imefuniversitario.org: could not connect to host
+imeifacil.com: did not receive HSTS header
imfromthefuture.com: did not receive HSTS header
imgencrypt.com: could not connect to host
imgul.net: could not connect to host
@@ -8994,16 +10748,17 @@ imlinan.cn: could not connect to host
imlinan.com: could not connect to host
imlinan.info: could not connect to host
imlinan.net: could not connect to host
-imlonghao.com: did not receive HSTS header
immanuel60.hu: did not receive HSTS header
immaternity.com: could not connect to host
+immersa.co.uk: did not receive HSTS header
immersionwealth.com: could not connect to host
immersivewebportal.com: could not connect to host
-immo-vk.de: did not receive HSTS header
+immigrantdad.com: could not connect to host
+immigrationdirect.com.au: did not receive HSTS header
+immo-vk.de: could not connect to host
immobiliarecapitani.com: did not receive HSTS header
immobilien-wallat.de: could not connect to host
-immobilier-nice.fr: could not connect to host
-immoprotect.ca: did not receive HSTS header
+immoprotect.ca: could not connect to host
immortals-co.com: did not receive HSTS header
immoverkauf24.at: did not receive HSTS header
immoverkauf24.de: did not receive HSTS header
@@ -9013,15 +10768,15 @@ 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.press: did not receive HSTS header
immunicity.rocks: could not connect to host
immunicity.st: did not receive HSTS header
immunicity.today: could not connect to host
-immunicity.top: could not connect to host
+immunicity.top: did not receive HSTS header
immunicity.win: could not connect to host
immunicity.works: could not connect to host
-immunicity.world: could not connect to host
-imoe.ac.cn: could not connect to host
+immunicity.world: did not receive HSTS header
+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
@@ -9031,37 +10786,44 @@ imperdin.com: could not connect to host
imperdintechnologies.com: could not connect to host
imperialonlinestore.com: did not receive HSTS header
imperialwebsolutions.com: did not receive HSTS header
+imperiumnova.info: could not connect to host
+impex.com.bd: did not receive HSTS header
+implicitdenial.com: could not connect to host
imprenta-es.com: did not receive HSTS header
+impressivebison.eu: did not receive HSTS header
improvingwp.com: could not connect to host
impulse-clan.de: could not connect to host
+impulsionsa.com: could not connect to host
imrejonk.nl: could not connect to host
imu.li: did not receive HSTS header
imusic.dk: did not receive HSTS header
imy.life: did not receive HSTS header
-imydl.com: max-age too low: 2592000
inandeyes.com: did not receive HSTS header
inb4.us: could not connect to host
+inbox-group.com: did not receive HSTS header
+inbox.google.com: did not receive HSTS header (error ignored - included regardless)
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]
+inboxen.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\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
+indarceky.sk: did not receive HSTS header
+independent-operators.com: could not connect to host
inderagamono.net: could not connect to host
indesit-training.com: did not receive HSTS header
index-games.com: could not connect to host
indexyz.me: could not connect to host
indianapolislocksmithinc.com: did not receive HSTS header
indiawise.co.uk: could not connect to host
-indiecert.net: did not receive HSTS header
+indiecert.net: could not connect to host
indieethos.com: did not receive HSTS header
indiemods.com: did not receive HSTS header
indien.guide: could not connect to host
-indigitalagency.com: could not connect to host
indilens.com: did not receive HSTS header
indiraactive.com: could not connect to host
indiroyunu.com: did not receive HSTS header
+indochina.io: could not connect to host
indogerman.de: could not connect to host
indogermantrade.de: could not connect to host
indoorplantsexpert.com: did not receive HSTS header
@@ -9074,13 +10836,18 @@ industreiler.com.br: could not connect to host
industriasrenova.com: could not connect to host
industrybazar.com: did not receive HSTS header
ineed.com.mt: could not connect to host
+inesfinc.es: could not connect to host
+inetpub.cn: did not receive HSTS header
inevitavelbrasil.com.br: 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
+inffin-tec.de: could not connect to host
infilock.com: could not connect to host
infinether.net: could not connect to host
-infinite.hosting: did not receive HSTS header
+infinite.hosting: could not connect to host
+infinitegroup.info: did not receive HSTS header
+infinitiofaugustaparts.com: could not connect to host
infinitiofmarinparts.com: could not connect to host
infinitude.me.uk: could not connect to host
infinitude.xyz: could not connect to host
@@ -9091,45 +10858,52 @@ infinity-freedom.de: could not connect to host
infinity-lifestyle.de: could not connect to host
infinity.to: could not connect to host
infinityengine.org: could not connect to host
+inflatadays.co.uk: could not connect to host
inflate-a-bubbles.co.uk: did not receive HSTS header
+inflated.cloud: could not connect to host
inflation.ml: could not connect to host
-influencerchampions.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
influxus.com: could not connect to host
-infmed.com: could not connect to host
info-bay.com: could not connect to host
+info-d-74.com: did not receive HSTS header
info-sys.tk: could not connect to host
-infoamin.com: did not receive HSTS header
+infoamin.com: could not connect to host
infobalkans.com: did not receive HSTS header
-infocity-tech.fr: could not connect to host
infopagina.es: did not receive HSTS header
-inforaga.com: could not connect to host
+infopier.sg: could not connect to host
+infopulsa.com: could not connect to host
+inforaga.com: did not receive HSTS header
inforichjapan.com: did not receive HSTS header
inforisposte.com: did not receive HSTS header
+informaciondeciclismo.com: could not connect to host
informaticapremium.com: did not receive HSTS header
informatik.zone: could not connect to host
infos-generation.com: did not receive HSTS header
infosec.rip: could not connect to host
infosimmo.com: did not receive HSTS header
infosoph.org: did not receive HSTS header
+infoteka.pw: max-age too low: 0
infotics.es: did not receive HSTS header
-infovae-idf.com: did not receive HSTS header
+infovae-idf.com: could not connect to host
+infoweb.ee: did not receive HSTS header
infoworm.org: could not connect to host
-infr.red: did not receive HSTS header
+infr.red: could not connect to host
infra.press: could not connect to host
infradio.am: could not connect to host
infranix.eu: max-age too low: 7360000
infura.co.th: could not connect to host
-ing-buero-junk.de: did not receive HSTS header
-ing89.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-ing89.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+infuse-mn.gov: did not receive HSTS header
+ing89.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+ing89.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
ingalabs.hu: could not connect to host
-ingalls.run: could not connect to host
+ingatlanneked.hu: could not connect to host
ingenium.si: did not receive HSTS header
+ingerhy.com: could not connect to host
ingesol.fr: did not receive HSTS header
-ingresscode.cn: did not receive HSTS header
+ingredientdaddy.ro: did not receive HSTS header
+ingresscode.cn: could not connect to host
inhelix.com: could not connect to host
inhive.group: did not receive HSTS header
-initrd.net: could not connect to host
+inios.fr: did not receive HSTS header
injapan.nl: could not connect to host
injertoshorticolas.com: did not receive HSTS header
injust.cf: could not connect to host
@@ -9139,9 +10913,10 @@ 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
+inkeliz.com: could not connect to host
+inkihost.com: did not receive HSTS header
inkstory.gr: did not receive HSTS header
inksupply.com: did not receive HSTS header
inku.ovh: did not receive HSTS header
@@ -9150,14 +10925,15 @@ inleaked.com: could not connect to host
inme.ga: did not receive HSTS header
inmoodforsex.com: could not connect to host
innerform.com: could not connect to host
-innit.be: could not connect to host
+innit.be: did not receive HSTS header
innobatics.com: did not receive HSTS header
innophate-security.nl: could not connect to host
innovamag.ca: did not receive HSTS header
+innovateohio.gov: could not connect to host
innovativebuildingsolutions.co.za: could not connect to host
innovativeideaz.org: could not connect to host
innoventure.de: could not connect to host
-inondation.ch: could not connect to host
+innsalzachsingles.de: did not receive HSTS header
inorder.website: could not connect to host
inovat.ma: did not receive HSTS header
inovatec.com: did not receive HSTS header
@@ -9170,17 +10946,21 @@ insane-bullets.com: could not connect to host
insane.zone: could not connect to host
inschrijfformulier.com: could not connect to host
inscript.pl: could not connect to host
+inserzioni-ticino.ch: could not connect to host
insideofgaming.de: could not connect to host
insightera.co.th: did not receive HSTS header
insite-feedback.com: could not connect to host
+insofttransfer.com: could not connect to host
+insolent.ch: could not connect to host
insouciant.org: could not connect to host
-inspirationalquotesuk.co.uk: could not connect to host
+insping.com: could not connect to host
+inspirationalquotesuk.co.uk: did not receive HSTS header
inspirationconcepts.nl: did not receive HSTS header
inspire-av.com: did not receive HSTS header
-inspired-creations.co.za: did not receive HSTS header
inspiroinc.com: could not connect to host
inst.mobi: did not receive HSTS header
instacart.com: did not receive HSTS header
+instalador-electrico.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
@@ -9195,11 +10975,11 @@ instasex.ch: could not connect to host
instawi.com: could not connect to host
instinctive.io: did not receive HSTS header
institutoflordelavida.com: could not connect to host
-institutolancaster.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]
+institutulcultural.ro: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\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
+insurgentsmustdie.com: could not connect to host
int-ext-design.fr: could not connect to host
int-ma.in: did not receive HSTS header
intae.it: did not receive HSTS header
@@ -9214,9 +10994,10 @@ intelbet.ro: did not receive HSTS header
intelhost.net: max-age too low: 0
intelldynamics.com: could not connect to host
intelliance.eu: did not receive HSTS header
+intensifyrsvp.com.au: did not receive HSTS header
interabbit.co: could not connect to host
+interabbit.com: did not receive HSTS header
interboursegeneva.ch: did not receive HSTS header
-interchanges.io: max-age too low: 0
interference.io: did not receive HSTS header
interfesse.net: could not connect to host
interfloraservices.co.uk: could not connect to host
@@ -9224,20 +11005,16 @@ 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
-interguard.net: could not connect to host
interhosts.co.za: could not connect to host
interim-cto.de: could not connect to host
interiorcheapo.com: could not connect to host
-interiordesignsconcept.com: could not connect to host
interiortradingco.com.au: could not connect to host
interleucina.org: did not receive HSTS header
interlocal.co.uk: did not receive HSTS header
interlun.com: could not connect to host
-intermezzo-emmerich.de: did not receive HSTS header
-intermezzo-emmerich.nl: did not receive HSTS header
+intermezzo-emmerich.nl: could not connect to host
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
internetbugbounty.org: did not receive HSTS header
internetcasinos.de: could not connect to host
@@ -9246,11 +11023,10 @@ internetdentalalliance.com: did not receive HSTS header
internetradiocharts.de: did not receive HSTS header
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
-interserved.com: max-age too low: 0
interspot.nl: could not connect to host
interstellarhyperdrive.com: could not connect to host
+interview-suite.com: did not receive HSTS header
interviewpipeline.co.uk: could not connect to host
intervisteperstrada.com: could not connect to host
intexplore.org: could not connect to host
@@ -9259,51 +11035,59 @@ intimastoreatacado.com.br: could not connect to host
intimateperrierjouet.com: could not connect to host
intimici.com.br: could not connect to host
intimtoy.com.ua: could not connect to host
+intl-webs.com: could not connect to host
+intocities.de: could not connect to host
intracom.com: did not receive HSTS header
intranetsec.fr: could not connect to host
intreaba.xyz: could not connect to host
-intrigue3d.com: could not connect to host
introverted.ninja: did not receive HSTS header
introvertedtravel.space: max-age too low: 0
intune.life: could not connect to host
invenio.software: could not connect to host
-inventoryexpress.xyz: could not connect to host
inverselink.com: could not connect to host
inversioneseconomicas.com: could not connect to host
investcountry.com: did not receive HSTS header
+investigatore.it: could not connect to host
investingdiary.cn: could not connect to host
investingtrader.net: could not connect to host
-investnext.com: max-age too low: 43200
investorloanshub.com: could not connect to host
invictusmc.uk: could not connect to host
invinsec.cloud: did not receive HSTS header
-invinsec.com: max-age too low: 86400
invis.net: could not connect to host
+invisibles.ch: could not connect to host
+invisionita.com: did not receive HSTS header
invitation-factory.tk: could not connect to host
invite24.pro: could not connect to host
+invoicefinance.com: did not receive HSTS header
+invoicefinance.nl: did not receive HSTS header
invuelto.com: did not receive HSTS header
-iodev.nl: could not connect to host
+inxtravel.com.br: could not connect to host
+iodev.nl: did not receive HSTS header
iodice.org: did not receive HSTS header
+iodine.com: did not receive HSTS header
iodu.re: could not connect to host
ioerror.us: did not receive HSTS header
ioiart.eu: could not connect to host
iolife.dk: could not connect to host
ionas-law.ro: did not receive HSTS header
ionc.ca: could not connect to host
-ionicisere.com: did not receive HSTS header
+ionicisere.com: could not connect to host
ionote.me: could not connect to host
-iop.intuit.com: max-age too low: 86400
+ionovia.de: did not receive HSTS header
iora.fr: could not connect to host
+iosjailbreakiphone.com: could not connect to host
iostips.ru: could not connect to host
iotfen.com: could not connect to host
iotsms.io: could not connect to host
ip-life.net: did not receive HSTS header
ip.or.at: could not connect to host
+ip2country.info: did not receive HSTS header
ip6.im: did not receive HSTS header
ipadportfolioapp.com: did not receive HSTS header
ipawind.com: did not receive HSTS header
ipbill.org.uk: could not connect to host
ipcfg.me: could not connect to host
+ipconsulting.se: could not connect to host
ipfp.pl: did not receive HSTS header
iphonechina.net: did not receive HSTS header
iphoneportfolioapp.com: did not receive HSTS header
@@ -9323,40 +11107,39 @@ iprice.vn: did not receive HSTS header
ipricethailand.com: did not receive HSTS header
iprody.com: could not connect to host
ipsilon-project.org: did not receive HSTS header
-ipstoragesolutions.com: did not receive HSTS header
+ipssl.li: could not connect to host
iptel.ro: could not connect to host
iptvmakedonija.mk: did not receive HSTS header
ipuservicedesign.com: could not connect to host
-ipv6.watch: could not connect to host
+ipv6.watch: did not receive HSTS header
ipv6cloud.club: could not connect to host
ipv6demo.de: could not connect to host
ipv6only.network: could not connect to host
ipv8.net: could not connect to host
ipvsec.nl: could not connect to host
iqcn.co: could not connect to host
-iqualtech.com: max-age too low: 7889238
ir-saitama.com: could not connect to host
iran-geo.com: could not connect to host
iran-poll.org: could not connect to host
-irandp.net: could not connect to host
+irandp.net: did not receive HSTS header
iranianlawschool.com: could not connect to host
iraqidinar.org: did not receive HSTS header
-irasandi.com: could not connect to host
-irazimina.ru: could not connect to host
+irazimina.ru: did not receive HSTS header
irccloud.com: did not receive HSTS header
ircmett.de: did not receive HSTS header
iready.ro: could not connect to host
irelandesign.com: could not connect to host
-irinkeby.nu: did not receive HSTS header
+irinkeby.nu: could not connect to host
irische-segenswuensche.info: could not connect to host
+irisdesideratum.com: could not connect to host
irisdina.de: could not connect to host
-irishmusic.nu: did not receive HSTS header
+irishmusic.nu: could not connect to host
irland.guide: could not connect to host
-irmtrudjurke.de: could not connect to host
+irmtrudjurke.de: did not receive HSTS header
+iro-iro.xyz: could not connect to host
iron-guard.net: did not receive HSTS header
ironbelly.pro: could not connect to host
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
irugs.com.sg: did not receive HSTS header
@@ -9364,24 +11147,28 @@ irukandjilabs.com: could not connect to host
irun-telecom.co.uk: could not connect to host
irvinepa.org: max-age too low: 10540800
is-a-furry.org: did not receive HSTS header
-isaackabel.cf: could not connect to host
-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
+is-sw.net: could not connect to host
+isaac.world: did not receive HSTS header
+isarklinikum.de: did not receive HSTS header
+isastylish.com: could not connect to host
+isc2chapter-cny.org: could not connect to host
ischool.co.jp: did not receive HSTS header
isdecolaop.nl: could not connect to host
isdf.me: could not connect to host
isdown.cz: could not connect to host
-isef-eg.com: did not receive HSTS header
-iserv.fr: could not connect to host
+isdr-bukavu.net: could not connect to host
+isef-eg.com: could not connect to host
+iserv.fr: did not receive HSTS header
+iservicio.com.mx: could not connect to host
iseulde.com: could not connect to host
isfff.com: could not connect to host
isfriday.com: could not connect to host
ishadowsocks.ltd: could not connect to host
ishet.al: max-age too low: 0
ishillaryclintoninprisonyet.com: could not connect to host
+ishome.org: could not connect to host
isidom.fr: did not receive HSTS header
+isinolsun.com: did not receive HSTS header
isipulsa.web.id: did not receive HSTS header
isisfighters.info: could not connect to host
isitamor.pm: could not connect to host
@@ -9389,44 +11176,48 @@ 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
-islamonline.net: did not receive HSTS header
-islandinthenet.com: did not receive HSTS header
islandlakeil.gov: could not connect to host
-islandoilsupply.com: max-age too low: 300
islandpumpandtank.com: did not receive HSTS header
islandzero.net: could not connect to host
islazia.fr: did not receive HSTS header
+ismetroonfiretoday.com: 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
isondo.com: could not connect to host
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]
+ispringcloud.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+ispsoft.pro: could not connect to host
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
+issuesofconcern.in: did not receive HSTS header
istanbultravelguide.info: could not connect to host
istaspirtslietas.lv: did not receive HSTS header
istgame.com: did not receive HSTS header
isthefieldcontrolsystemdown.com: could not connect to host
istherrienstillcoach.com: could not connect to host
isthisus.org: could not connect to host
+isyu.xyz: could not connect to host
+isz-berlin.de: did not receive HSTS header
iszy.me: could not connect to host
it-cave.com: could not connect to host
it-enthusiasts.tech: could not connect to host
it-go.net: did not receive HSTS header
it-labor.info: did not receive HSTS header
it-schwerin.de: could not connect to host
+it-seems-to.work: could not connect to host
it-world.eu: could not connect to host
itad.top: could not connect to host
+italyinspires.com: could not connect to host
itblog.pp.ua: could not connect to host
itbrief.co.nz: did not receive HSTS header
itbrief.com.au: did not receive HSTS header
itchimes.com: did not receive HSTS header
-itchybrainscentral.com: could not connect to host
+itcko.sk: max-age too low: 0
itds-consulting.com: could not connect to host
itds-consulting.cz: could not connect to host
itds-consulting.eu: could not connect to host
@@ -9436,17 +11227,22 @@ itemton.com: could not connect to host
iterasoft.de: did not receive HSTS header
itfaq.nl: did not receive HSTS header
itfensi.net: could not connect to host
+itfly.xyz: did not receive HSTS header
itforcc.com: did not receive HSTS header
+itforge.nl: did not receive HSTS header
itgirls.rs: could not connect to host
ithakama.com: could not connect to host
itinsight.hu: did not receive HSTS header
+itinthebubble.com: could not connect to host
itiomassagem.com.br: did not receive HSTS header
itisjustnot.cricket: could not connect to host
-itmanie.cz: could not connect to host
+itjob.ma: max-age too low: 0
+itlitera.com: 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
+itouriria.com: could not connect to host
itpol.dk: did not receive HSTS header
itpro-mg.de: could not connect to host
itproject.guru: could not connect to host
@@ -9454,13 +11250,13 @@ itrack.in.th: could not connect to host
itriskltd.com: did not receive HSTS header
its-schindler.de: could not connect to host
its-v.de: could not connect to host
+its4living.com: could not connect to host
itsadog.co.uk: did not receive HSTS header
itsagadget.com: did not receive HSTS header
-itsamurai.ru: max-age too low: 2592000
+itsanicedoor.co.uk: could not connect to host
itsatrap.nl: could not connect to host
itsecurityassurance.pw: could not connect to host
itsg-faq.de: could not connect to host
-itshka.rv.ua: could not connect to host
itshost.ru: could not connect to host
itskayla.com: did not receive HSTS header
itsmejohn.org: could not connect to host
@@ -9476,84 +11272,94 @@ ivi-co.com: max-age too low: 0
ivi-fertilite.fr: max-age too low: 0
ivi-fertility.com: max-age too low: 0
ivi-fruchtbarkeit.de: max-age too low: 0
-ivi.com.ar: did not receive HSTS header
+ivi.com.ar: max-age too low: 0
ivi.com.pa: max-age too low: 0
-ivi.es: did not receive HSTS header
-ivi.mx: could not connect to host
+ivi.es: max-age too low: 0
+ivi.mx: did not receive HSTS header
ivi.net.br: max-age too low: 0
ivi.pt: max-age too low: 0
-ivinet.cl: did not receive HSTS header
+ivinet.cl: max-age too low: 0
ivitalia.it: max-age too low: 0
ivk.website: could not connect to host
-ivklombard.ru: did not receive HSTS header
+ivklombard.ru: could not connect to host
ivoryonsunset.com: could not connect to host
ivxv.ee: could not connect to host
+ivy.show: did not receive HSTS header
ivyshop.com.br: could not connect to host
iwannarefill.com: could not connect to host
+iwebolutions.com: did not receive HSTS header
iwex.swiss: could not connect to host
iwilcox.me.uk: could not connect to host
-iwos.io: could not connect to host
+iwos.io: did not receive HSTS header
iwpbk.com: could not connect to host
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]
+iwyc.cn: did not receive HSTS header
+ix.mk: did not receive HSTS header
+ix8.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\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
iyoumu.top: could not connect to host
-izaakbeekman.com: max-age too low: 2592000
-izdiwho.com: could not connect to host
+izaakbeekman.com: did not receive HSTS header
+izanah.com: did not receive HSTS header
+izdiwho.com: did not receive HSTS header
+izhaojie.com: could not connect to host
izolight.ch: could not connect to host
izonemart.com: did not receive HSTS header
izoox.com: did not receive HSTS header
-izxxs.com: could not connect to host
-izxxs.net: could not connect to host
-izxzw.net: could not connect to host
izzzorgconcerten.nl: could not connect to host
-j-eck.nl: did not receive HSTS header
+j-eck.nl: could not connect to host
j-lsolutions.com: could not connect to host
j-rickroll-a.pw: could not connect to host
+j-robertson.com: did not receive HSTS header
j0ng.xyz: could not connect to host
j15t98j.co.uk: did not receive HSTS header
j2ee.cz: could not connect to host
-j8y.de: did not receive HSTS header
-ja-publications.agency: did not receive HSTS header
+j6957.com: could not connect to host
+j8y.de: could not connect to host
+ja-dyck.de: could not connect to host
ja-publications.com: did not receive HSTS header
ja.md: did not receive HSTS header
jaan.su: could not connect to host
jaaxypro.com: could not connect to host
jabba.homelinux.org: could not connect to host
-jabbas.eu: could not connect to host
-jability.ovh: could not connect to host
-jack2celebrities.com: could not connect to host
jackalworks.com: could not connect to host
jackdoan.com: did not receive HSTS header
jackfahnestock.com: could not connect to host
+jackfletcher.me: could not connect to host
+jackingramnissanparts.com: could not connect to host
jackops.com: could not connect to host
jackrusselterrier.com.br: could not connect to host
+jacksutton.info: could not connect to host
jaco.by: could not connect to host
+jacobdevans.com: could not connect to host
jacobparry.ca: did not receive HSTS header
jacobphono.com: could not connect to host
jacobsenarquitetura.com: max-age too low: 5184000
jadara.info: could not connect to host
-jaepinformatica.com: did not receive HSTS header
+jaduniv.cf: could not connect to host
jagido.de: did not receive HSTS header
jahliveradio.com: did not receive HSTS header
jaimechanaga.com: could not connect to host
jaion.ml: could not connect to host
jaion.tech: could not connect to host
-jak-na-les.cz: did not receive HSTS header
+jaion.xyz: could not connect to host
+jakebeardsley.com: could not connect to host
jakenbake.com: could not connect to host
jakeslab.tech: could not connect to host
jakincode.army: could not connect to host
+jakobdenlinger.com: did not receive HSTS header
jaksel.id: could not connect to host
jaksi.io: could not connect to host
jakubarbet.eu: could not connect to host
jamanji.com.ng: could not connect to host
jamaware.org: could not connect to host
jamberry.com.mx: could not connect to host
+james-digital.com: did not receive HSTS header
james-parker.com: did not receive HSTS header
+james.guru: could not connect to host
james.je: could not connect to host
-jamesandanneke.com: 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
@@ -9562,19 +11368,20 @@ jamesbywater.com: could not connect to host
jamesbywater.me: could not connect to host
jamesbywater.me.uk: could not connect to host
jamesbywater.uk: could not connect to host
+jamesclark.com: did not receive HSTS header
jamesconroyfinn.com: did not receive HSTS header
-jamescostian.com: max-age too low: 0
jamesdoell.com: could not connect to host
jamesdoylephoto.com: did not receive HSTS header
jamesevans.is: could not connect to host
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
+jameshale.me: could not connect to host
jamesl.ml: could not connect to host
jamesmaurer.com: did not receive HSTS header
jamesrains.com: could not connect to host
-jami.am: max-age too low: 0
+jamesrobertson.io: could not connect to host
+jamesrussellward.co.uk: max-age too low: 0
+jamestmart.in: could not connect to host
jamiepeters.nl: did not receive HSTS header
jamjestsimon.pl: could not connect to host
jamourtney.com: could not connect to host
@@ -9582,33 +11389,43 @@ jamyeprice.com: did not receive HSTS header
jan-cermak.cz: did not receive HSTS header
jan-daniels.de: did not receive HSTS header
jan27.org: did not receive HSTS header
+janada.cz: could not connect to host
janario.me: could not connect to host
+jancukers.host: did not receive HSTS header
janduchene.ch: could not connect to host
janebondsurety.com: did not receive HSTS header
jangho.me: could not connect to host
+jangocloud.tk: could not connect to host
janheidler.dynv6.net: could not connect to host
-janking.de: could not connect to host
+janking.de: did not receive HSTS header
janmachynka.cz: could not connect to host
janmg.com: did not receive HSTS header
+janoberst.com: did not receive HSTS header
janosh.com: did not receive HSTS header
+jansen-schilders.nl: did not receive HSTS header
janssen.fm: could not connect to host
janssenwigman.nl: could not connect to host
janus-engineering.de: did not receive HSTS header
janverlaan.nl: did not receive HSTS header
-jap-nope.de: did not receive HSTS header
-japan4you.org: could not connect to host
+jaot.info: did not receive HSTS header
+jap-nope.de: could not connect to host
+japan4you.org: did not receive HSTS header
japanbaths.com: did not receive HSTS header
japaneseemoticons.org: did not receive HSTS header
japanesenames.biz: did not receive HSTS header
-japansm.com: could not connect to host
japanwide.net: did not receive HSTS header
-japaripark.com: could not connect to host
jape.today: could not connect to host
japlex.com: could not connect to host
+japon-japan.com: did not receive HSTS header
jaqen.ch: could not connect to host
+jar.io: did not receive HSTS header
+jardin-exotique-rennes.fr: did not receive HSTS header
jardinderline.ch: could not connect to host
-jardins-utopie.net: could not connect to host
+jardins-utopie.net: did not receive HSTS header
jaredbates.net: did not receive HSTS header
+jaredeberle.org: did not receive HSTS header
+jaredfernandez.com: could not connect to host
+jario.com.br: did not receive HSTS header
jarivisual.com: could not connect to host
jarl.ninja: could not connect to host
jarnail.ca: could not connect to host
@@ -9620,31 +11437,30 @@ jarsater.com: could not connect to host
jartza.org: could not connect to host
jasl.works: could not connect to host
jasmineconseil.com: did not receive HSTS header
+jason.re: did not receive HSTS header
+jasonadam.de: did not receive HSTS header
jasoncosper.com: did not receive HSTS header
jasonian-photo.com: could not connect to host
jasonradin.com: did not receive HSTS header
-jasonrobinson.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+jasonrobinson.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
jasonroe.me: did not receive HSTS header
jasonsansone.com: could not connect to host
jasonwindholz.com: could not connect to host
-jasperhammink.com: did not receive HSTS header
jastoria.pl: did not receive HSTS header
-jastrow.me: did not receive HSTS header
jateng.press: could not connect to host
jav-collective.com: could not connect to host
java-board.com: could not connect to host
javachip.win: could not connect to host
-javan.ga: did not receive HSTS header
+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
-javik.net: did not receive HSTS header
javilacat.info: could not connect to host
jawn.ca: could not connect to host
jawnelodzkie.org.pl: could not connect to host
jaxageto.de: did not receive HSTS header
jayblock.com: did not receive HSTS header
+jaycouture.com: could not connect to host
jayharris.ca: could not connect to host
jaylen.com.ar: did not receive HSTS header
jayna.design: could not connect to host
@@ -9653,49 +11469,53 @@ jayscoaching.com: could not connect to host
jayshao.com: did not receive HSTS header
jazzfeet.co.uk: could not connect to host
jazzinutrecht.info: could not connect to host
+jb159632.com: max-age too low: 0
jballelectronics.com: did not receive HSTS header
jbelien.be: did not receive HSTS header
jbelien.photography: did not receive HSTS header
-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
+jbradaric.me: could not connect to host
+jbrowndesign.me: could not connect to host
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
+jcit.xyz: could not connect to host
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
jcra.net: could not connect to host
-jcraft.us: did not receive HSTS header
+jcraft.us: could not connect to host
jctf.io: could not connect to host
-jcyz.cf: could not connect to host
+jd-group.co.uk: 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: could not connect to host
jdh8.org: did not receive HSTS header
-jdieselmusic.com: did not receive HSTS header
+jdoiron.me: did not receive HSTS header
jdsf.tk: could not connect to host
jean-remy.ch: could not connect to host
+jeancafe.ddns.net: could not connect to host
jebengotai.com: did not receive HSTS header
+jedayoshi.com: could not connect to host
jedayoshi.me: did not receive HSTS header
jedayoshi.tk: could not connect to host
-jeepmafia.com: did not receive HSTS header
jeff.is: could not connect to host
jeff393.com: could not connect to host
-jeffanderson.me: did not receive HSTS header
jeffcasavant.com: did not receive HSTS header
+jeffersonkyattorney.gov: did not receive HSTS header
jeffersonregan.org: could not connect to host
jeffhuxley.com: could not connect to host
jeffreymagee.com: did not receive HSTS header
-jefrydco.id: could not connect to host
+jehovahsays.net: could not connect to host
jeil-makes.co.kr: could not connect to host
jelewa.de: did not receive HSTS header
jellow.nl: did not receive HSTS header
+jelmer.co.uk: could not connect to host
jemoticons.com: did not receive HSTS header
jena.space: could not connect to host
jenjoit.de: could not connect to host
@@ -9707,16 +11527,15 @@ 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
+jenssen.org: could not connect to host
jeparamedia.com: did not receive HSTS header
jeremye77.com: did not receive HSTS header
jeremymade.com: could not connect to host
jeremywagner.me: did not receive HSTS header
-jermann.biz: did not receive HSTS header
jeroenensanne.wedding: could not connect to host
jeroensangers.com: could not connect to host
jeroenvanderwal.nl: did not receive HSTS header
-jeroldirvin.com: did not receive HSTS header
+jeroldirvin.com: could not connect to host
jerrypau.ca: could not connect to host
jesorsenville.com: did not receive HSTS header
jessicah.org: could not connect to host
@@ -9724,24 +11543,24 @@ jesuisformidable.nl: could not connect to host
jesuslucas.com: did not receive HSTS header
jet-code.com: did not receive HSTS header
jetapi.org: could not connect to host
-jetbrains.pw: could not connect to host
+jetbrains.pw: did not receive HSTS header
+jetfirenetworks.com: could not connect to host
jetlagphotography.com: could not connect to host
-jetmirshatri.com: did not receive HSTS header
jeton.com: did not receive HSTS header
jetsetcharge.com: could not connect to host
jetsetpay.com: could not connect to host
-jettravel.com.mt: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+jettlarue.com: could not connect to host
jettshome.org: could not connect to host
jetzt-elektromobil.de: could not connect to host
-jevisite.ca: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+jevisite.ca: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
jewellerydesignstore.com: could not connect to host
jewellerymarvels.com: did not receive HSTS header
jexler.net: could not connect to host
jez.nl: could not connect to host
-jf-fotos.de: could not connect to host
jfmel.com: did not receive HSTS header
-jfmhero.me: did not receive HSTS header
+jfmhero.me: could not connect to host
jfnllc.com: could not connect to host
+jfsa.jp: did not receive HSTS header
jfx.space: did not receive HSTS header
jh-media.eu: could not connect to host
jhburton.co.uk: could not connect to host
@@ -9749,18 +11568,21 @@ jhburton.uk: could not connect to host
jhcommunitysports.co.uk: could not connect to host
jhejderup.me: could not connect to host
jhermsmeier.de: could not connect to host
-jhf.io: could not connect to host
+jhf.io: did not receive HSTS header
+jhuang.me: could not connect to host
jhw-profiles.de: did not receive HSTS header
-jia1hao.com: could not connect to host
+jia1hao.com: did not receive HSTS header
jiacl.com: could not connect to host
jiaidu.com: could not connect to host
jiangzequn.com: could not connect to host
jiangzm.com: could not connect to host
jianjiantv.com: could not connect to host
+jianyuan.pro: could not connect to host
jiaqiang.vip: could not connect to host
+jiatingtrading.com: could not connect to host
jiazhao.ga: could not connect to host
jichi.me: could not connect to host
-jie.dance: could not connect to host
+jieac.cn: could not connect to host
jief.me: could not connect to host
jieyang2016.com: could not connect to host
jigsawdevelopments.com: could not connect to host
@@ -9770,38 +11592,46 @@ jikken.de: could not connect to host
jimas.eu: did not receive HSTS header
jimenacocina.com: did not receive HSTS header
jimgao.tk: did not receive HSTS header
+jimizhou.xyz: could not connect to host
jimmehcai.com: could not connect to host
jimmycn.com: could not connect to host
jimmynelson.com: did not receive HSTS header
jinancy.fr: could not connect to host
-jing-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-jing-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+jing-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+jing-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
jingyuesi.com: could not connect to host
jinliming.ml: could not connect to host
jinmaguoji.com: could not connect to host
+jiosongs.biz: could not connect to host
jiosongs.com: could not connect to host
jira.com: did not receive HSTS header
jirav.io: could not connect to host
+jirosworld.com: did not receive HSTS header
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
+jiyusu.com: did not receive HSTS header
+jiyuu-ni.com: could not connect to host
+jj6957.com: could not connect to host
jjf.org.au: did not receive HSTS header
-jjjconnection.com: could not connect to host
+jjjconnection.com: did not receive HSTS header
+jjlvk.nl: did not receive HSTS header
+jjspartytime.co.uk: could not connect to host
+jjsummerboatparty.co.uk: could not connect to host
jka.io: did not receive HSTS header
jkb.pics: could not connect to host
jkbuster.com: could not connect to host
jkest.cc: could not connect to host
-jkirsche.com: max-age too low: 0
jkng.eu: could not connect to host
jko.works: could not connect to host
-jkuvw.xyz: could not connect to host
+jkuvw.xyz: did not receive HSTS header
+jkv-media.cloud: did not receive HSTS header
jkyuan.tk: could not connect to host
jl-dns.eu: could not connect to host
jl-dns.nl: could not connect to host
jl-exchange.nl: could not connect to host
jl-mail.nl: could not connect to host
-jldp.org: did not receive HSTS header
jlhmedia.com: did not receive HSTS header
jlot.org: did not receive HSTS header
jlpn.eu: could not connect to host
@@ -9809,89 +11639,108 @@ jlpn.nl: could not connect to host
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
+jmk.hu: did not receive HSTS header
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
jmvdigital.com: did not receive HSTS header
+jmx520.com: max-age too low: 0
jn1.me: did not receive HSTS header
-jncde.de: did not receive HSTS header
+jncde.de: could not connect to host
jncie.de: did not receive HSTS header
jncie.eu: did not receive HSTS header
-jncip.de: did not receive HSTS header
-joacimeldre.com: did not receive HSTS header
+jncip.de: could not connect to host
+joacimeldre.com: could not connect to host
joakimalgroy.com: could not connect to host
joaquimgoliveira.pt: did not receive HSTS header
job-offer.de: could not connect to host
+jobbuddy.se: did not receive HSTS header
jobers.ch: did not receive HSTS header
jobers.pt: did not receive HSTS header
jobflyapp.com: could not connect to host
jobmedic.com: could not connect to host
jobmob.co.il: did not receive HSTS header
+jobs-in-tech.com: could not connect to host
jobshq.com: did not receive HSTS header
-jobsnet.eu: could not connect to host
jobss.co.uk: could not connect to host
-jobtestprep.de: max-age too low: 0
-jobtestprep.dk: max-age too low: 0
-jobtestprep.fr: max-age too low: 0
jobtestprep.it: did not receive HSTS header
-jobtestprep.nl: max-age too low: 0
-jobtestprep.se: max-age too low: 0
jodel.ninja: could not connect to host
-jodyshop.com: did not receive HSTS header
-joe-pagan.com: did not receive HSTS header
+joe-pagan.com: could not connect to host
joearodriguez.com: could not connect to host
joecod.es: could not connect to host
+joedinardo.com: did not receive HSTS header
joefixit.co.uk: could not connect to host
+joehenry.co.uk: could not connect to host
+joejohnson.name: did not receive HSTS header
joelgonewild.com: did not receive HSTS header
+joemotherfuckingjohnson.com: did not receive HSTS header
joerg-wellpott.de: did not receive HSTS header
-joerosca.com: could not connect to host
+joesniderman.com: could not connect to host
joetyson.io: could not connect to host
-joeyfelix.com: could not connect to host
joeyvilaro.com: could not connect to host
+jogi-server.de: could not connect to host
+jogorama.com.br: 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: did not receive HSTS header
+johanneskonrad.de: 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
+johngo.tk: did not receive HSTS header
+johnmcc.net: could not connect to host
johnmorganpartnership.co.uk: did not receive HSTS header
-johnrom.com: could not connect to host
-johnsanchez.io: could not connect to host
+johnno.be: could not connect to host
+johnrom.com: did not receive HSTS header
+johnsiu.com: could not connect to host
+johnsonho.net: could not connect to host
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
joker.menu: could not connect to host
+joliet.gov: could not connect to host
+jomofojo.co: did not receive HSTS header
+jomofojo.com: did not receive HSTS header
jomp16.tk: did not receive HSTS header
-jonarcher.info: did not receive HSTS header
+jonarcher.info: could not connect to host
jonas-keidel.de: did not receive HSTS header
jonasgroth.se: did not receive HSTS header
jonathan-apps.com: could not connect to host
jonathan.ir: could not connect to host
jonathandowning.uk: did not receive HSTS header
+jonathanha.as: max-age too low: 0
+jonathanj.nl: did not receive HSTS header
jonathanmassacand.ch: could not connect to host
jonathansanchez.pro: could not connect to host
-jonesopolis.xyz: could not connect to host
+jonathanschle.de: could not connect to host
+jonathanselea.se: could not connect to host
+jonesopolis.xyz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
jonferwerda.net: could not connect to host
jonfor.net: could not connect to host
jongha.me: could not connect to host
jonn.me: could not connect to host
jonnichols.info: could not connect to host
jonsno.ws: could not connect to host
-joostbovee.nl: could not connect to host
+joomlant.org: 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
+jordan-jungk.de: could not connect to host
jordankirby.co.uk: could not connect to host
jordanp.engineer: could not connect to host
-jordanscorporatelaw.com: could not connect to host
jordanstrustcompany.cn: could not connect to host
jordanstrustcompany.ru: could not connect to host
+jordiescudero.com: did not receive HSTS header
jordikroon.nl: could not connect to host
joretapo.fr: could not connect to host
+jorexenterprise.com: could not connect to host
jorgemesa.me: could not connect to host
+jorgerosales.org: did not receive HSTS header
jornadasciberdefensa2016.es: could not connect to host
jorovik.com: did not receive HSTS header
jorrit.info: max-age too low: 0
@@ -9900,6 +11749,7 @@ jose.eti.br: did not receive HSTS header
joseaveleira.es: did not receive HSTS header
josecage.com: could not connect to host
josegerber.ch: did not receive HSTS header
+josephsniderman.net: could not connect to host
josericaurte.com: could not connect to host
joshhoffer.com: could not connect to host
joshi.su: could not connect to host
@@ -9910,23 +11760,22 @@ 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: max-age too low: 86400
joworld.net: could not connect to host
joyceclerkx.com: could not connect to host
joyceseamone.com: did not receive HSTS header
joyjohnston.ca: did not receive HSTS header
jpaglier.com: could not connect to host
-jpbike.cz: could not connect to host
jpcrochetapparel.com: could not connect to host
jpeaches.xyz: could not connect to host
-jpgangbang.com: could not connect to host
-jproxx.com: did not receive HSTS header
jptun.com: could not connect to host
+jr5devdoug.xyz: could not connect to host
+jr5devdouglas.xyz: could not connect to host
+jr5proxdoug.xyz: could not connect to host
jreinert.com: could not connect to host
jrgold.me: could not connect to host
jrlopezoficial.com: could not connect to host
jrmd.io: could not connect to host
-jrvar.com: could not connect to host
+jrvar.com: did not receive HSTS header
js3311.com: could not connect to host
js88.sg: could not connect to host
js93029.com: could not connect to host
@@ -9934,30 +11783,35 @@ 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: could not connect to host
+jsc7776.com: did not receive HSTS header
jsdelivr.net: could not connect to host
jsg-technologies.de: did not receive HSTS header
-jsjyhzy.cc: could not connect to host
+jsjyhzy.cc: did not receive HSTS header
+jskier.com: could not connect to host
jslidong.top: could not connect to host
json-viewer.com: did not receive HSTS header
+jsproxy.tk: could not connect to host
jss.moe: did not receive HSTS header
jstelecom.com.br: did not receive HSTS header
jsuse.xyz: could not connect to host
-jsxc.ch: could not connect to host
+jsvr.tk: could not connect to host
+jthackery.com: 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
-jubee.nl: did not receive HSTS header
-juchheim-methode.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-judytka.cz: could not connect to host
+jubee.nl: could not connect to host
+juchheim-methode.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+judc-ge.ch: could not connect to host
+judge2020.me: did not receive HSTS header
juelda.com: did not receive HSTS header
+juergen-elbert.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
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
-juliamweber.de: could not connect to host
+juliamweber.de: did not receive HSTS header
julian-kipka.de: did not receive HSTS header
julian-witusch.de: could not connect to host
juliankirchner.ch: did not receive HSTS header
@@ -9967,11 +11821,12 @@ 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
+jumba.com.au: could not connect to host
jumbopan.com: could not connect to host
jumbox.xyz: could not connect to host
jumbster.com: could not connect to host
-jumparoundreading.co.uk: did not receive HSTS header
+jump.bg: did not receive HSTS header
+jumparoundreading.co.uk: could not connect to host
jumperoos.co.uk: could not connect to host
jumping-duck.com: could not connect to host
jumpman-iphone-design.de: could not connect to host
@@ -9979,19 +11834,20 @@ junaos.com: did not receive HSTS header
junaos.xyz: did not receive HSTS header
junctioncitywisconsin.gov: did not receive HSTS header
jundimax.com.br: could not connect to host
+jungaa.fr: did not receive HSTS header
junge-selbsthilfe.info: could not connect to host
-jungleculture.co.za: did not receive HSTS header
+jungleculture.co.za: could not connect to host
junglegoat.xyz: did not receive HSTS header
+jungundwild-design.de: did not receive HSTS header
juniwalk.cz: could not connect to host
junjhome.com: 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: did not receive HSTS header
-juristas.com.br: max-age too low: 0
juristeo.com: did not receive HSTS header
jurke.com: did not receive HSTS header
-jurko.cz: could not connect to host
+jurko.cz: did not receive HSTS header
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
@@ -10000,9 +11856,11 @@ justbelieverecovery.com: did not receive HSTS header
justiceforfathers.com: did not receive HSTS header
justiceo.org: did not receive HSTS header
justinellingwood.com: could not connect to host
+justinharrison.ca: could not connect to host
justinlemay.com: could not connect to host
justinrudio.com: did not receive HSTS header
justlikethat.hosting: did not receive HSTS header
+justmade.com.br: did not receive HSTS header
justmy.website: could not connect to host
justnaw.co.uk: could not connect to host
justtalk.site: could not connect to host
@@ -10010,40 +11868,52 @@ justudin.com: did not receive HSTS header
justwood.cz: did not receive HSTS header
justzz.xyz: could not connect to host
juul.xyz: could not connect to host
-juventusclublugano.ch: did not receive HSTS header
+juvenex.co: 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
jva-wuerzburg.de: could not connect to host
jvn.com: did not receive HSTS header
jvoice.net: could not connect to host
+jvwdev.nl: could not connect to host
jwallet.cc: did not receive HSTS header
jwilsson.me: could not connect to host
jwolt-lx.com: could not connect to host
-jwsoft.nl: could not connect to host
-jysperm.me: did not receive HSTS header
-jzachpearson.com: max-age too low: 0
-jzcapital.co: could not connect to host
-jzgj088.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+jwsoft.nl: did not receive HSTS header
+jwybk.ml: could not connect to host
+jydwz.com: max-age too low: 0
+jyggen.com: did not receive HSTS header
+jym.fit: did not receive HSTS header
+jysperm.me: could not connect to host
jznet.org: could not connect to host
k-dev.de: could not connect to host
+k-pan.com: could not connect to host
k-rickroll-g.pw: could not connect to host
-k-scr.me: could not connect to host
k-wallet.com: could not connect to host
k1cp.com: could not connect to host
+k1yoshi.com: could not connect to host
+k33k00.com: did not receive HSTS header
k3508.com: could not connect to host
k38.cc: could not connect to host
+k6957.com: could not connect to host
+k82.org: could not connect to host
+k8r.eu: did not receive HSTS header
ka-clan.com: could not connect to host
kaanduman.com: could not connect to host
+kaangenc.me: could not connect to host
kaany.io: could not connect to host
kaasbijwijn.nl: did not receive HSTS header
kaashosting.nl: did not receive HSTS header
-kabinapp.com: did not receive HSTS header
+kabinapp.com: could not connect to host
+kaboom.pw: did not receive HSTS header
+kabu-abc.com: could not connect to host
kabuabc.com: could not connect to host
-kackscharf.de: could not connect to host
+kackscharf.de: did not receive HSTS header
kadioglumakina.com.tr: did not receive HSTS header
kadmec.com: did not receive HSTS header
kaela.design: could not connect to host
+kaeru-seitai.com: did not receive HSTS header
kahopoon.net: could not connect to host
kai.cool: did not receive HSTS header
kaibol.com: could not connect to host
@@ -10052,60 +11922,69 @@ 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
+kairion.de: did not receive HSTS header
+kairostecnologia.com.br: did not receive HSTS header
kaisers.de: could not connect to host
+kaitol.click: could not connect to host
kaiyuewu.com: could not connect to host
+kaizenjuku.org: did not receive HSTS header
kajlovo.cz: could not connect to host
kakaomilchkuh.de: did not receive HSTS header
kaketalk.com: did not receive HSTS header
kakoo-media.nl: could not connect to host
-kakoo.nl: did not receive HSTS header
+kakoo.nl: could not connect to host
kakoomedia.nl: could not connect to host
kakuto.me: could not connect to host
kalami.nl: could not connect to host
-kaleidomarketing.com: did not receive HSTS header
kaleidoskop-freiburg.de: did not receive HSTS header
kalender.goip.de: could not connect to host
kalilinux.tech: could not connect to host
kaloix.de: could not connect to host
kalsbouncies.com: could not connect to host
kamalame.co: could not connect to host
-kamatajisyaku.tokyo.jp: did not receive HSTS header
+kamatajisyaku.tokyo.jp: 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
kampunginggris-ue.com: could not connect to host
+kana.me: could not connect to host
kanada.guide: could not connect to host
kanagawachuo-hospital.jp: could not connect to host
+kanal-schaefer.de: could not connect to host
kanar.nl: could not connect to host
kancolle.me: could not connect to host
kandec.co.jp: did not receive HSTS header
+kandofu.com: 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
kangooroule.fr: did not receive HSTS header
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
+kanobu.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
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
+kanzakiranko.jp: could not connect to host
kanzlei-myca.de: did not receive HSTS header
-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
+kaomojis.net: could not connect to host
kaotik4266.com: could not connect to host
+kapgy-moto.com: could not connect to host
kapiorr.duckdns.org: could not connect to host
kaplatz.is: could not connect to host
kaplatzis.com: could not connect to host
kapo.info: did not receive HSTS header
kappit.dk: could not connect to host
+kaptamedia.com: did not receive HSTS header
kapucini.si: max-age too low: 0
-kaputt.com: could not connect to host
+kaputt.com: did not receive HSTS header
kapverde.guide: could not connect to host
kara-fabian.com: could not connect to host
kara-fabian.de: could not connect to host
@@ -10116,37 +11995,42 @@ karanlyons.com: could not connect to host
karaoketonight.com: could not connect to host
karatorian.org: did not receive HSTS header
karenledger.ca: did not receive HSTS header
+karhm.com: 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
karpanhellas.com: could not connect to host
-kartatopia.com: could not connect to host
-karting34.com: could not connect to host
+kars.ooo: could not connect to host
+karten-verlag.de: did not receive HSTS header
+karting34.com: did not receive HSTS header
karuneshjohri.com: could not connect to host
kashdash.ca: could not connect to host
-kashis.com.au: max-age too low: 0
kastemperaturen.ga: could not connect to host
kat.al: could not connect to host
katalogakci.cz: did not receive HSTS header
katalogbutikker.dk: could not connect to host
+katata-kango.ac.jp: did not receive HSTS header
+katedra.de: could not connect to host
kathrinbaumannphotography.com: did not receive HSTS header
kati0.com: could not connect to host
katiaetdavid.fr: could not connect to host
katja-nikolic-design.de: could not connect to host
-katoju.co.jp: could not connect to host
+katoju.co.jp: did not receive HSTS header
katproxy.al: did not receive HSTS header
katproxy.online: did not receive HSTS header
-katproxy.site: could not connect to host
+katproxy.site: did not receive HSTS header
katproxy.tech: could not connect to host
katproxy.top: could not connect to host
-katrinjanke.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+katrinjanke.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
kattenfun.be: could not connect to host
kattenfun.nl: could not connect to host
-katthewaffle.fr: could not connect to host
+katthewaffle.fr: did not receive HSTS header
katzen.me: could not connect to host
+katzenbrunnen-test.de: could not connect to host
katzspeech.com: did not receive HSTS header
kaufkraftkiel.de: could not connect to host
+kaufmanbankruptcylaw.com: did not receive HSTS header
kauperwood.ovh: could not connect to host
kauplusprofesional.com: did not receive HSTS header
kausch.at: could not connect to host
@@ -10154,6 +12038,7 @@ kausta.me: could not connect to host
kaverti.com: did not receive HSTS header
kavik.no: could not connect to host
kavinvin.me: could not connect to host
+kawaiii.link: could not connect to host
kawaiiku.com: could not connect to host
kawaiiku.de: could not connect to host
kayakabovegroundswimmingpools.com: could not connect to host
@@ -10161,33 +12046,41 @@ kaydan.io: could not connect to host
kayipmurekkep.com: could not connect to host
kayleen.net: could not connect to host
kayon.cf: could not connect to host
+kayscs.com: could not connect to host
kazamasion.com: could not connect to host
kazanasolutions.de: could not connect to host
-kazenojiyu.fr: did not receive HSTS header
+kazenojiyu.fr: could not connect to host
+kazumi.ooo: could not connect to host
+kb3.net: did not receive HSTS header
kbfl.org: could not connect to host
+kcc.sh: did not receive HSTS header
kcluster.io: could not connect to host
kcptun.com: could not connect to host
kd-plus.pp.ua: could not connect to host
kdata.it: did not receive HSTS header
kdbx.online: could not connect to host
+kdfans.com: did not receive HSTS header
kdm-online.de: did not receive HSTS header
+keaneokelley.com: could not connect to host
kearney.io: could not connect to host
+kedibizworx.com: did not receive HSTS header
kediri.win: could not connect to host
keditor.biz: could not connect to host
keechain.io: could not connect to host
-keeckee.ga: could not connect to host
keeckee.ml: could not connect to host
keeley.gq: could not connect to host
keeley.ml: could not connect to host
keeleysam.me: could not connect to host
keematdekho.com: could not connect to host
-keepaa.com: did not receive HSTS header
+keepaa.com: could not connect to host
keepassa.co: could not connect to host
keepclean.me: could not connect to host
keepcoalintheground.org: could not connect to host
keepflow.io: could not connect to host
keepmanager.org: could not connect to host
keeprubyweird.com: did not receive HSTS header
+keezin.ga: could not connect to host
+keezyavaleri.com: could not connect to host
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
@@ -10195,94 +12088,98 @@ kejar.id: did not receive HSTS header
kejibot.com: could not connect to host
kekehouse.net: could not connect to host
kekgame.com: did not receive HSTS header
+kelantanmudah.com: could not connect to host
+kellerlan.org: could not connect to host
kellyandantony.com: could not connect to host
+kellyssportsbarandgrill.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
kelm.me: could not connect to host
-kelmarsafety.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+kelmarsafety.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
kelp.agency: did not receive HSTS header
ken-electric.com.br: could not connect to host
kenbillionsyuan.tk: could not connect to host
-kenc.dk: max-age too low: 2592000
-kenchristensen.dk: could not connect to host
-kenderbeton-magyarorszag.hu: did not receive HSTS header
-kenderbetonmagyarorszag.hu: did not receive HSTS header
-kenderhaz-magyarorszag.hu: did not receive HSTS header
-kenderhazmagyarorszag.hu: did not receive HSTS header
kenkoelectric.com: did not receive HSTS header
-kenman.dk: max-age too low: 2592000
-kennedy.ie: could not connect to host
-kensparkesphotography.com: did not receive HSTS header
-kentacademiestrust.org.uk: did not receive HSTS header
+kennethferguson.com: did not receive HSTS header
+kentacademiestrust.org.uk: could not connect to host
kenx5.eu.org: could not connect to host
kepler-seminar.de: did not receive HSTS header
kerangalam.com: did not receive HSTS header
-kerem.xyz: did not receive HSTS header
+kerem.xyz: could not connect to host
+kerenos.rocks: could not connect to host
kerksanders.nl: could not connect to host
kermadec.blog: could not connect to host
kernelmode.io: did not receive HSTS header
kernl.us: did not receive HSTS header
kersbergen.nl: did not receive HSTS header
-kersmexico.com: could not connect to host
keshausconsulting.com: could not connect to host
keskeces.com: did not receive HSTS header
kessel-runners.com: could not connect to host
kesteren.com: could not connect to host
+kesteren.org: could not connect to host
kevinbowers.me: could not connect to host
kevindekoninck.com: could not connect to host
+kevingsky.com: could not connect to host
kevinheslinphoto.com: did not receive HSTS header
-kevinhill.nl: could not connect to host
-kevinmoreland.com: could not connect to host
kevinroebert.de: did not receive HSTS header
kevlar.pw: did not receive HSTS header
kewego.co.uk: could not connect to host
keymaster.lookout.com: did not receive HSTS header
keypersonins.com: did not receive HSTS header
+keys.jp: could not connect to host
keyserver.sexy: could not connect to host
kfbrussels.be: could not connect to host
-kfm.ink: did not receive HSTS header
kg-rating.com: could not connect to host
kgb.us: did not receive HSTS header
kgregorczyk.pl: could not connect to host
kgxtech.com: max-age too low: 2592000
-khaganat.net: did not receive HSTS header
khlee.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: could not connect to host
+kiaka.co: did not receive HSTS header
kialo.com: did not receive HSTS header
+kiapartsdepartment.com: did not receive HSTS header
+kiapps.ovh: could not connect to host
+kiasystems.com: did not receive HSTS header
+kibbesfusion.com: did not receive HSTS header
+kichy.net: max-age too low: 0
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: max-age too low: 600000
kidbacker.com: could not connect to host
kiddies.academy: did not receive HSTS header
kiddieschristianacademy.co.za: did not receive HSTS header
kidkat.cn: could not connect to host
+kids-ok.com: could not connect to host
kiedys.net: could not connect to host
kiel-kind.de: 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]
+kienlen.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\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
-kiisu.club: could not connect to host
+kiffmarks.com: could not connect to host
+kii91.com: could not connect to host
kikimilyatacado.com.br: could not connect to host
kikuzuki.org: could not connect to host
kiladera.be: did not receive HSTS header
-kilerd.me: could not connect to host
kill-paff.com: did not receive HSTS header
+killedbynlp.com: could not connect to host
+killerit.in: could not connect to host
+killme.rocks: could not connect to host
kimamass.com: could not connect to host
kimana.pe: could not connect to host
kimberg.co.uk: did not receive HSTS header
kimberlybeautysoapcompany.com: did not receive HSTS header
kimo.se: did not receive HSTS header
kimpost.org: could not connect to host
-kimscrazeecastles.co.uk: did not receive HSTS header
+kimscrazeecastles.co.uk: could not connect to host
kina.guide: could not connect to host
kinderbuecher-kostenlos.de: did not receive HSTS header
+kinderergotherapie-ik.nl: did not receive HSTS header
+kinderjugendfreizeitverein.de: did not receive HSTS header
kinderly.co.uk: did not receive HSTS header
kinderopvangengeltjes.nl: did not receive HSTS header
kinderopvangzevenbergen.nl: did not receive HSTS header
@@ -10290,44 +12187,44 @@ kinderwagen-test24.de: could not connect to host
kindleworth.com: did not receive HSTS header
kindlyfire.com: could not connect to host
kindof.ninja: could not connect to host
+kinecle.com: did not receive HSTS header
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
-kingbird.me: could not connect to host
+king-henris-castles.co.uk: could not connect to host
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
+kingsley.cc: could not connect to host
+kingtecservices.com: could not connect to host
kinkdr.com: could not connect to host
-kinnettmemorial.org: did not receive HSTS header
-kinnikinnick.com: did not receive HSTS header
+kinmunity.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
kinnon.enterprises: could not connect to host
+kinomoto.me: could not connect to host
kinow.com: did not receive HSTS header
kinsmenhomelottery.com: did not receive HSTS header
kintoandar.com: max-age too low: 0
kintrip.com: did not receive HSTS header
kintzingerfilm.de: did not receive HSTS header
kionetworks.com: did not receive HSTS header
+kionetworks.es: could not connect to host
kipin.fr: did not receive HSTS header
kipira.com: could not connect to host
kipriakipita.gr: could not connect to host
kiraboshi.xyz: could not connect to host
-kirainmoe.com: did not receive HSTS header
kirara.eu: could not connect to host
-kirche-dortmund-ost.de: max-age too low: 86400
-kirill.ws: could not connect to host
-kirito.kr: could not connect to host
kirkforsenate.com: could not connect to host
+kirkify.com: could not connect to host
kirkpatrickdavis.com: could not connect to host
+kirslis.com: did not receive HSTS header
kis-toitoidixi.de: could not connect to host
kisa.io: could not connect to host
kisalt.im: could not connect to host
kiss-register.org: could not connect to host
kissart.net: could not connect to host
-kissesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+kissesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
kissesb.net: could not connect to host
-kisskiss.ch: could not connect to host
kisstube.tv: could not connect to host
kisstyle.ru: did not receive HSTS header
kita.id: did not receive HSTS header
@@ -10336,8 +12233,8 @@ kitakemon.com: could not connect to host
kitashop.com.br: could not connect to host
kitatec.com.br: could not connect to host
kitchenaccessories.pro: did not receive HSTS header
-kitchenalley.ca: max-age too low: 86400
-kitchenalley.com: max-age too low: 86400
+kitchenalley.ca: could not connect to host
+kitchenalley.com: could not connect to host
kitchenchaos.de: could not connect to host
kitegarage.eu: did not receive HSTS header
kiteschoolamsterdam.nl: could not connect to host
@@ -10345,29 +12242,33 @@ 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
+kittyhacker101.tk: could not connect to host
kiwi.global: could not connect to host
kiwico.com: max-age too low: 0
+kiwihub.org: did not receive HSTS header
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
kiyo.space: could not connect to host
kizil.net: could not connect to host
-kj1391.com: did not receive HSTS header
-kj1396.net: did not receive HSTS header
-kj1397.com: did not receive HSTS header
+kj1391.com: could not connect to host
kjaermaxi.me: did not receive HSTS header
+kjarni.cc: could not connect to host
kjg-bachrain.de: could not connect to host
kjg-ummeln.de: did not receive HSTS header
+kjgmuenster.org: could not connect to host
kjoglum.me: could not connect to host
+kk.sb: could not connect to host
+kk6957.com: could not connect to host
kkaefer.com: did not receive HSTS header
-kkomputer.net: did not receive HSTS header
-kkren.me: could not connect to host
+kkomputer.net: could not connect to host
+kkren.me: did not receive HSTS header
kkull.tv: could not connect to host
kkws.co: could not connect to host
+klamathrestoration.gov: could not connect to host
klantenadvies.nl: did not receive HSTS header
-klapib.ee: could not connect to host
-klas.or.id: did not receive HSTS header
+klasfauseweh.de: could not connect to host
klatschreime.de: did not receive HSTS header
klausimas.lt: did not receive HSTS header
klautshop.com: could not connect to host
@@ -10378,38 +12279,41 @@ kleberstoff.xyz: could not connect to host
kleding.website: did not receive HSTS header
kleertjesvoordelig.nl: could not connect to host
kleidertauschpartys.de: could not connect to host
-kleinerarchitekturfuehrer.de: could not connect to host
+kleinerarchitekturfuehrer.de: did not receive HSTS header
kleinholding.com: could not connect to host
+kleinreich.de: could not connect to host
kleinserienproduktion.com: could not connect to host
klempnershop.eu: did not receive HSTS header
kletterkater.com: did not receive HSTS header
klicke-gemeinsames.de: did not receive HSTS header
klicktojob.de: could not connect to host
+klif1.nl: did not receive HSTS header
+klimchuk.by: did not receive HSTS header
klingeletest.de: could not connect to host
klingsundet.no: did not receive HSTS header
klinkerstreet.com.ua: did not receive HSTS header
-kliqsd.com: did not receive HSTS header
-kloentrup.de: max-age too low: 172800
-klotz-labs.com: max-age too low: 7889238
klunkergarten.org: could not connect to host
-klustekeningen.nl: did not receive HSTS header
+klustekeningen.nl: could not connect to host
klzwzhi.com: did not receive HSTS header
km-net.pl: did not receive HSTS header
kmdev.me: could not connect to host
-knapen.io: max-age too low: 604800
-knccloud.com: could not connect to host
-kneipi.de: did not receive HSTS header
-kngk-azs.ru: could not connect to host
+knccloud.com: did not receive HSTS header
+kneipi.de: could not connect to host
kniga.market: could not connect to host
knigadel.com: did not receive HSTS header
+knightsblog.de: did not receive HSTS header
knightsbridgegroup.org: could not connect to host
knightsweep.com: could not connect to host
kniwweler.com: could not connect to host
-knowdebt.org: did not receive HSTS header
+knockendarroch.co.uk: did not receive HSTS header
+knowdebt.org: could not connect to host
knowledgesnap.com: could not connect to host
knowledgesnapsites.com: could not connect to host
+knowlevillagecc.co.uk: could not connect to host
knownsec.cf: could not connect to host
knuckles.tk: could not connect to host
+knutur.is: did not receive HSTS header
+koalapress.fr: did not receive HSTS header
kobar.id: could not connect to host
kobieta.guru: could not connect to host
koboldcraft.ch: could not connect to host
@@ -10419,18 +12323,20 @@ kodiaklabs.org: could not connect to host
kodokushi.fr: could not connect to host
koehn.com: could not connect to host
koelbli.ch: could not connect to host
-koen.io: max-age too low: 86400
+koenberkhout.nl: did not receive HSTS header
koenen-bau.de: did not receive HSTS header
koenvdheuvel.me: could not connect to host
koerper-wie-seele.de: did not receive HSTS header
koerperimpuls.ch: did not receive HSTS header
koez-mangal.ch: could not connect to host
koezmangal.ch: could not connect to host
-kogcoder.com: could not connect to host
+kohparadise.com: could not connect to host
koi-sama.net: did not receive HSTS header
koik.io: could not connect to host
+koirala.email: could not connect to host
koirala.net: could not connect to host
kokenmetaanbiedingen.nl: could not connect to host
+koketteriet.se: could not connect to host
kokoiroworks.com: could not connect to host
kola-entertainments.de: did not receive HSTS header
kolania.com: could not connect to host
@@ -10439,20 +12345,24 @@ kolbeck.tk: could not connect to host
koldanews.com: did not receive HSTS header
kollawat.me: could not connect to host
kolonie-am-stadtpark.de: could not connect to host
-kolozsvaricsuhe.hu: could not connect to host
+kolorbon.com: did not receive HSTS header
+komandakovalchuk.com: did not receive HSTS header
kombidorango.com.br: could not connect to host
komikito.com: could not connect to host
kompetenzwerft.de: did not receive HSTS header
konata.us: could not connect to host
kongbaofang.com: could not connect to host
+kongsecuritydata.com: did not receive HSTS header
konicaprinterdriver.com: could not connect to host
+koninkrijk.net: could not connect to host
konkai.store: could not connect to host
konkurs.ba: could not connect to host
+konoe.studio: did not receive HSTS header
kontakthuman.hu: did not receive HSTS header
kontaxis.network: could not connect to host
+kontorhaus-schlachte.de: could not connect to host
kontrolapovinnosti.cz: did not receive HSTS header
-konventseliten.se: did not receive HSTS header
-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]
+konventseliten.se: could not connect to host
koopjesnel.nl: could not connect to host
koordinate.net: could not connect to host
kopio.jp: did not receive HSTS header
@@ -10460,9 +12370,13 @@ 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
-korobi.io: could not connect to host
+korni22.org: did not receive HSTS header
+korobi.io: did not receive HSTS header
+korono.de: did not receive HSTS header
korsanparti.org: did not receive HSTS header
+kortic.com: did not receive HSTS header
+koscielniak-nieruchomosci.pl: could not connect to host
+kosonaudioteca.com: did not receive HSTS header
kostuumstore.nl: could not connect to host
kostya.net: did not receive HSTS header
kotakoo.id: could not connect to host
@@ -10474,25 +12388,31 @@ 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
+kouponboket.com: could not connect to host
kourpe.online: could not connect to host
kousaku.jp: could not connect to host
+kovaldo.ru: did not receive HSTS header
kovnsk.net: could not connect to host
-kovuthehusky.com: did not receive HSTS header
-kowalmik.tk: could not connect to host
+kowabit.de: max-age too low: 2592000
+kowshiksundararajan.com: could not connect to host
+koyaanis.com: did not receive HSTS header
kozmik.co: could not connect to host
kpdyer.com: did not receive HSTS header
kpebetka.net: did not receive HSTS header
+kpmgccc.co.nz: did not receive HSTS header
kpmgpublications.ie: did not receive HSTS header
kpn-dnssec.com: could not connect to host
+kpopsource.com: did not receive HSTS header
kprog.net: could not connect to host
kpvpn.com: could not connect to host
kraigwalker.com: could not connect to host
-kraiwon.com: could not connect to host
+krant.nl: did not receive HSTS header
krasavchik.by: could not connect to host
krasota.ru: did not receive HSTS header
krausen.ca: could not connect to host
krausoft.hu: did not receive HSTS header
kravelindo-adventure.com: could not connect to host
+krazyboi.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
@@ -10501,10 +12421,14 @@ kredietpaspoort.nl: could not connect to host
kredite.sale: could not connect to host
kredite24.de: did not receive HSTS header
kreditkarte-fuer-backpacker.de: could not connect to host
-krestanskydarek.cz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+krestanskydarek.cz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+krey.is: could not connect to host
kreza.de: could not connect to host
+krfuli.com: could not connect to host
kriegskindernothilfe.de: could not connect to host
kriegt.es: did not receive HSTS header
+krishouse.fr: could not connect to host
+krislamoureux.com: 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
@@ -10513,41 +12437,50 @@ krizevackapajdasija.hr: could not connect to host
krmela.com: did not receive HSTS header
kroetenfuchs.de: could not connect to host
krokodent.de: did not receive HSTS header
-kronaw.it: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+krommo.pe: did not receive HSTS header
+kronaw.it: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+krony.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
kronych.cz: could not connect to host
kroodle.nl: did not receive HSTS header
-krouzkyliduska.cz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+kroy.io: did not receive HSTS header
kruegerrand-wert.de: did not receive HSTS header
+krugermillions.org: did not receive HSTS header
krunut.com: did not receive HSTS header
+krusesec.com: could not connect to host
kruu.de: could not connect to host
krypteia.org: could not connect to host
kryptomodkingz.com: could not connect to host
-kscarlett.com: could not connect to host
ksfh-mail.de: could not connect to host
ksham.net: could not connect to host
ksk-agentur.de: did not receive HSTS header
kstan.me: did not receive HSTS header
kswcosmetics.com: could not connect to host
kswriter.com: could not connect to host
+ktbnetbank.com: did not receive HSTS header
kteen.info: could not connect to host
ktube.yt: could not connect to host
kuaitiyu.org: could not connect to host
+kuanta.net: did not receive HSTS header
kuba.guide: could not connect to host
-kubiwa.net: could not connect to host
+kubica.ch: could not connect to host
+kubierecki.pl: could not connect to host
+kubiwa.net: did not receive HSTS header
kubusadvocaten.nl: could not connect to host
+kuchenfeelisa.de: did not receive HSTS header
kuchenschock.de: did not receive HSTS header
-kucheryavenkovn.ru: did not receive HSTS header
+kuchentraum.eu: did not receive HSTS header
+kucheryavenkovn.ru: could not connect to host
kucom.it: could not connect to host
-kueche-co.de: max-age too low: 10716219
+kueche-co.de: max-age too low: 624771
kuechenplan.online: did not receive HSTS header
-kuehndel.org: could not connect to host
kueulangtahunanak.net: could not connect to host
kugelblitz.co: could not connect to host
kuko-crews.org: could not connect to host
+kulickovy-pojezd.cz: could not connect to host
kultmobil.se: did not receive HSTS header
-kum.com: could not connect to host
+kumilasvegas.com: could not connect to host
kummerlaender.eu: 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]
+kundo.se: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
kunstfehler.at: did not receive HSTS header
kunstschule-krabax.de: did not receive HSTS header
kuops.com: did not receive HSTS header
@@ -10557,18 +12490,22 @@ kuppingercole.com: did not receive HSTS header
kura.io: could not connect to host
kurashino-mall.com: could not connect to host
kurehun.org: could not connect to host
+kuro.link: did not receive HSTS header
kuro346.moe: could not connect to host
kurrende.nrw: could not connect to host
kurrietv.nl: did not receive HSTS header
-kursprogramisty.pl: could not connect to host
+kursprogramisty.pl: did not receive HSTS header
+kurszielnull.de: could not connect to host
kurtmclester.com: could not connect to host
-kurumi.io: did not receive HSTS header
+kurumi.io: max-age too low: 0
kurz.pw: could not connect to host
kurzonline.com.br: could not connect to host
+kutny.cz: could not connect to host
kuwago.io: could not connect to host
+kuzbass-pwl.ru: could not connect to host
kuzdrowiu24.pl: could not connect to host
-kvestmaster.ru: 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]
+kvn.tf: 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 :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
kwidz.fr: did not receive HSTS header
kwikmed.eu: could not connect to host
kwiknews.com: did not receive HSTS header
@@ -10577,46 +12514,53 @@ kwmr.me: did not receive HSTS header
kwok.tv: could not connect to host
kwondratsch.com: could not connect to host
kxind.cn: did not receive HSTS header
-kyanite.co: max-age too low: 7889238
+kxnrl.com: could not connect to host
kyberna.xyz: could not connect to host
+kybqp.com: could not connect to host
+kybqp.net: could not connect to host
kykoonn.net: did not receive HSTS header
kylapps.com: did not receive HSTS header
kyle.place: could not connect to host
-kylebaldw.in: did not receive HSTS header
-kylejohnson.io: could not connect to host
kylerwood.com: could not connect to host
kylescastles.co.uk: did not receive HSTS header
kyliehunt.com: did not receive HSTS header
kylling.io: could not connect to host
kymo.org: did not receive HSTS header
-kynaston.org.uk: could not connect to host
kyobostory-events.com: could not connect to host
-kyochon.fr: could not connect to host
-kyoko.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]
+kyoko.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
kyonagashima.com: did not receive HSTS header
kyoto-sake.net: could not connect to host
+kyoto-tomikawa.jp: 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-1.xyz: could not connect to host
+l-2.xyz: could not connect to host
+l-3.xyz: could not connect to host
+l-lab.org: 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
-l2guru.ru: could not connect to host
+l3.ee: could not connect to host
+l3j.net: could not connect to host
+l456852.com: max-age too low: 0
+l6957.com: could not connect to host
+l9.fr: could not connect to host
+la-cave-a-nodo.fr: did not receive HSTS header
la-flora-negra.de: could not connect to host
la-grande-jaugue.fr: did not receive HSTS header
la-retraite-info.com: could not connect to host
la-serendipite.fr: did not receive HSTS header
+laassari.me: could not connect to host
labaia.info: did not receive HSTS header
-laballoons.com: max-age too low: 7889238
labella-umbrella.com: did not receive HSTS header
labelleza.com.br: could not connect to host
labfox.de: did not receive HSTS header
-labiblioafronebrulepas.com: could not connect to host
labina.com.tr: did not receive HSTS header
labms.com.au: did not receive HSTS header
laboiteanem.fr: could not connect to host
laboiteapc.fr: did not receive HSTS header
-laboitebio-logique.ca: could not connect to host
+laboitebio-logique.ca: did not receive HSTS header
labordata.io: could not connect to host
laborie.io: could not connect to host
laboutiquemarocaineduconvoyeur.com: could not connect to host
@@ -10624,22 +12568,24 @@ 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
lacaserita.org: 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
+lacicloud.net: could not connect to host
+lacigf.org: did not receive HSTS header
+lacledelareussite.com: did not receive HSTS header
lacledeslan.ninja: could not connect to host
lacuevadechauvet.com: did not receive HSTS header
-ladadate.com: could not connect to host
-ladislavbrezovnik.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
+ladylucks.co.uk: did not receive HSTS header
laemen.com: did not receive HSTS header
laemen.nl: could not connect to host
+laeso.es: did not receive HSTS header
laf.in.net: could not connect to host
lafamillemusique.fr: did not receive HSTS header
lafeemam.fr: could not connect to host
@@ -10648,36 +12594,41 @@ lafosseobservatoire.be: did not receive HSTS header
lafr4nc3.xyz: could not connect to host
lag-gbr.gq: could not connect to host
lagalerievirtuelle.fr: did not receive HSTS header
-lagier.xyz: did not receive HSTS header
lagodny.eu: could not connect to host
lagoza.name: could not connect to host
+lagranmoon.com: did not receive HSTS header
+laguiadelvaron.com: did not receive HSTS header
+lagunacoastrealestate.com: 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
+lakarwebb.se: did not receive HSTS header
lakatrop.com: could not connect to host
lakefrontlittleelm.com: did not receive HSTS header
-lakehavasucityhomebuyerscredit.com: did not receive HSTS header
-lakehavasuhomebuyercredit.com: did not receive HSTS header
+lakehavasucityhomebuyerscredit.com: could not connect to host
+lakehavasucitynews.com: could not connect to host
+lakehavasuhomebuyercredit.com: could not connect to host
lakehavasuhomes.info: did not receive HSTS header
lakehavasuhouserentals.com: could not connect to host
lakehavasuhouses.com: did not receive HSTS header
lakewoodcomputerservices.com: could not connect to host
lakhesis.net: could not connect to host
lalajj.com: could not connect to host
+lalingua.ir: did not receive HSTS header
laltroweb.it: did not receive HSTS header
+lalunecreative.com: did not receive HSTS header
lamafioso.com: could not connect to host
lamaisondelatransformationculturelle.com: did not receive HSTS header
lambda-complex.org: could not connect to host
lambdafive.co.uk: could not connect to host
+lame1337.xyz: could not connect to host
lamiaposta.email: did not receive HSTS header
-lamomebijou.paris: did not receive HSTS header
+lampsh.ml: could not connect to host
lamtv.com.mx: could not connect to host
-lan2k.org: max-age too low: 86400
-lana.swedbank.se: did not receive HSTS header
lanauzedesigns.com: did not receive HSTS header
lanboll.com: could not connect to host
-lanbyte.se: 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: could not connect to host
@@ -10686,45 +12637,55 @@ landell.ml: could not connect to host
landgoedverkopen.nl: could not connect to host
landhuisverkopen.nl: could not connect to host
landscape.canonical.com: max-age too low: 2592000
+landscapelightingpacificpalisades.com: could not connect to host
landscapingmedic.com: did not receive HSTS header
langenbach.rocks: could not connect to host
langendorf-ernaehrung-training.de: did not receive HSTS header
langendries.eu: did not receive HSTS header
langguth.io: did not receive HSTS header
langhun.me: could not connect to host
-lanhhuyet510.tk: did not receive HSTS header
+lanhhuyet510.tk: could not connect to host
laniakean.com: did not receive HSTS header
-lanonfire.com: could not connect to host
lansinoh.co.uk: did not receive HSTS header
lanyang.tk: could not connect to host
lanzainc.xyz: could not connect to host
laobox.fr: could not connect to host
laohei.org: did not receive HSTS header
-laospage.com: did not receive HSTS header
lapakus.com: could not connect to host
+laparoscopia.com.mx: did not receive HSTS header
laperfumista.es: could not connect to host
+lapetition.be: could not connect to host
laplaceduvillage.net: could not connect to host
laquack.com: could not connect to host
lared.ovh: did not receive HSTS header
laredsemanario.com: could not connect to host
-larsbauer.xyz: could not connect to host
+laresistencia.xyz: could not connect to host
+larky.top: could not connect to host
+larotayogaming.com: did not receive HSTS header
larsgujord.no: did not receive HSTS header
-larsmerke.de: could not connect to host
+larsmerke.de: did not receive HSTS header
+larvatoken.org: could not connect to host
lasepiataca.com: did not receive HSTS header
lasercloud.ml: could not connect to host
laserfuchs.de: did not receive HSTS header
+laserpc.net: did not receive HSTS header
+lasertechsolutions.com: could not connect to host
lashstuff.com: did not receive HSTS header
lasnaves.com: did not receive HSTS header
lasst-uns-beten.de: could not connect to host
-latabaccheria.net: could not connect to host
+lastchancetraveler.com: did not receive HSTS header
+lastweekinaws.com: did not receive HSTS header
+lat46.ch: did not receive HSTS header
latable-bowling-vire.fr: did not receive HSTS header
latabledebry.be: could not connect to host
+latabledemontebello.com: could not connect to host
latamarissiere.eu: did not receive HSTS header
lateliercantaldeco.fr: could not connect to host
latelierdekathy.com: could not connect to host
+latemodern.com: did not receive HSTS header
+lateral.dog: could not connect to host
latestbuy.com.au: did not receive HSTS header
latetrain.cn: could not connect to host
-latg.com: max-age too low: 300
lathamlabs.com: could not connect to host
lathamlabs.net: could not connect to host
lathamlabs.org: could not connect to host
@@ -10733,7 +12694,6 @@ latiendadelbebefeliz.com: did not receive HSTS header
latinred.com: did not receive HSTS header
latitude42technology.com: did not receive HSTS header
latour-managedcare.ch: could not connect to host
-latterdaybride.com: max-age too low: 7889238
latus.xyz: could not connect to host
laufcampus.com: did not receive HSTS header
laufers.pl: did not receive HSTS header
@@ -10748,27 +12708,31 @@ lavapot.com: did not receive HSTS header
lavasing.eu.org: could not connect to host
laventainnhotel-mailing.com: could not connect to host
lavine.ch: did not receive HSTS header
+lavishlooksstudio.com.au: 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
+lawyerdigital.co.bw: could not connect to host
laxatus.com: could not connect to host
-laxiongames.es: did not receive HSTS header
+laxiongames.es: could not connect to host
+lay1688.com: max-age too low: 0
layer8.tk: could not connect to host
layfully.me: could not connect to host
laymans911.info: could not connect to host
lazapateriahandmade.pe: did not receive HSTS header
lazerus.net: could not connect to host
lazulu.com: could not connect to host
-lazurit.com: did not receive HSTS header
lazytux.de: did not receive HSTS header
lbarrios.es: could not connect to host
lbrlh.tk: could not connect to host
lbrli.tk: could not connect to host
lbrls.tk: could not connect to host
lbrt.xyz: could not connect to host
+lc-promiss.de: did not receive HSTS header
lcbizsolutions.com: could not connect to host
+lcht.ch: could not connect to host
lclarkpdx.com: could not connect to host
lcti.biz: could not connect to host
lcy.cat: could not connect to host
@@ -10778,24 +12742,37 @@ ldcraft.pw: could not connect to host
le-blog.ch: could not connect to host
le0.me: could not connect to host
le0yn.ml: could not connect to host
+le42mars.fr: could not connect to host
+leadership9.com: could not connect to host
+leadgenie.me: could not connect to host
+leadingsalons.com: did not receive HSTS header
+leadplan.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
leadstart.org: did not receive HSTS header
+leaf-consulting.de: did not receive HSTS header
leakedminecraft.net: could not connect to host
leakreporter.net: did not receive HSTS header
leaks.directory: could not connect to host
leanclub.org: could not connect to host
+leandre.cn: could not connect to host
leaodarodesia.com.br: could not connect to host
-leapandjump.co.uk: could not connect to host
leardev.de: did not receive HSTS header
learn-smart.uk: did not receive HSTS header
+learndev.info: did not receive HSTS header
learnedhacker.com: could not connect to host
learnedovo.com: could not connect to host
+learnforestry.com: could not connect to host
learnfrenchfluently.com: could not connect to host
learningorder.com: could not connect to host
learntale.com: could not connect to host
+learntotradethemarket.com: did not receive HSTS header
+learntube.cz: did not receive HSTS header
lebal.se: could not connect to host
+lebanonoregon.gov: did not receive HSTS header
lebarbatruc.com: did not receive HSTS header
lebosse.me: could not connect to host
lebrun.org: could not connect to host
+lechaudrondupertuis.ch: could not connect to host
+leclaire.com.br: could not connect to host
lecourtier.fr: did not receive HSTS header
led-tl-wereld.nl: did not receive HSTS header
led.xyz: could not connect to host
@@ -10816,7 +12793,7 @@ 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
-legacy.bank: did not receive HSTS header
+lega-dental.com: could not connect to host
legal.farm: could not connect to host
legaleus.co.uk: could not connect to host
legalisepeacebloom.com: could not connect to host
@@ -10826,36 +12803,40 @@ legaltip.eu: could not connect to host
legarage.org: did not receive HSTS header
legatofmrc.fr: could not connect to host
legavenue.com.br: did not receive HSTS header
-legendary.camera: did not receive HSTS header
-legendarycamera.com: did not receive HSTS header
+legendagroup.ch: could not connect to host
legitaxi.com: did not receive HSTS header
+legoutcheznous.com: did not receive HSTS header
legumefederation.org: did not receive HSTS header
legymnase.eu: did not receive HSTS header
lehrermarktplatz.de: did not receive HSTS header
lehtinen.xyz: did not receive HSTS header
leigh.life: did not receive HSTS header
-leighneithardt.com: could not connect to host
+leilautourdumon.de: could not connect to host
leiming.co: could not connect to host
leinir.dk: did not receive HSTS header
-leition.com: did not receive HSTS header
-leitionusercontent.com: did not receive HSTS header
+leition.com: could not connect to host
+leitionusercontent.com: could not connect to host
leitner.com.au: did not receive HSTS header
leiyun.me: could not connect to host
-lelambiental.com.br: did not receive HSTS header
lelehei.com: could not connect to host
lellyboi.ml: could not connect to host
lelongbank.com: did not receive HSTS header
lelubre.info: did not receive HSTS header
lemon.co: could not connect to host
-lemp.io: did not receive HSTS header
+lemonthy.ca: did not receive HSTS header
+lemp.io: could not connect to host
+lendahandmissionteams.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
lenders.direct: could not connect to host
+lenget.com: did not receive HSTS header
lenguajedeprogramacion.com: did not receive HSTS header
lengyelnyelvoktatas.hu: could not connect to host
lengyelul.hu: could not connect to host
+lengzzz.com: could not connect to host
lenkunz.me: could not connect to host
lenn1.de: did not receive HSTS header
lennarth.com: could not connect to host
lennartheinrich.de: could not connect to host
+lennier.info: did not receive HSTS header
lennyfaces.net: did not receive HSTS header
lenovogaming.com: could not connect to host
lentri.com: did not receive HSTS header
@@ -10863,92 +12844,104 @@ lenzw.de: did not receive HSTS header
leob.in: did not receive HSTS header
leochedibracchio.com: did not receive HSTS header
leodaniels.com: did not receive HSTS header
+leolana.com: did not receive HSTS header
leon-jaekel.com: could not connect to host
+leon.net: could not connect to host
leonardcamacho.me: could not connect to host
leonauto.de: could not connect to host
-leonhooijer.nl: could not connect to host
+leonax.net: could not connect to host
leopold.email: could not connect to host
-leopoldina.net: could not connect to host
leopotamgroup.com: could not connect to host
lepiquillo.fr: did not receive HSTS header
lepont.pl: could not connect to host
+lepourquoiducomment.fr: did not receive HSTS header
+leppis-it.de: could not connect to host
leprado.com: could not connect to host
+lequateur.fr: did not receive HSTS header
lerasenglish.com: max-age too low: 0
+lerku.com: could not connect to host
lerlivros.online: could not connect to host
-lerner.moscow: could not connect to host
+lerner.moscow: did not receive HSTS header
+lerp.me: could not connect to host
les-corsaires.net: could not connect to host
+les-pingouins.com: did not receive HSTS header
les-voitures-electriques.com: max-age too low: 2592000
lesaffre.es: could not connect to host
lesbiansslaves.com: could not connect to host
-lesbofight.com: could not connect to host
lescomptoirsdepierrot.com: could not connect to host
lescourtiersbordelais.com: did not receive HSTS header
lesdouceursdeliyana.com: could not connect to host
lesecuadors.com: did not receive HSTS header
-lesformations.net: did not receive HSTS header
+lesformations.net: could not connect to host
lesh.eu: could not connect to host
-lesharris.com: could not connect to host
+lesjardinsdemathieu.net: 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
lesscloud.com: could not connect to host
+lessets-graphiques.com: could not connect to host
lessing.consulting: did not receive HSTS header
letempsdunefleur.be: could not connect to host
-leter.io: did not receive HSTS header
+leter.io: could not connect to host
lethbridgecoffee.com: did not receive HSTS header
-letitfly.me: could not connect to host
+letitfly.me: did not receive HSTS header
+letkidsbekids.co.uk: did not receive HSTS header
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
+letshome.mx: did not receive HSTS header
+letskick.ru: did not receive HSTS header
letsmultiplayerplay.com: did not receive HSTS header
letsnet.org: could not connect to host
letstox.com: could not connect to host
lettland-firma.com: could not connect to host
letustravel.tk: could not connect to host
+letzchange.org: did not receive HSTS header
levatc.tk: could not connect to host
level-10.net: could not connect to host
+level3.xyz: could not connect to host
levelaccordingly.com: could not connect to host
+levelcheat.com: did not receive HSTS header
levelum.com: did not receive HSTS header
-levelupwear.com: max-age too low: 7889238
leveredge.net: could not connect to host
levert.ch: could not connect to host
-lewdgamer.com: could not connect to host
lewisjuggins.co.uk: did not receive HSTS header
-lewisseals.com: could not connect to host
lexiphanic.co.uk: did not receive HSTS header
lexpartsofac.com: could not connect to host
lexxyn.nl: did not receive HSTS header
lez-cuties.com: could not connect to host
lezdomsm.com: could not connect to host
lfaz.org: could not connect to host
-lfklzw.com: could not connect to host
-lfrconseil.com: could not connect to host
-lfullerdesign.com: did not receive HSTS header
+lffweb.ga: could not connect to host
+lfklzw.com: did not receive HSTS header
+lfullerdesign.com: could not connect to host
+lg0.site: could not connect to host
lg21.co: could not connect to host
-lgbtqventures.com: max-age too low: 86400
-lgbtventures.com: did not receive HSTS header
lgiswa.com.au: did not receive HSTS header
lgrs.com.au: did not receive HSTS header
lgsg.us: could not connect to host
lgts.se: could not connect to host
+lhalbert.xyz: could not connect to host
lhasaapso.com.br: could not connect to host
-lheinrich.com: could not connect to host
+lheinrich.com: did not receive HSTS header
lheinrich.de: could not connect to host
lheinrich.org: could not connect to host
lhero.org: did not receive HSTS header
lhsj28.com: could not connect to host
lhsj68.com: could not connect to host
lhsj78.com: could not connect to host
+li756.com: max-age too low: 0
liaillustr.at: did not receive HSTS header
liam-is-a-nig.ga: could not connect to host
liam-w.com: could not connect to host
liamjack.fr: could not connect to host
-lian-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-lian-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-liang-li88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-liang-li88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+lian-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+lian-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+liang-li88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+liang-li88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
liangbp.com: did not receive HSTS header
+liangyichen.net: did not receive HSTS header
lianwen.kim: could not connect to host
lianye.in: could not connect to host
lianyexiuchang.in: could not connect to host
@@ -10965,8 +12958,9 @@ librairie-asie.com: did not receive HSTS header
library.linode.com: did not receive HSTS header
librechan.net: could not connect to host
libreduca.com: could not connect to host
-libremail.nl: 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]
+libricks.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+librosdescargas.club: could not connect to host
+libzik.com: could not connect to host
licence-registry.com: could not connect to host
liceo.cn: did not receive HSTS header
liceserv.com: could not connect to host
@@ -10974,12 +12968,16 @@ 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
+lidlovajogurteka.si: could not connect to host
liduan.com: could not connect to host
liebach.me: did not receive HSTS header
liebestarot.at: did not receive HSTS header
lieblingsholz.de: could not connect to host
lied8.eu: could not connect to host
+liehuojun.com: did not receive HSTS header
+lierrmm.space: could not connect to host
lietaer.eu: did not receive HSTS header
+life-like.com: did not receive HSTS header
life-time.nl: did not receive HSTS header
lifecoach.tw: did not receive HSTS header
lifecoachproviders.com: could not connect to host
@@ -10990,8 +12988,8 @@ lifeinsurances24.com: could not connect to host
lifeisabug.com: could not connect to host
lifemarque.co.uk: did not receive HSTS header
lifenexto.com: could not connect to host
-lifeng.us: could not connect to host
-lifequotes-uk.co.uk: could not connect to host
+lifeng.us: did not receive HSTS header
+lifequotes-uk.co.uk: did not receive HSTS header
lifeskillsdirect.com: did not receive HSTS header
lifestyle7788.com: could not connect to host
lifestyler.me: could not connect to host
@@ -10999,58 +12997,69 @@ lifetimemoneymachine.com: 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
+lightdream.tech: could not connect to host
lighthouseinstruments.com: did not receive HSTS header
+lightingpacificpalisades.com: could not connect to host
+lightme.us: could not connect to host
lightning-ashe.com: did not receive HSTS header
lightnovelsekai.com: could not connect to host
lightpaste.com: could not connect to host
lighttherapydevice.com: did not receive HSTS header
+lighttp.com: did not receive HSTS header
+lightupcollective.co.uk: 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
-likc.me: did not receive HSTS header
like.lgbt: could not connect to host
likenosis.com: could not connect to host
-likui.me: could not connect to host
lila.pink: did not receive HSTS header
lilapmedia.com: could not connect to host
+liliang13.com: could not connect to host
lilismartinis.com: could not connect to host
-lillpopp.eu: did not receive HSTS header
+lilliangray.co.za: 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
+lilygreen.co.za: could not connect to host
limalama.eu: max-age too low: 1
limeburst.net: did not receive HSTS header
limeyeti.com: could not connect to host
limiteddata.co.uk: could not connect to host
-limitget.com: could not connect to host
+limitget.com: did not receive HSTS header
limn.me: could not connect to host
+limoairporttoronto.net: could not connect to host
limodo-shop.de: did not receive HSTS header
limpens.net: did not receive HSTS header
limpido.it: could not connect to host
-limunana.com: did not receive HSTS header
+limunana.com: could not connect to host
+lin2018168.com: max-age too low: 0
lincolncountytn.gov: could not connect to host
-lincsbouncycastlehire.co.uk: did not receive HSTS header
+lincsbouncycastlehire.co.uk: could not connect to host
lindberg.io: did not receive HSTS header
+lindemann.space: could not connect to host
lindholmen.club: did not receive HSTS header
lineauniformes.com.br: could not connect to host
linernotekids.com: could not connect to host
linext.cn: could not connect to host
+linfamilygc.com: did not receive HSTS header
lingerie.net.br: did not receive HSTS header
-lingerielovers.com.br: did not receive HSTS header
+lingerielovers.com.br: could not connect to host
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
+linguamilla.com: did not receive HSTS header
linguaquote.com: did not receive HSTS header
-linhaoyi.com: could not connect to host
+linhaoyi.com: did not receive HSTS header
+link.ba: could not connect to host
linkage.ph: did not receive HSTS header
linkages.org: could not connect to host
+linkat4.cz: could not connect to host
linkonaut.net: could not connect to host
linksanitizer.com: could not connect to host
linksextremist.at: could not connect to host
-linkstream.live: could not connect to host
+linkstream.live: did not receive HSTS header
linkthis.ml: could not connect to host
linkthisstatus.ml: could not connect to host
linkybos.com: could not connect to host
@@ -11059,10 +13068,13 @@ 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
+lintellift.com: did not receive HSTS header
+linusdrop.tips: could not connect to host
linux-admin-california.com: could not connect to host
linux-mint.cz: could not connect to host
linux.army: could not connect to host
linux.im: could not connect to host
+linux.pizza: did not receive HSTS header
linux.sb: could not connect to host
linuxandstuff.de: could not connect to host
linuxcode.net: could not connect to host
@@ -11070,13 +13082,14 @@ 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
+linuxhub.ro: did not receive HSTS header
linuxincluded.com: did not receive HSTS header
linuxmint.cz: could not connect to host
linuxmonitoring.net: could not connect to host
-linvx.org: could not connect to host
+linuxno.com: could not connect to host
+linvx.org: did not receive HSTS header
linxmind.eu: could not connect to host
lionhosting.nl: could not connect to host
-lionlyrics.com: could not connect to host
lipo.lol: could not connect to host
liquid.solutions: could not connect to host
liquidcomm.net: could not connect to host
@@ -11084,44 +13097,54 @@ liquidradio.pro: 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
+liris-beautywelt.de: did not receive HSTS header
lisaco.de: could not connect to host
+lisamortimore.com: did not receive HSTS header
lisbongold.com: did not receive HSTS header
lisgade.dk: could not connect to host
lisieuxarquitetura.com.br: could not connect to host
-lisky.ru: did not receive HSTS header
lisowski-photography.com: could not connect to host
lissabon.guide: could not connect to host
listafirmelor.com: could not connect to host
listage.ovh: did not receive HSTS header
-listal.com: could not connect to host
-lists.mayfirst.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+listal.com: did not receive HSTS header
+lists.mayfirst.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
litcc.com: could not connect to host
litcomphonors.com: could not connect to host
literaturpreis-bad-wurzach.de: did not receive HSTS header
litespeed.io: could not connect to host
litevault.net: did not receive HSTS header
little.pw: could not connect to host
+littlebirds.cf: could not connect to host
+littleboutiqueshop.com: could not connect to host
+littleboutiqueshop.uk: could not connect to host
littlecrittersbrewery.com: did not receive HSTS header
+littledev.nl: could not connect to host
littledisney.ro: did not receive HSTS header
littlefreelibrary.org: did not receive HSTS header
littleqiu.net: could not connect to host
littleservice.cn: could not connect to host
+liuboznaiko.eu: did not receive HSTS header
liud.im: could not connect to host
liufengyu.cn: did not receive HSTS header
liujunyang.com: did not receive HSTS header
liukang.tech: could not connect to host
-liushuyu.tk: did not receive HSTS header
-liv3ly.com: did not receive HSTS header
+livadm.ml: could not connect to host
+live4k.media: could not connect to host
livechatlady.info: did not receive HSTS header
livedemo.io: could not connect to host
+liveforspeed.se: could not connect to host
livej.am: could not connect to host
-livejasmin.dk: could not connect to host
livepath.ch: did not receive HSTS header
+liveperformersmeeting.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
liverewrite.com: could not connect to host
livesearch-fukuoka.com: did not receive HSTS header
livetube.tv: did not receive HSTS header
+livhao.com: did not receive HSTS header
liviababynet.com.br: could not connect to host
livinghealthywithchocolate.com: did not receive HSTS header
+livnev.me: could not connect to host
+livolett.de: did not receive HSTS header
livrariacoad.com.br: could not connect to host
livrariahugodesaovitor.com.br: could not connect to host
livres-et-stickers.com: did not receive HSTS header
@@ -11129,26 +13152,37 @@ livroseuniformes.com.br: could not connect to host
lixiang.one: could not connect to host
lixiaojiang.ga: could not connect to host
lixingcong.com: could not connect to host
-liyinjia.com: did not receive HSTS header
-liyunbin.com: did not receive HSTS header
lizhi123.net: could not connect to host
+lizhuogui.ga: could not connect to host
lizzythepooch.com: did not receive HSTS header
ljc.ro: could not connect to host
-lkiserver.com: max-age too low: 43200
+ljskool.com: did not receive HSTS header
+ljw.me: could not connect to host
+lkbk.uk: could not connect to host
+lkp111138.me: did not receive HSTS header
+ll6957.com: could not connect to host
+llamasweet.tech: could not connect to host
+ller.xyz: could not connect to host
lll.st: could not connect to host
+llsv666.com: max-age too low: 0
llvm.us: could not connect to host
lmrcouncil.gov: could not connect to host
+lmtravis.com: could not connect to host
ln.io: could not connect to host
lnbeauty.ru: max-age too low: 0
+lnmp.me: did not receive HSTS header
lnoldan.com: could not connect to host
+lntu.org: did not receive HSTS header
lnx.li: 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
+loadwallet.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
+loanreadycredit.com: could not connect to host
loansonline.today: could not connect to host
loanstreet.be: could not connect to host
lobin21.com: could not connect to host
@@ -11157,10 +13191,11 @@ lobosdomain.no-ip.info: could not connect to host
lobste.rs: did not receive HSTS header
locais.org: could not connect to host
localchum.com: could not connect to host
-localdata.us: could not connect to host
+localdata.us: did not receive HSTS header
localdrive.me: could not connect to host
-localea.com: max-age too low: 2592000
+localegroup.com: did not receive HSTS header
localnetwork.nz: could not connect to host
+location-fichier-email.com: could not connect to host
locationvoitureallemagne.com: could not connect to host
locationvoitureangleterre.com: could not connect to host
locationvoitureaustralie.com: could not connect to host
@@ -11169,7 +13204,7 @@ locationvoiturebelgique.com: could not connect to host
locationvoiturecorse.net: could not connect to host
locationvoitureespagne.com: could not connect to host
locationvoiturefinlande.com: could not connect to host
-locationvoitureirlande.com: did not receive HSTS header
+locationvoitureirlande.com: could not connect to host
locationvoitureislande.com: could not connect to host
locationvoitureitalie.com: could not connect to host
locationvoiturenorvege.com: could not connect to host
@@ -11179,24 +13214,28 @@ locationvoituresuede.com: could not connect to host
locchat.com: could not connect to host
locker3.com: could not connect to host
lockify.com: could not connect to host
+lockoutgroup.com: could not connect to host
+lockr.io: did not receive HSTS header
locksmith-durbannorth.co.za: could not connect to host
+locksmithcarrolltontx.com: did not receive HSTS header
locksmithhillcrest.co.za: could not connect to host
locksmithrandburg24-7.co.za: could not connect to host
locksmithsbluff.com: could not connect to host
locksport.org.nz: could not connect to host
locktheirphone.com: could not connect to host
lockyourcomputer.pw: could not connect to host
-locomore.com: could not connect to host
locomotive.ca: did not receive HSTS header
locvis.ru: did not receive HSTS header
lode.li: could not connect to host
+lodewijkict.nl: did not receive HSTS header
lodgesdureynou.fr: did not receive HSTS header
loeildansledoigt.fr: could not connect to host
loftboard.eu: could not connect to host
log2n.uk: could not connect to host
+logaldeveloper.com: could not connect to host
logario.com.br: could not connect to host
logcat.info: could not connect to host
-logfro.de: did not receive HSTS header
+logfro.de: max-age too low: 0
logic8.ml: could not connect to host
logicaladvertising.com: could not connect to host
logicchen.com: could not connect to host
@@ -11210,16 +13249,18 @@ login.corp.google.com: max-age too low: 7776000 (error ignored - included regard
login.persona.org: could not connect to host
logingate.hu: could not connect to host
loginseite.com: could not connect to host
+loginsentinel.eu: could not connect to host
logistify.com.mx: did not receive HSTS header
logitank.net: did not receive HSTS header
lognot.net: could not connect to host
logymedia.com: could not connect to host
lohl1kohl.de: did not receive HSTS header
-loisircreatif.net: did not receive HSTS header
+loigiai.net: did not receive HSTS header
+loihay.net: did not receive HSTS header
lojadocristaozinho.com.br: could not connect to host
-lojadoprazer.com.br: could not connect to host
lojahunamarcenaria.com.br: could not connect to host
lojamulticapmais.com.br: did not receive HSTS header
+lojasceletro.com.br: could not connect to host
lojashowdecozinha.com.br: could not connect to host
lojasviavento.com.br: could not connect to host
lojatema.com.br: could not connect to host
@@ -11227,56 +13268,74 @@ lojavalcapelli.com.br: could not connect to host
lojavirtualfc.com.br: did not receive HSTS header
lojavirtualfct.com.br: did not receive HSTS header
lolcorp.pl: could not connect to host
-loli.bz: did not receive HSTS header
-loli.com: could not connect to host
-loli.ee: did not receive HSTS header
+lolhax.org: did not receive HSTS header
+loli.bz: could not connect to host
+loli.ee: could not connect to host
+loli.vip: could not connect to host
+loliblogs.cf: could not connect to host
+loliblogs.ga: could not connect to host
+loliblogs.gq: could not connect to host
+loliblogs.ml: could not connect to host
lolico.moe: 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
+lolifamily.cf: could not connect to host
+lolifamily.ga: could not connect to host
+lolifamily.gq: could not connect to host
+lolifamily.ml: could not connect to host
lolis.stream: could not connect to host
lollaconcept.com.br: could not connect to host
lonal.com: could not connect to host
-lonasdigital.com: did not receive HSTS header
+lonay.me: did not receive HSTS header
lonbali.com: did not receive HSTS header
londoncalling.co: did not receive HSTS header
+londonindustryshop.com: 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
+long-journey.com: could not connect to host
longboarding-ulm.de: could not connect to host
+longdie88.com: max-age too low: 0
longma.pw: could not connect to host
longtaitouwang.com: did not receive HSTS header
look-at-my.site: could not connect to host
looka.ch: did not receive HSTS header
looka.photo: could not connect to host
lookart.ch: could not connect to host
-looker.wang: could not connect to host
lookout.com: did not receive HSTS header
looktothestars.org: did not receive HSTS header
-lookupclose.com: did not receive HSTS header
+lookupclose.com: could not connect to host
lookyman.net: did not receive HSTS header
looneymooney.com: could not connect to host
loongsg.xyz: could not connect to host
loony.info: could not connect to host
loopower.com: could not connect to host
+loovto.net: could not connect to host
loperetti.ch: could not connect to host
loqyu.co: could not connect to host
+lord.sh: did not receive HSTS header
lordgun.com: did not receive HSTS header
-lordjevington.co.uk: did not receive HSTS header
+lordofthebrick.com: could not connect to host
+lorientlejour.com: did not receive HSTS header
losebellyfat.pro: could not connect to host
+losless.fr: did not receive HSTS header
losrascadoresparagatos.com: did not receive HSTS header
-lostandcash.com: could not connect to host
+loss.no: could not connect to host
+lostandcash.com: did not receive HSTS header
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
loteks.de: did not receive HSTS header
lothai.re: did not receive HSTS header
+lothlorien.ca: could not connect to host
lothuytinhsi.com: could not connect to host
lotos-ag.ch: did not receive HSTS header
lotsencafe.de: did not receive HSTS header
lottosonline.com: did not receive HSTS header
-lotuscloud.de: could not connect to host
+lotuscloud.de: did not receive HSTS header
lotuscloud.org: could not connect to host
+lotuswebsolutions.tk: did not receive HSTS header
louduniverse.net: did not receive HSTS header
louiewatch.com: could not connect to host
louisvillevmug.info: did not receive HSTS header
@@ -11285,8 +13344,9 @@ love4taylor.eu.org: could not connect to host
loveable.de: could not connect to host
loveamber.me: could not connect to host
loveandloyalty.se: could not connect to host
-lovebo9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-lovebo9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+lovebo9.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+lovebo9.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+lovecrystal.co.uk: could not connect to host
lovelens.ch: could not connect to host
lovelens.li: could not connect to host
lovelifelovelive.com: could not connect to host
@@ -11302,28 +13362,26 @@ lovemen.cc: did not receive HSTS header
lovemysafetynet.com: did not receive HSTS header
loveread-ec.appspot.com: did not receive HSTS header
loveto.at: could not connect to host
-lovetravel360.com: could not connect to host
-loveyounastya.com: could not connect to host
+lovetravel360.com: did not receive HSTS header
+loveyounastya.com: did not receive HSTS header
lovingpenguin.com: did not receive HSTS header
+lowcarblab.com: did not receive HSTS header
lowhangingfruitgrabber.com: could not connect to host
lowt.us: could not connect to host
lowtherpavilion.co.uk: did not receive HSTS header
-loxal.org: could not connect to host
loxis.be: did not receive HSTS header
-loyaleco.it: could not connect to host
loyaltech.ch: could not connect to host
lpacademy.com.br: could not connect to host
lpak.nl: could not connect to host
-lpcom.de: max-age too low: 172800
lpgram.ga: could not connect to host
lpm-uk.com: did not receive HSTS header
-lprcommunity.co.za: did not receive HSTS header
lqs.me: did not receive HSTS header
lrhsclubs.com: could not connect to host
-lrhstsa.com: could not connect to host
+lrhstsa.com: did not receive HSTS header
ls-a.org: did not receive HSTS header
ls-reallife.de: did not receive HSTS header
ls-rp.es: did not receive HSTS header
+lshiy.com: could not connect to host
lsky.cn: could not connect to host
lsp-sports.de: did not receive HSTS header
lstma.com: could not connect to host
@@ -11334,37 +13392,45 @@ lszj.com: could not connect to host
ltba.org: could not connect to host
ltbytes.com: could not connect to host
ltechnologygroup.com: could not connect to host
+ltlec.cn: could not connect to host
+ltlec.net: could not connect to host
+ltlec.org: could not connect to host
+ltlec.services: could not connect to host
+ltmw.xyz: could not connect to host
ltransferts.com: could not connect to host
ltu.social: could not connect to host
+lty.space: could not connect to host
lubomirkazakov.com: did not receive HSTS header
lubot.net: could not connect to host
luca.swiss: could not connect to host
lucakrebs.de: could not connect to host
lucas-garte.com: did not receive HSTS header
-lucascantor.com: did not receive HSTS header
lucascobb.com: did not receive HSTS header
lucascodes.com: could not connect to host
+lucasgaland.com: could not connect to host
lucaterzini.com: could not connect to host
lucidlogs.com: could not connect to host
-luckydog.pw: could not connect to host
+lucidoccult.com: could not connect to host
+lucky28.org: did not receive HSTS header
+luckydog.pw: did not receive HSTS header
luckystarfishing.com: did not receive HSTS header
+luckyxf.com: could not connect to host
luclu7.pw: could not connect to host
+ludum-polus.xyz: could not connect to host
+ludum.pl: could not connect to host
ludwig.click: could not connect to host
ludwig.im: could not connect to host
-lufthansaexperts.com: max-age too low: 2592000
lufu.io: could not connect to host
luganskservers.net: could not connect to host
-luginbuehl.eu: could not connect to host
+lugimax.com: could not connect to host
+lui.pink: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
luis-checa.com: could not connect to host
-luisgf.es: did not receive HSTS header
+luisgf.es: could not connect to host
luisv.me: could not connect to host
luk.photo: could not connect to host
-lukas-oppermann.de: max-age too low: 0
lukas-schauer.de: did not receive HSTS header
lukas.im: did not receive HSTS header
lukas2511.de: did not receive HSTS header
-lukasoppermann.com: max-age too low: 0
-lukasoppermann.de: max-age too low: 0
lukasschauer.de: did not receive HSTS header
lukasunger.cz: could not connect to host
lukasunger.net: could not connect to host
@@ -11373,25 +13439,33 @@ lukasztkacz.com: could not connect to host
lukatz.de: did not receive HSTS header
lukem.eu: could not connect to host
lukeng.me: could not connect to host
+lukesutton.info: could not connect to host
+lukmanulhakim.id: did not receive HSTS header
lukonet.com: did not receive HSTS header
+luloboutique.com: could not connect to host
luludapomerania.com: could not connect to host
luma.family: could not connect to host
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
-lunapatch.com: max-age too low: 7889238
+luminancy.com: did not receive HSTS header
+lunafag.ru: could not connect to host
lunarift.com: could not connect to host
lunarrift.net: could not connect to host
+lunastrail.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
luneta.nearbuysystems.com: could not connect to host
lungta.pro: could not connect to host
lunight.ml: could not connect to host
lunix.io: did not receive HSTS header
luno.io: could not connect to host
+lunorian.is: max-age too low: 86400
+luody.info: could not connect to host
luoe.ml: could not connect to host
luolikong.vip: could not connect to host
luom.net: could not connect to host
+luoshifeng.com: could not connect to host
+luosonghao.com: could not connect to host
luoxiao.im: could not connect to host
luoxingyu.ml: could not connect to host
luripump.se: could not connect to host
@@ -11399,19 +13473,23 @@ lusis.fr: did not receive HSTS header
lusis.net: could not connect to host
lustige-zitate.com: did not receive HSTS header
lustrumxi.nl: could not connect to host
+lusynth.com: could not connect to host
luther.fi: could not connect to host
-luukuton.fi: did not receive HSTS header
-luvplay.co.uk: could not connect to host
luxe-it.co.uk: could not connect to host
+luxescreenprotector.nl: did not receive HSTS header
+luxfosdecoenterprise.com: could not connect to host
luxinmo.com: did not receive HSTS header
luxofit.de: did not receive HSTS header
luxonetwork.com: could not connect to host
+luxurytimepieces.net: could not connect to host
luxus-russen.de: could not connect to host
luzeshomologadas.com.br: could not connect to host
lv5.top: could not connect to host
+lvtrafficticketguy.com: did not receive HSTS header
lwhate.com: could not connect to host
+lxd.pm: could not connect to host
lychankiet.name.vn: could not connect to host
-lycly.me: could not connect to host
+lyclive.com: max-age too low: 0
lycly.top: could not connect to host
lydia-und-simon.de: could not connect to host
lydiagorstein.com: did not receive HSTS header
@@ -11422,26 +13500,30 @@ lyonelkaufmann.ch: did not receive HSTS header
lyoness.digital: could not connect to host
lyonl.com: could not connect to host
lyscnd.com: could not connect to host
+lysdeau.be: did not receive HSTS header
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: could not connect to host
m-ali.xyz: did not receive HSTS header
+m-cont.cz: did not receive HSTS header
m-edmondson.co.uk: did not receive HSTS header
-m-gaming.tk: could not connect to host
m-generator.com: could not connect to host
m-rickroll-v.pw: could not connect to host
m-warrior.tk: could not connect to host
m.gparent.org: could not connect to host
m.nu: did not receive HSTS header
m0wef.uk: could not connect to host
+m12uno.com: could not connect to host
m132.eu: did not receive HSTS header
m2tc.fr: could not connect to host
m3-gmbh.de: did not receive HSTS header
m4570.xyz: could not connect to host
+m6957.com: could not connect to host
m82labs.com: did not receive HSTS header
ma-musique.fr: could not connect to host
ma-plancha.ch: did not receive HSTS header
@@ -11449,8 +13531,7 @@ maarten.nyc: could not connect to host
maartenprovo.be: did not receive HSTS header
maartenterpstra.xyz: could not connect to host
mac-torrents.me: did not receive HSTS header
-mac-world.pl: did not receive HSTS header
-macandtonic.com: 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
macchedil.com: did not receive HSTS header
@@ -11458,29 +13539,31 @@ macdj.tk: could not connect to host
macedopesca.com.br: did not receive HSTS header
mach1club.com: did not receive HSTS header
machbach.net: could not connect to host
+machcz.eu: did not receive HSTS header
machijun.net: did not receive HSTS header
machinelearningjavascript.com: could not connect to host
maciespartyhire.co.uk: did not receive HSTS header
mack.space: could not connect to host
macker.io: could not connect to host
-mackey7.net: did not receive HSTS header
+mackey7.net: could not connect to host
macleodnc.com: did not receive HSTS header
macoun.de: max-age too low: 2592000
macsandcheesedreams.com: could not connect to host
macstore.pe: did not receive HSTS header
-macustar.eu: could not connect to host
+macustar.eu: did not receive HSTS header
+madae.nl: did not receive HSTS header
madandpissedoff.com: did not receive HSTS header
madcatdesign.de: did not receive HSTS header
maddin.ga: could not connect to host
-made-to-usb.com: did not receive HSTS header
+maddistonparentcouncil.co.uk: could not connect to host
+maddistonpsa.co.uk: could not connect to host
madebyfalcon.co.uk: did not receive HSTS header
madebymagnitude.com: did not receive HSTS header
madeglobal.com: did not receive HSTS header
-madeinchezmoi.net: could not connect to host
-madeinorder.com: could not connect to host
+madeinchezmoi.net: did not receive HSTS header
madeintucson.org: could not connect to host
mademoiselle-emma.be: could not connect to host
-mademoiselle-emma.fr: could not connect to host
+mademoiselle-emma.fr: did not receive HSTS header
maderasbrown.com: could not connect to host
maderwin.com: did not receive HSTS header
madesoftware.com.br: could not connect to host
@@ -11489,48 +13572,54 @@ madokami.net: could not connect to host
madokami.pw: could not connect to host
madpeople.net: max-age too low: 2592000
madrants.net: could not connect to host
+madusecurity.com: could not connect to host
+mae-berlinistanbul.com: could not connect to host
maerzpa.de: did not receive HSTS header
-maestrano.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
mafamane.com: could not connect to host
+maff.scot: could not connect to host
mafiareturns.com: max-age too low: 2592000
magazinedabeleza.net: could not connect to host
-magbt.net: could not connect to host
magebankin.com: did not receive HSTS header
magenx.com: did not receive HSTS header
maggie-shaw.co.uk: did not receive HSTS header
+magi.systems: could not connect to host
magia360.com: did not receive HSTS header
magicalshuttle.fr: did not receive HSTS header
-magickmoments.co.uk: could not connect to host
+magickmoments.co.uk: did not receive HSTS header
magieamour.com: did not receive HSTS header
magieblanche.fr: did not receive HSTS header
magnacumlaude.co: could not connect to host
magnettracker.com: could not connect to host
+magnoliadoulas.com: could not connect to host
magosmedellin.com: could not connect to host
magyarokegyhelyen.hu: did not receive HSTS header
+mahai.me: 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
maik-mahlow.de: could not connect to host
mail-settings.google.com: did not receive HSTS header (error ignored - included regardless)
mail.google.com: did not receive HSTS header (error ignored - included regardless)
mail4geek.com: did not receive HSTS header
mailchuck.com: could not connect to host
-maildragon.com: did not receive HSTS header
+maildragon.com: could not connect to host
+mailer-dot.de: did not receive HSTS header
mailgarant.nl: could not connect to host
mailhost.it: could not connect to host
-mailing-femprendedores.com: did not receive HSTS header
+mailing-femprendedores.com: could not connect to host
mailing-jbgg.com: could not connect to host
maillink.store: could not connect to host
mailon.ga: could not connect to host
mailpenny.com: could not connect to host
main-street-seo.com: did not receive HSTS header
main-unit.com: could not connect to host
+mainelosap.gov: could not connect to host
mainston.com: could not connect to host
maintainerheaven.ch: could not connect to host
maisalto.ind.br: could not connect to host
maitrechaton.fr: did not receive HSTS header
maitriser-son-stress.com: could not connect to host
+majahoidja.ee: could not connect to host
majesticcolorado.com: did not receive HSTS header
majncloud.tk: could not connect to host
make-pizza.info: could not connect to host
@@ -11538,47 +13627,54 @@ makedonien.guide: could not connect to host
makedonija.net.mk: did not receive HSTS header
makeit-so.de: could not connect to host
makeitdynamic.com: could not connect to host
+makejusticework.org.uk: could not connect to host
makemejob.com: could not connect to host
-makemyvape.co.uk: max-age too low: 7889238
+makera.ga: could not connect to host
makerstuff.net: did not receive HSTS header
makeshiftco.de: could not connect to host
makeuplove.nl: could not connect to host
makeyourlaws.org: could not connect to host
makino.games: could not connect to host
-makkyon.com: could not connect to host
+makogaming.com: did not receive HSTS header
+makropa.com: did not receive HSTS header
malamutedoalasca.com.br: could not connect to host
+malasuk.com: could not connect to host
maldiverna.guide: could not connect to host
maleexcel.com: did not receive HSTS header
-malena.com.ua: did not receive HSTS header
+malena.com.ua: could not connect to host
malerversand.de: did not receive HSTS header
-malesbdsm.com: could not connect to host
-malezan.com: did not receive HSTS header
+malesbdsm.com: did not receive HSTS header
malfait.nl: could not connect to host
malgraph.net: could not connect to host
malibubeachrecoverycenter.com: could not connect to host
+maljaars-fotografie.nl: did not receive HSTS header
maljaars-media.nl: could not connect to host
malkaso.com.ua: could not connect to host
+malmoesport.se: did not receive HSTS header
malmstroms-co.se: could not connect to host
malone.link: could not connect to host
+malscan.com: could not connect to host
+malscan.org: could not connect to host
maltes.website: could not connect to host
malvy.kiev.ua: could not connect to host
-malwarekillers.com: could not connect to host
-malwareverse.us: did not receive HSTS header
+malwareverse.us: could not connect to host
malwre.io: could not connect to host
maly.io: did not receive HSTS header
malya.fr: could not connect to host
mamaasia.info: did not receive HSTS header
-mamacobaby.com: did not receive HSTS header
+mamacobaby.com: could not connect to host
+mamadea.be: did not receive HSTS header
+mamadoma.com.ua: could not connect to host
+mamafit.club: did not receive HSTS header
mamaison.io: could not connect to host
mamastore.eu: could not connect to host
-mambas.cn: could not connect to host
+mammeitalianeavienna.com: max-age too low: 86400
mammooc.org: did not receive HSTS header
mammothmail.com: could not connect to host
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]
-mamospienas.lt: did not receive HSTS header
+mamochka.org.ua: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\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
@@ -11590,21 +13686,26 @@ manageforall.de: could not connect to host
management-ethics.com: did not receive HSTS header
managemynetsuite.com: did not receive HSTS header
manalu.cz: could not connect to host
-manantial.mx: could not connect to host
+manantial.mx: did not receive HSTS header
+manaonetrading.com: could not connect to host
manav-it.de: could not connect to host
mandala-ausmalbilder.de: did not receive HSTS header
mandanudes.ae: could not connect to host
mandm.servebeer.com: could not connect to host
mandpress.com: did not receive HSTS header
mangapoi.com: could not connect to host
-mangazuki.co: could not connect to host
+mangazuki.co: did not receive HSTS header
+manhassetparkdistrictny.gov: did not receive HSTS header
+maniacoland.com: could not connect to host
maniadeprazer.com.br: could not connect to host
manifestbin.com: could not connect to host
manipulatedtme.com: could not connect to host
manitasicily.com: did not receive HSTS header
-maniw.com: could not connect to host
+maniw.com: did not receive HSTS header
+mann-und-maeuse.de: could not connect to host
mannford.com: could not connect to host
manningbrothers.com: did not receive HSTS header
+manns-solutions.co.uk: did not receive HSTS header
manns-solutions.com: did not receive HSTS header
manns-solutions.ru: did not receive HSTS header
mannsolutions.co.uk: did not receive HSTS header
@@ -11615,26 +13716,34 @@ 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
+mantra.pictures: could not connect to host
+mantuo.com: could not connect to host
+mantuo.xyz: could not connect to host
manududu.com.br: could not connect to host
manuel7espejo.com: did not receive HSTS header
+manuelahidalgo.org: could not connect to host
+manueldopheide.com: did not receive HSTS header
manuelrueger.de: could not connect to host
manuscript.com: did not receive HSTS header
manutrol.com.br: did not receive HSTS header
maomao.blog: could not connect to host
maomaobt.com: did not receive HSTS header
maomaofuli.vip: could not connect to host
+maorseo.com: could not connect to host
maosi.xin: could not connect to host
+maplanetebeaute.fr: did not receive HSTS header
maple5.com: did not receive HSTS header
+maplehome.tk: could not connect to host
maplenorth.co: could not connect to host
-maps.net: did not receive HSTS header
mapservices.nl: did not receive HSTS header
+maquena.org: could not connect to host
+maquettage.com: did not receive HSTS header
maquillage-permanent-tatoo.com: did not receive HSTS header
-maquininhamercadopoint.com.br: could not connect to host
+mara-martinez.de: could not connect to host
maranatha.pl: did not receive HSTS header
-marbinvest.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+marbinvest.com: did not receive HSTS header
marcaudefroy.com: did not receive HSTS header
marcberman.co: did not receive HSTS header
-marcberndtgen.de: could not connect to host
marcbuehlmann.com: did not receive HSTS header
marcceleiro.cat: could not connect to host
marcelmarnitz.com: could not connect to host
@@ -11644,13 +13753,13 @@ marche-nordic-jorat.ch: could not connect to host
marchwj.pl: did not receive HSTS header
marco-kretz.de: did not receive HSTS header
marco01809.net: could not connect to host
-marcoececilia.it: did not receive HSTS header
+marcoececilia.it: could not connect to host
marcofinke.de: could not connect to host
marcohager.de: could not connect to host
marcontrol.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
+marcus-scheffler.com: could not connect to host
marcush.de: did not receive HSTS header
marcusserver.synology.me: could not connect to host
mardelcupon.com: could not connect to host
@@ -11659,62 +13768,81 @@ mareklecian.cz: did not receive HSTS header
margan.ch: could not connect to host
margaretrosefashions.co.uk: could not connect to host
margo.ml: could not connect to host
+margots.biz: could not connect to host
+margots.life: could not connect to host
+margots.tech: could not connect to host
mariacorzo.com: could not connect to host
mariacristinadoces.com.br: did not receive HSTS header
mariage-photo.ch: could not connect to host
mariannematthew.com: could not connect to host
marianwehlus.de: did not receive HSTS header
-mariaolesen.dk: could not connect to host
+mariaolesen.dk: did not receive HSTS header
marie-curie.fr: could not connect to host
marie-en-provence.com: could not connect to host
marie.club: could not connect to host
marienschule-sundern.de: did not receive HSTS header
-marinecadastre.gov: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-marioabela.com: did not receive HSTS header
+marinecadastre.gov: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+mario.party: could not connect to host
+marioberluchi.by: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
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
+markepps.com: could not connect to host
market.android.com: did not receive HSTS header (error ignored - included regardless)
-marketgot.com: did not receive HSTS header
+marketgot.com: could not connect to host
marketing-advertising.eu: could not connect to host
marketingdesignu.cz: could not connect to host
+marketingeinnovacion.com: did not receive HSTS header
marketingromania.ro: did not receive HSTS header
-marketio.co: did not receive HSTS header
+marketio.co: could not connect to host
+marketizare.ro: did not receive HSTS header
marketlinks.org: did not receive HSTS header
+markf.io: could not connect to host
+markhenrick.site: did not receive HSTS header
markholden.guru: could not connect to host
markllego.com: could not connect to host
marko-fenster24.de: could not connect to host
markorszulak.com: did not receive HSTS header
markow.io: max-age too low: 7776000
markrego.com: could not connect to host
+markrobin.de: did not receive HSTS header
marksill.com: could not connect to host
-marktboten.de: did not receive HSTS header
+marksmanhomes.com: did not receive HSTS header
+marksouthall.com: could not connect to host
+marktboten.de: could not connect to host
marktplaatshelper.nl: did not receive HSTS header
+markus.design: did not receive HSTS header
markusabraham.com: did not receive HSTS header
-markusgran.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+markusgran.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
markusueberallassetmanagement.de: could not connect to host
markusueberallconsulting.de: could not connect to host
markusweimar.de: did not receive HSTS header
marlen.cz: did not receive HSTS header
marleyresort.com: could not connect to host
marlonschultz.de: did not receive HSTS header
+marmolrain.cl: did not receive HSTS header
+maroc-bivouac.com: did not receive HSTS header
marocmail.ma: could not connect to host
marotero.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
-marshallford.me: could not connect to host
+marshallford.me: did not receive HSTS header
marshut.net: could not connect to host
+marshyplay.live: could not connect to host
+marthasvillemo.gov: did not receive HSTS header
martialc.be: could not connect to host
martiert.com: could not connect to host
-martiestrimsalon.nl: did not receive HSTS header
+martiestrimsalon.nl: could not connect to host
+martijnhielema.nl: did not receive HSTS header
martijnvhoof.nl: could not connect to host
martin-arend.de: did not receive HSTS header
martin-mattel.com: could not connect to host
+martin-smith.info: could not connect to host
martinec.co.uk: could not connect to host
martinestyle.com: could not connect to host
martineve.com: did not receive HSTS header
@@ -11722,39 +13850,46 @@ martingansler.de: did not receive HSTS header
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
martynhare.co.uk: could not connect to host
martynhare.uk: could not connect to host
+maru-life.com: did not receive HSTS header
marumagic.com: could not connect to host
+marustat.ru: 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
-marzio.co.za: did not receive HSTS header
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
+masayahost.com: did not receive HSTS header
mascorazon.com: could not connect to host
+mascotarios.org: did not receive HSTS header
mashek.net: could not connect to host
mashnew.com: could not connect to host
-masiul.is: could not connect to host
masjidtawheed.net: did not receive HSTS header
maskice.hr: did not receive HSTS header
-maskinkultur.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+maskinkultur.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
maskt.pw: could not connect to host
-maslife365.com: did not receive HSTS header
+maslife365.com: max-age too low: 7776000
+massageishealthy.com: did not receive HSTS header
massagelimaperu.com: did not receive HSTS header
massagetherapyschoolsinformation.com: did not receive HSTS header
+massar.family: could not connect to host
+massive.tk: could not connect to host
massivum.de: did not receive HSTS header
massot.eu: did not receive HSTS header
+massvow.com: could not connect to host
+mastafu.info: did not receive HSTS header
mastd.fr: could not connect to host
+mastd.me: could not connect to host
mastd.onl: could not connect to host
masteragenasia.com: did not receive HSTS header
masteragenasia.net: did not receive HSTS header
masterapi.ninja: did not receive HSTS header
masterhaus.bg: did not receive HSTS header
masteringtheterminal.com: did not receive HSTS header
-mastersquirrel.xyz: did not receive HSTS header
-mastersthesiswriting.com: could not connect to host
+mastersquirrel.xyz: could not connect to host
mastichor.info: could not connect to host
mastiffingles.com.br: could not connect to host
mastimtibetano.com: could not connect to host
@@ -11768,117 +13903,138 @@ mastodon.expert: could not connect to host
mastodon.fun: could not connect to host
mastodon.my: could not connect to host
mastodon.org.uk: did not receive HSTS header
-mastodon.pl: did not receive HSTS header
-mastodones.club: did not receive HSTS header
+mastodon.pl: could not connect to host
+mastodon.rocks: could not connect to host
+mastodones.club: could not connect to host
masty.nl: could not connect to host
masumreza.tk: could not connect to host
mat99.dk: could not connect to host
matarrosabierzo.com: could not connect to host
+matbad.de: did not receive HSTS header
+matchlessdentist.com: could not connect to host
matchneedle.com: did not receive HSTS header
+maternum.com: could not connect to host
mateusmeyer.com.br: could not connect to host
+mateuszchyla.pl: did not receive HSTS header
mateuszpilszek.pl: could not connect to host
mathematris.com: could not connect to host
mathembedded.com: did not receive HSTS header
mathers.ovh: did not receive HSTS header
matheusmacedo.ddns.net: could not connect to host
-mathias.is: could not connect to host
-mathias.re: did not receive HSTS header
+mathias.is: did not receive HSTS header
+mathias.re: could not connect to host
mathijskingma.nl: could not connect to host
mathsource.ga: could not connect to host
-mathsweek.nz: could not connect to host
-mathsweek.org.nz: could not connect to host
-mathsweek.school.nz: could not connect to host
-matillat.ovh: did not receive HSTS header
-matlabjo.ir: did not receive HSTS header
+mathsweek.nz: did not receive HSTS header
+mathsweek.org.nz: did not receive HSTS header
+mathsweek.school.nz: did not receive HSTS header
+mathys.io: could not connect to host
+matillat.ovh: could not connect to host
+matlabjo.ir: could not connect to host
matmessages.com: did not receive HSTS header
matomeplus.co: could not connect to host
matrict.com: could not connect to host
matrip.de: could not connect to host
-matrix.ac: could not connect to host
+matrix.ac: did not receive HSTS header
matrixcheats.net: could not connect to host
+matsu-walk.com: could not connect to host
matsuz.com: did not receive HSTS header
matt.tf: did not receive HSTS header
mattandreko.com: did not receive HSTS header
-mattberryman.com: did not receive HSTS header
+mattbagley.me: did not receive HSTS header
+mattdbarton.com: could not connect to host
matterconcern.com: could not connect to host
matthew-carson.info: could not connect to host
+matthewchapman.co.uk: did not receive HSTS header
matthewemes.com: did not receive HSTS header
matthewprenger.com: could not connect to host
matthewtester.com: did not receive HSTS header
matthiasadler.info: 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]
+matthiasweiler.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
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
+mattwb65.com: could not connect to host
matty.digital: 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]
+matze.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
maultrom.ml: could not connect to host
maupiknik.com: did not receive HSTS header
maur.cz: did not receive HSTS header
+maurice-walker.com: could not connect to host
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
mawidabp.com: did not receive HSTS header
mawidaca.com: did not receive HSTS header
-max-mad.com: could not connect to host
+max-mad.com: did not receive HSTS header
maxbachmann.de: did not receive HSTS header
maxdev72.freeboxos.fr: could not connect to host
maxfox.me: did not receive HSTS header
+maxhamon.ovh: 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
-maxr1998.de: could not connect to host
maxserver.com: did not receive HSTS header
+maxwellflynn.com: did not receive HSTS header
+may24.tw: 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
maydex.info: could not connect to host
+mayerbrownllz.com: could not connect to host
maynardnetworks.com: could not connect to host
mayoimobiliare.ro: could not connect to host
mayoristassexshop.com: did not receive HSTS header
mazternet.ru: could not connect to host
mazyun.com: did not receive HSTS header
mazz-tech.com: could not connect to host
-mb300sd.com: could not connect to host
-mb300sd.net: could not connect to host
-mbconsultancy.nu: did not receive HSTS header
+mbconsultancy.nu: could not connect to host
mbdrogenbos-usedcars.be: could not connect to host
+mbilker.us: did not receive HSTS header
+mbits.solutions: did not receive HSTS header
+mbmcatering.com: did not receive HSTS header
+mbp.banking.co.at: could not connect to host
+mburns.duckdns.org: could not connect to host
+mbweir.com: could not connect to host
mbwemmel-usedcars.be: could not connect to host
-mc81.com: did not receive HSTS header
+mc4free.cc: could not connect to host
mca2017.org: did not receive HSTS header
mcadmin.net: could not connect to host
mcard.vn: did not receive HSTS header
mcb-bank.com: did not receive HSTS header
mcc.re: could not connect to host
-mccarty.io: could not connect to host
mccordworks.com: did not receive HSTS header
+mccurtainems.gov: could not connect to host
mcdanieldevelopmentservices.com: could not connect to host
mcdonalds.ru: did not receive HSTS header
mcga.media: could not connect to host
+mcgarderen.nl: max-age too low: 0
mcgavocknissanwichitaparts.com: could not connect to host
mchan.us: did not receive HSTS header
-mchopkins.net: could not connect to host
+mchuiji.com: could not connect to host
mcideas.tk: could not connect to host
+mcit.gov.ws: did not receive HSTS header
mcjackk77.com: could not connect to host
mckenry.net: did not receive HSTS header
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
mcnoobs.pro: could not connect to host
mcooperlaw.com: did not receive HSTS header
+mcpart.land: could not connect to host
+mcpro.games: could not connect to host
+mcprocdn.com: could not connect to host
mcqyy.com: could not connect to host
mcsa-usa.org: could not connect to host
-mcsniper.co: could not connect to host
+mcsniper.co: did not receive HSTS header
mcsnovatamabayan.com: could not connect to host
mctherealm.net: could not connect to host
mcuong.tk: could not connect to host
@@ -11886,45 +14042,49 @@ md-student.com: did not receive HSTS header
mdazo.net: could not connect to host
mdbouncycastlehirelondon.co.uk: did not receive HSTS header
mdcloudpracticesolutions.com: could not connect to host
+mdcloudps.com: could not connect to host
mdfnet.se: did not receive HSTS header
+mdg-online.de: did not receive HSTS header
+mdoering.de: did not receive HSTS header
mdscomp.net: could not connect to host
mdwftw.com: could not connect to host
me-dc.com: could not connect to host
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
+mebanesteakhouse.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
mebio.us: could not connect to host
mecanicadom.com: could not connect to host
mecenat-cassous.com: did not receive HSTS header
-mechok.ru: could not connect to host
medallia.io: could not connect to host
meddatix.com: could not connect to host
mede-handover.azurewebsites.net: could not connect to host
+medeurope.info: did not receive HSTS header
medi-link.co.il: did not receive HSTS header
media-access.online: did not receive HSTS header
media-courses.com: could not connect to host
media-service.fr: did not receive HSTS header
+media101.xyz: did not receive HSTS header
mediabm.jp: did not receive HSTS header
mediacru.sh: could not connect to host
mediadandy.com: could not connect to host
mediafinancelab.org: could not connect to host
mediamag.am: max-age too low: 0
mediarocks.de: did not receive HSTS header
-mediastorm.us: did not receive HSTS header
mediavault.tech: could not connect to host
mediawikicn.org: could not connect to host
medicinskavranje.edu.rs: could not connect to host
medienservice-fritz.de: did not receive HSTS header
medifab.online: did not receive HSTS header
+medik8.com.cy: did not receive HSTS header
+medireport.fr: max-age too low: 0
medirich.co: could not connect to host
meditek-dv.ru: did not receive HSTS header
-meditel.nl: did not receive HSTS header
mediter-simplement.com: did not receive HSTS header
mediterenopmaandag.nl: did not receive HSTS header
-mediumraw.org: could not connect to host
+mediumraw.org: did not receive HSTS header
mediweed.tk: could not connect to host
medm-test.com: could not connect to host
medmarkt24.com: did not receive HSTS header
@@ -11933,11 +14093,16 @@ medsindex.com: did not receive HSTS header
medstreaming.com: did not receive HSTS header
medtankers.management: did not receive HSTS header
medy-me.com: could not connect to host
-medzinenews.com: did not receive HSTS header
+meedoennoordkop.nl: could not connect to host
meedoenzaanstad.nl: did not receive HSTS header
+meeko.cc: could not connect to host
+meet: could not connect to host
meetfinch.com: could not connect to host
meetmibaby.co.uk: could not connect to host
mega-aukcion.ru: could not connect to host
+mega-feeling.de: could not connect to host
+mega-key.eu: could not connect to host
+megablogging.org: could not connect to host
megadrol.com: could not connect to host
megafilmesplay.net: did not receive HSTS header
megaflix.nl: could not connect to host
@@ -11946,66 +14111,82 @@ megam.host: could not connect to host
megamarkey.de: did not receive HSTS header
megaplonk.com: could not connect to host
megashur.se: could not connect to host
-megasystem.cl: could not connect to host
+megasslstore.com: did not receive HSTS header
+megasystem.cl: did not receive HSTS header
+megaxhost.com.br: could not connect to host
meghudson.com: could not connect to host
megustariasaber.com: did not receive HSTS header
+mehmetakif.edu.tr: did not receive HSTS header
+meidens.com: did not receive HSTS header
meifrench.com: could not connect to host
-meilleur.xyz: did not receive HSTS header
+meilleur.xyz: could not connect to host
meimeistartup.com: could not connect to host
-meincloudspeicher.de: could not connect to host
+meincloudspeicher.de: did not receive HSTS header
meine-plancha.ch: did not receive HSTS header
meine-reise-gut-versichert.de: did not receive HSTS header
meinebo.it: could not connect to host
-meisterritter.de: did not receive HSTS header
+meinstartinsleben.com: could not connect to host
+meinstartinsleben.de: could not connect to host
meizufans.eu: could not connect to host
+mekatro.tech: could not connect to host
+mekatrotekno.com: could not connect to host
+mekongmontessori.com: could not connect to host
melakaltenegger.at: did not receive HSTS header
melangebrasil.com: could not connect to host
melaniebilodeau.com: did not receive HSTS header
+melbourneapartments.website: could not connect to host
melbyjuliapak.com: could not connect to host
-melcher.it: did not receive HSTS header
+mele.ro: could not connect to host
+melefo.ddns.net: could not connect to host
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
+melissaauclaire.com: could not connect to host
melitopol.co.ua: did not receive HSTS header
+mellitus.org: could not connect to host
melodic.com.au: could not connect to host
+melodicprogressivehouse.com: did not receive HSTS header
melody-lyrics.com: could not connect to host
melonstudios.net: could not connect to host
-melpomene.me: could not connect to host
+melpomene.me: did not receive HSTS header
+melted.me: could not connect to host
melted.pw: could not connect to host
melvinlammerts.nl: could not connect to host
melvinlow.com: did not receive HSTS header
memberpress.com: did not receive HSTS header
members.mayfirst.org: did not receive HSTS header
-membersonline.org: did not receive HSTS header
memberstweets.com: could not connect to host
memdoc.org: could not connect to host
memeblast.ninja: could not connect to host
+memepasmal.net: could not connect to host
memepasmal.org: could not connect to host
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
+memorytrace.space: did not receive HSTS header
menaraannonces.com: could not connect to host
menchez.me: could not connect to host
-menhera.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+mengliangyun.xyz: could not connect to host
+menhadendefenders.org: did not receive HSTS header
+menhera.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
menntagatt.is: did not receive HSTS header
-menotag.com: did not receive HSTS header
-mensachterdepatient.nl: max-age too low: 2592000
+menotag.com: could not connect to host
mensagensperfeitas.com.br: did not receive HSTS header
mensmaximus.de: did not receive HSTS header
mentalhealth.gov: did not receive HSTS header
mentax.net: did not receive HSTS header
mentesemprendedoras.net: could not connect to host
menthix.net: could not connect to host
+mentorithm.com: could not connect to host
+mentz.info: did not receive HSTS header
menu.fyi: could not connect to host
menudrivetest.com: could not connect to host
+menuel.me: could not connect to host
menuiserie-berard.com: did not receive HSTS header
menzaijia.com: could not connect to host
menzel-motors.com: did not receive HSTS header
-meo.de: could not connect to host
meow.cloud: could not connect to host
meozcraft.com: could not connect to host
mercadobitcoin.com.br: did not receive HSTS header
@@ -12020,26 +14201,24 @@ mergozzo.com: did not receive HSTS header
meridianstore.com.br: could not connect to host
merimatka.fi: could not connect to host
meritz.rocks: could not connect to host
-merloat.club: could not connect to host
-merloat.com: could not connect to host
-mers.one: could not connect to host
+merloat.club: did not receive HSTS header
+merloat.com: did not receive HSTS header
mersinunivercity.com: could not connect to host
merson.me: could not connect to host
-merson.org: could not connect to host
mertak.cz: did not receive HSTS header
meshlab.co: could not connect to host
meshotes.com: max-age too low: 8640000
meskdeals.com: could not connect to host
mesmoque.com: could not connect to host
-messagescelestes-archives.ca: did not receive HSTS header
messagescelestes.ca: did not receive HSTS header
+messenger.co.tz: could not connect to host
+mestr.es: did not receive HSTS header
+meta.sc: did not receive HSTS header
metadatawiki.com: did not receive HSTS header
-metadistribution.com: did not receive HSTS header
+metadistribution.com: could not connect to host
metagrader.com: could not connect to host
-metalsculpture.co.uk: max-age too low: 0
metanic.org: did not receive HSTS header
-metasyntactic.xyz: could not connect to host
-metavetted.com: did not receive HSTS header
+metavetted.com: could not connect to host
meteosherbrooke.com: could not connect to host
meteosky.net: did not receive HSTS header
metikam.pl: did not receive HSTS header
@@ -12050,37 +14229,41 @@ 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
-metropolisil.gov: did not receive HSTS header
-metsasta.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: did not receive HSTS header
+meu-solutions.com: did not receive HSTS header
+meuble-house.fr: did not receive HSTS header
+meubleko.com: could not connect to host
+meucosmetico.com.br: could not connect to host
meuemail.pro: could not connect to host
meupedido.online: did not receive HSTS header
meusigno.com: could not connect to host
mexbt.com: could not connect to host
-mexicanbusinessweb.mx: did not receive HSTS header
-mexicansbook.ru: did not receive HSTS header
+mexicanbusinessweb.mx: could not connect to host
+mexicansbook.ru: could not connect to host
+mexicodental.co: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
mexior.nl: could not connect to host
meyeraviation.com: could not connect to host
+meyerburger.com: did not receive HSTS header
+mf302.com: did not receive HSTS header
+mf303.com: did not receive HSTS header
mfacko.cz: did not receive HSTS header
mfcatalin.com: could not connect to host
mfedderke.com: could not connect to host
mfgod.com: did not receive HSTS header
mfgusa.com: could not connect to host
-mfiles.pl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+mfiles.pl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
mfpccprod.com: could not connect to host
mfrsgb45.org: did not receive HSTS header
mft.global: could not connect to host
mfxer.com: could not connect to host
mfxxx.cn: could not connect to host
mfz.mk: did not receive HSTS header
-mgcraft.net: did not receive HSTS header
+mgcraft.net: could not connect to host
mgdigital.fr: did not receive HSTS header
mgiay.com: did not receive HSTS header
mgknet.com: did not receive HSTS header
-mgoessel.de: did not receive HSTS header
+mgoessel.de: could not connect to host
mh-bloemen.co.jp: could not connect to host
mhdsyarif.com: did not receive HSTS header
mhealthdemocamp.com: could not connect to host
@@ -12089,59 +14272,60 @@ mhict.nl: could not connect to host
mhmfoundationrepair.com: could not connect to host
mht-travel.com: could not connect to host
mhx.pw: could not connect to host
-mia.ac: could not connect to host
-mia.to: could not connect to host
miamicityballet.org: did not receive HSTS header
mianfei-vpn.com: could not connect to host
+miaoubox.com: did not receive HSTS header
+miasarafina.de: could not connect to host
miboulot.com: could not connect to host
-micaiahparker.com: did not receive HSTS header
+micaiahparker.com: could not connect to host
micasamgmt.com: did not receive HSTS header
+micelius.com: could not connect to host
+michael-schilling.de: did not receive HSTS header
michaeldemuth.com: could not connect to host
michaeleichorn.com: could not connect to host
-michaelfitzpatrickruth.com: did not receive HSTS header
-michaelizquierdo.com: max-age too low: 0
-michaelklos.nl: did not receive HSTS header
+michaelfitzpatrickruth.com: could not connect to host
+michaeliscorp.com: could not connect to host
michaelmorpurgo.com: did not receive HSTS header
michaeln.net: did not receive HSTS header
michaels-homepage-service.de: could not connect to host
michaelscrivo.com: did not receive HSTS header
+michaelslatkine.com: did not receive HSTS header
michaelsnoeren.nl: did not receive HSTS header
michaelsulzer.com: did not receive HSTS header
michaelsulzer.eu: did not receive HSTS header
michaelwaite.org: could not connect to host
michal-kral.cz: could not connect to host
michalborka.cz: could not connect to host
+michalinastrzyz.xyz: could not connect to host
michalkral.tk: could not connect to host
-michalp.pl: did not receive HSTS header
-michalvasicek.cz: did not receive HSTS header
+michalp.pl: could not connect to host
+michalpodraza.pl: could not connect to host
+michalvasicek.cz: could not connect to host
michasfahrschule.com: could not connect to host
michel.pt: did not receive HSTS header
michelledonelan.co.uk: did not receive HSTS header
-michiganmetalartwork.com: max-age too low: 7889238
mico.world: could not connect to host
micomi.co: could not connect to host
-miconcinemas.com: could not connect to host
miconware.de: could not connect to host
micro-dv.ru: could not connect to host
micro-rain-systems.com: did not receive HSTS header
microblading.pe: could not connect to host
microdesic.com: could not connect to host
+microlinks.org: could not connect to host
+microlz.com: did not receive HSTS header
microme.ga: could not connect to host
micropple.net: could not connect to host
microtalk.org: could not connect to host
middletowndelcopa.gov: could not connect to host
midirs.org: did not receive HSTS header
-midlgx.com: max-age too low: 0
-midnight-visions.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
midweststructuralrepair.com: could not connect to host
midwestwomenworkers.org: could not connect to host
miembarcacion.com: could not connect to host
miemie.jp: could not connect to host
mieterschutzkartei.de: could not connect to host
-mieuxvivreadarvoy.fr: could not connect to host
+mieuxvivreadarvoy.fr: did not receive HSTS header
mifibra.cl: did not receive HSTS header
migeeks.de: did not receive HSTS header
mightydicks.io: could not connect to host
@@ -12150,12 +14334,14 @@ 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
+migueldominguez.ch: could not connect to host
miguelgfierro.com: did not receive HSTS header
+miguelmartinez.ch: could not connect to host
miguksaram.com: could not connect to host
+mihgroup.eu.org: could not connect to host
+mihijoesdislexico.es: did not receive HSTS header
mijn-email.org: could not connect to host
-mijnavg.eu: max-age too low: 0
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
@@ -12164,48 +14350,53 @@ mikaelemilsson.net: did not receive HSTS header
mikeburns.com: did not receive HSTS header
mikedugan.org: did not receive HSTS header
mikeg.de: did not receive HSTS header
+mikeguy.co.uk: did not receive HSTS header
mikek.work: did not receive HSTS header
mikeology.org: could not connect to host
mikepair.net: could not connect to host
mikes.tk: did not receive HSTS header
mikewritesstuff.com: could not connect to host
mikeybot.com: could not connect to host
-mikhirev.ru: could not connect to host
+mikhlevich.ru: could not connect to host
+miki-boras.de: did not receive HSTS header
mikii.club: could not connect to host
mikk.cz: could not connect to host
mikori.sk: did not receive HSTS header
-mikro-inwestycje.co.uk: did not receive HSTS header
+mikro-inwestycje.co.uk: could not connect to host
miku.be: could not connect to host
miku.cloud: could not connect to host
-miku.hatsune.my: did not receive HSTS header
+miku.hatsune.my: could not connect to host
miku.party: could not connect to host
mikumiku.stream: could not connect to host
+mikupic.com: could not connect to host
+mikusa.xyz: could not connect to host
mikusinec.com: could not connect to host
mikywow.eu: did not receive HSTS header
mil0.com: could not connect to host
-milahendri.com: did not receive HSTS header
+milakirschner.de: could not connect to host
milang.xyz: could not connect to host
milatrans.pl: did not receive HSTS header
milcoresonline.com: could not connect to host
milesgeek.com: did not receive HSTS header
+milionshop.sk: 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
+milkandcookies.ca: could not connect to host
millibitcoin.jp: could not connect to host
million5.com: did not receive HSTS header
million6.com: could not connect to host
million8.com: did not receive HSTS header
millionairessecrets.com: could not connect to host
-millions1.com: could not connect to host
+millions1.com: did not receive HSTS header
millions11.com: did not receive HSTS header
-millions13.com: did not receive HSTS header
-millions14.com: did not receive HSTS header
-millions15.com: did not receive HSTS header
-millions16.com: did not receive HSTS header
+millions13.com: could not connect to host
+millions14.com: could not connect to host
+millions15.com: could not connect to host
+millions16.com: could not connect to host
millions17.com: could not connect to host
millions19.com: could not connect to host
-millions20.com: did not receive HSTS header
+millions20.com: could not connect to host
millions22.com: did not receive HSTS header
millions25.com: did not receive HSTS header
millions26.com: did not receive HSTS header
@@ -12213,21 +14404,22 @@ millions27.com: did not receive HSTS header
millions28.com: did not receive HSTS header
millions29.com: did not receive HSTS header
millions31.com: did not receive HSTS header
+millions32.com: did not receive HSTS header
millions33.com: did not receive HSTS header
millions35.com: did not receive HSTS header
millions36.com: did not receive HSTS header
millions37.com: did not receive HSTS header
millions38.com: did not receive HSTS header
millions39.com: did not receive HSTS header
-millions40.com: could not connect to host
-millions41.com: could not connect to host
-millions42.com: could not connect to host
+millions40.com: did not receive HSTS header
+millions41.com: did not receive HSTS header
+millions42.com: did not receive HSTS header
millions43.com: did not receive HSTS header
millions5.com: did not receive HSTS header
millions50.com: did not receive HSTS header
-millions51.com: could not connect to host
-millions52.com: could not connect to host
-millions53.com: could not connect to host
+millions51.com: did not receive HSTS header
+millions52.com: did not receive HSTS header
+millions53.com: did not receive HSTS header
millions55.com: did not receive HSTS header
millions56.com: did not receive HSTS header
millions57.com: did not receive HSTS header
@@ -12240,18 +14432,18 @@ millions62.com: did not receive HSTS header
millions63.com: did not receive HSTS header
millions66.com: did not receive HSTS header
millions7.com: did not receive HSTS header
-millions70.com: did not receive HSTS header
-millions71.com: did not receive HSTS header
-millions72.com: did not receive HSTS header
-millions77.com: could not connect to host
-millions8.com: could not connect to host
-millions80.com: did not receive HSTS header
-millions81.com: did not receive HSTS header
+millions70.com: could not connect to host
+millions71.com: could not connect to host
+millions72.com: could not connect to host
+millions77.com: did not receive HSTS header
+millions8.com: did not receive HSTS header
+millions80.com: could not connect to host
+millions81.com: could not connect to host
millions82.com: could not connect to host
millions88.com: did not receive HSTS header
millions9.com: did not receive HSTS header
millions99.com: did not receive HSTS header
-millstep.de: did not receive HSTS header
+milnes.org: 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
@@ -12260,13 +14452,16 @@ mimobile.website: could not connect to host
mimoderoupa.pt: could not connect to host
min.kiwi: could not connect to host
minacssas.com: could not connect to host
+minakova.pro: could not connect to host
minantavla.se: could not connect to host
mind-moves.es: could not connect to host
mind.sh: did not receive HSTS header
-mindbodycontinuum.com: could not connect to host
+mindbodycontinuum.com: did not receive HSTS header
mindbodytherapymn.com: did not receive HSTS header
mindcell.no: could not connect to host
mindcraft.ga: could not connect to host
+mindercasso.nl: could not connect to host
+mindsetatx.com: did not receive HSTS header
mindwork.space: could not connect to host
mine.world: could not connect to host
minecraft-forum.cf: could not connect to host
@@ -12284,34 +14479,43 @@ minecraftserverz.com: could not connect to host
minecraftvoter.com: could not connect to host
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
+minf3-games.de: did not receive HSTS header
mingy.ddns.net: could not connect to host
-mingyueli.com: could not connect to host
+mingyueli.com: did not receive HSTS header
minhanossasenhora.com.br: could not connect to host
mini-piraten.de: did not receive HSTS header
minikneet.nl: did not receive HSTS header
minimaliston.com: could not connect to host
minimoo.se: could not connect to host
-minipainting.net: could not connect to host
+minipainting.net: did not receive HSTS header
miniskipper.at: did not receive HSTS header
-minitruckin.net: could not connect to host
+minivaro.de: could not connect to host
miniwallaby.com: could not connect to host
+miniwolke.ch: did not receive HSTS header
minkondom.nu: could not connect to host
minnesotadata.com: could not connect to host
+minnesotakinkyyouth.org: could not connect to host
minnesotamathcorps.org: did not receive HSTS header
+minobar.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
+minoritywhip.gov: did not receive HSTS header
mintea-noua.ro: could not connect to host
+mintosherbs.com: could not connect to host
+minttang.cn: could not connect to host
mipiaci.co.nz: did not receive HSTS header
mipiaci.com.au: did not receive HSTS header
mipla.ch: did not receive HSTS header
-miragrow.com: could not connect to host
+miragrow.com: did not receive HSTS header
+miraste.com.br: did not receive HSTS header
+mirazonline.tk: could not connect to host
+mirazperu.tk: could not connect to host
mireillewendling.com.br: could not connect to host
mirete.info: did not receive HSTS header
mirgleich.dnshome.de: could not connect to host
mirindadomo.ru: did not receive HSTS header
+mirodasilva.be: did not receive HSTS header
mironized.com: did not receive HSTS header
mirrorbot.ga: did not receive HSTS header
mirrorsedgearchive.ga: could not connect to host
@@ -12324,45 +14528,53 @@ misericordiasegrate.org: could not connect to host
misgluteosperfectos.com: did not receive HSTS header
misiondelosangeles-mailing.com: could not connect to host
misiru.jp: could not connect to host
+misrv.com: did not receive HSTS header
+misskey.site: could not connect to host
missrain.tw: could not connect to host
missycosmeticos.com.br: could not connect to host
mist.ink: could not connect to host
-mister-cooks.fr: did not receive HSTS header
-mister.hosting: could not connect to host
+mister-cooks.fr: could not connect to host
+mister.hosting: did not receive HSTS header
misterl.net: did not receive HSTS header
+mistine.com.cn: could not connect to host
+mistine.net: could not connect to host
+mita.me: could not connect to host
+mitabu.net: did not receive HSTS header
mitarbeiter-pc.de: did not receive HSTS header
mitchellrenouf.ca: could not connect to host
mitior.net: could not connect to host
mitm-software.badssl.com: could not connect to host
mitsign.com: could not connect to host
+mitsu-szene.de: did not receive HSTS header
mittenhacks.com: could not connect to host
+mittenofficesystems.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
-mivestuariolaboral.com: did not receive HSTS header
mivzaklive.co.il: did not receive HSTS header
mixer.cash: could not connect to host
mixnshake.com: did not receive HSTS header
+mixtape.moe: 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
-miyugirls.com: could not connect to host
mizd.at: could not connect to host
mizi.name: could not connect to host
mizumax.me: could not connect to host
mjcaffarattilaw.com: did not receive HSTS header
-mjhsc.nl: could not connect to host
-mjscustomcreations.com.au: did not receive HSTS header
+mjhsc.nl: did not receive HSTS header
+mjlaurindo.pt: could not connect to host
mk-dizajn.com: could not connect to host
mkacg.com: could not connect to host
mkakh.xyz: could not connect to host
-mkasu.org: max-age too low: 7776000
mkfs.be: could not connect to host
mkfs.fr: could not connect to host
mkg-palais-hanau.de: did not receive HSTS header
+mkie.cf: could not connect to host
+mkkkrc.ru: could not connect to host
mkp-deutschland.de: did not receive HSTS header
mkplay.io: could not connect to host
-mkw.st: could not connect to host
+mlarte.com: could not connect to host
mlcambiental.com.br: did not receive HSTS header
mlcdn.co: could not connect to host
mlfaw.com: could not connect to host
@@ -12373,9 +14585,11 @@ 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
+mm404.com: could not connect to host
+mm4447761.com: max-age too low: 0
+mm6957.com: could not connect to host
+mma-acareporting.com: did not receive HSTS header
mmaps.ddns.net: could not connect to host
-mmaps.org: could not connect to host
mmarnitz.de: could not connect to host
mmcc.pe: did not receive HSTS header
mmgazhomeloans.com: could not connect to host
@@ -12383,17 +14597,22 @@ mmilog.hu: could not connect to host
mmmaximaliselmeny.hu: could not connect to host
mmmm.com: could not connect to host
mmstick.tk: could not connect to host
+mna7e.com: did not receive HSTS header
mncr.nl: could not connect to host
mnec.io: could not connect to host
-mnedc.org: could not connect to host
+mnedc.org: did not receive HSTS header
mneeb.de: could not connect to host
mnemotiv.com: could not connect to host
mnetworkingsolutions.co.uk: could not connect to host
+mnitro.com: could not connect to host
mnmt.no: did not receive HSTS header
+mnt9.de: could not connect to host
mnwt.nl: could not connect to host
mo3.club: could not connect to host
moar.so: did not receive HSTS header
-mobaircon.com: did not receive HSTS header
+moas.design: did not receive HSTS header
+moas.photos: could not connect to host
+mobaircon.com: could not connect to host
mobi4.tk: could not connect to host
mobidea.com: did not receive HSTS header
mobil-bei-uns.de: did not receive HSTS header
@@ -12422,60 +14641,73 @@ 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
+mocurio.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+modafinil.com: did not receive HSTS header
+modafinil.wiki: did not receive HSTS header
modalrakyat.com: could not connect to host
modalrakyat.id: did not receive HSTS header
modaperuimport.com: could not connect to host
-modav.org: could not connect to host
-modcentral.pw: max-age too low: 2592000
+modav.org: did not receive HSTS header
modded-minecraft-server-list.com: could not connect to host
moddedark.com: could not connect to host
mode-marine.com: could not connect to host
modecaso.com: could not connect to host
+modehaus-marionk.de: did not receive HSTS header
model9.io: did not receive HSTS header
+modelcase.co.jp: 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
+moderatorenpool.org: did not receive HSTS header
moderatortv.de: did not receive HSTS header
+modernapprenticeships.org: did not receive HSTS header
modernibytovytextil.cz: could not connect to host
moderntld.net: could not connect to host
modistryusercontent.com: could not connect to host
+modnitsa.info: did not receive HSTS header
mododo.de: could not connect to host
+mods-community.de: could not connect to host
+mods-pic.de: could not connect to host
modx.by: max-age too low: 31536
modx.io: could not connect to host
-modydev.club: did not receive HSTS header
+modydev.club: could not connect to host
moe.pe: could not connect to host
-moe.wtf: could not connect to host
+moe.wtf: did not receive HSTS header
moe4sale.in: did not receive HSTS header
moeali.com: could not connect to host
moebel-nagel.de: did not receive HSTS header
+moeclue.com: did not receive HSTS header
moefi.xyz: could not connect to host
moegirl.org: did not receive HSTS header
moeli.org: could not connect to host
moellers.it: could not connect to host
-moeloli.pw: did not receive HSTS header
+moellers.systems: could not connect to host
+moeloli.pw: could not connect to host
moelord.org: could not connect to host
moen.io: did not receive HSTS header
+moenew.top: could not connect to host
+moepass.com: could not connect to host
moevenpick-cafe.com: did not receive HSTS header
-moeyoo.net: could not connect to host
-moeyun.net: max-age too low: 2592000
-mogooin.com: did not receive HSTS header
-mogry.net: could not connect to host
+moeyoo.net: did not receive HSTS header
+mogooin.com: 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
mohs.es: could not connect to host
moitur.com: did not receive HSTS header
-mojapraca.sk: did not receive HSTS header
+mojapraca.sk: could not connect to host
mojefilmy.xyz: could not connect to host
-mojizuri.jp: max-age too low: 86400
+mojnet.eu: did not receive HSTS header
+mojnet.net: did not receive HSTS header
mokadev.com: did not receive HSTS header
+mokeedev.review: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
mokken-fabriek.nl: did not receive HSTS header
+mokote.com: did not receive HSTS header
mokum-organics.com: 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
-momjoyas.com: did not receive HSTS header
-mommel.com: could not connect to host
+mommel.com: did not receive HSTS header
mommelonline.de: could not connect to host
momoka.moe: could not connect to host
mon-a-lisa.com: did not receive HSTS header
@@ -12491,8 +14723,10 @@ 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
+moneseglobal.com: could not connect to host
moneycrownmedia.com: could not connect to host
moneyfactory.gov: did not receive HSTS header
+moneylance.ru: did not receive HSTS header
mongla168.net: could not connect to host
mongla88.net: could not connect to host
monicabeckstrom.no: did not receive HSTS header
@@ -12502,34 +14736,38 @@ monitaure.io: could not connect to host
monitman.solutions: could not connect to host
monitorchain.com: did not receive HSTS header
monitori.ng: could not connect to host
-monkeydust.net: max-age too low: 0
+monitoringd.de: could not connect to host
+monkeyhill.us: could not connect to host
monkieteel.com: did not receive HSTS header
-monkieteel.nl: max-age too low: 2592000
monochrometoys.com: could not connect to host
monodukuri.cafe: could not connect to host
monodzukuri.cafe: could not connect to host
monokoo.com: max-age too low: 2592000
+monotributo.online: could not connect to host
monotsuku.com: could not connect to host
monozukuri.cafe: did not receive HSTS header
+monsecretariat.pro: did not receive HSTS header
montanacures.org: could not connect to host
montanana.com: did not receive HSTS header
montand.com: did not receive HSTS header
+montenero.pl: 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.co.jp: did not receive HSTS header
-moobo.xyz: did not receive HSTS header
+moobo.co.jp: could not connect to host
+moobo.xyz: could not connect to host
moodforsex.com: could not connect to host
moodifiers.com: could not connect to host
+moodzshop.com: did not receive HSTS header
moojp.co.jp: could not connect to host
-moon.lc: could not connect to host
moonagic.io: could not connect to host
moonless.net: could not connect to host
moonlightcapital.ml: could not connect to host
moonloupe.com: could not connect to host
moonrhythm.info: could not connect to host
+moonrhythm.io: did not receive HSTS header
moonysbouncycastles.co.uk: could not connect to host
-mooretownrancheria-nsn.gov: could not connect to host
+mooretownrancheria-nsn.gov: did not receive HSTS header
moosemanstudios.com: could not connect to host
moov.is: could not connect to host
mop321.com: did not receive HSTS header
@@ -12538,19 +14776,22 @@ moparcraft.org: could not connect to host
moparisthebest.biz: could not connect to host
moparisthebest.info: could not connect to host
moparscape.org: did not receive HSTS header
+moppy.org: could not connect to host
mopsuite.club: could not connect to host
mor.cloud: could not connect to host
mor.gl: could not connect to host
moreapp.co.uk: could not connect to host
morenci.ch: could not connect to host
morepopcorn.co.nz: did not receive HSTS header
-moreserviceleads.com: did not receive HSTS header
morespacestorage.com.au: did not receive HSTS header
morethanadream.lv: could not connect to host
morfitronik.pl: could not connect to host
+morgancounty-al.gov: could not connect to host
+morgancountysheriffal.gov: could not connect to host
morganestes.com: max-age too low: 0
-morganino.eu: could not connect to host
+morganino.it: did not receive HSTS header
morgansjewelerspv.com: did not receive HSTS header
+morgner.com: 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
@@ -12558,40 +14799,44 @@ mornings.com: did not receive HSTS header
morotech.com.br: did not receive HSTS header
morpheusx.at: could not connect to host
morpheusxaut.net: could not connect to host
+morphy2k.io: max-age too low: 0
morpork.xyz: could not connect to host
-morrodafumacanoticias.com.br: could not connect to host
-morz.org: max-age too low: 0
+morrodafumacanoticias.com.br: did not receive HSTS header
+mortalincarnation.com: did not receive HSTS header
+mortgagecentersmo.com: did not receive HSTS header
mosaique-lachenaie.fr: could not connect to host
+moshwire.com: could not connect to host
moskva.guide: could not connect to host
moso.io: did not receive HSTS header
+mosos.de: did not receive HSTS header
mosshi.be: could not connect to host
+mosstier.com: did not receive HSTS header
+mostholynameofjesus.org: max-age too low: 604800
mostlikelyto.fail: did not receive HSTS header
mostlyharmless.at: could not connect to host
mostlyinfinite.com: did not receive HSTS header
+mostlyoverhead.com: could not connect to host
mostwuat.com: could not connect to host
+motekrysen.com: did not receive HSTS header
motherbase.io: could not connect to host
motherboard.services: could not connect to host
motionfreight.com: could not connect to host
-motionpicturesolutions.com: could not connect to host
+motionpicturesolutions.com: did not receive HSTS header
motocyklovedily.cz: did not receive HSTS header
motomorgen.com: could not connect to host
motorbiketourhanoi.com: could not connect to host
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
+motovated.co.nz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
mottvd.com: could not connect to host
moube.fr: could not connect to host
-moucloud.cn: did not receive HSTS header
-moudicat.com: max-age too low: 6307200
+moudicat.com: could not connect to host
moula.com.au: did not receive HSTS header
moumaobuchiyu.com: could not connect to host
-mounp.me: max-age too low: 2592000
mountainadventureseminars.com: did not receive HSTS header
-mountainmusicpromotions.com: did not receive HSTS header
mountainroseherbs.com: did not receive HSTS header
-mountairymd.gov: could not connect to host
+mountairymd.gov: did not receive HSTS header
mountfarmer.de: did not receive HSTS header
mousemessages.com: did not receive HSTS header
movabletype.net: did not receive HSTS header
@@ -12599,12 +14844,14 @@ moveek.com: did not receive HSTS header
moveisfit.com.br: could not connect to host
movepin.com: could not connect to host
movestub.com: did not receive HSTS header
+movie-cross.net: did not receive HSTS header
movie4k.fyi: could not connect to host
movie4k.life: could not connect to host
-movie4kto.site: could not connect to host
-moviedollars.com: could not connect to host
+movieboost.nl: could not connect to host
+moviedeposit.com: could not connect to host
+moviedollars.com: did not receive HSTS header
movienang.com: max-age too low: 0
-movienized.de: could not connect to host
+movienized.de: did not receive HSTS header
moviepilot.com: did not receive HSTS header
moviesabout.net: could not connect to host
moviespur.info: did not receive HSTS header
@@ -12612,9 +14859,9 @@ moving-pixtures.de: could not connect to host
movingoklahoma.org: could not connect to host
movio.ga: could not connect to host
mowalls.net: could not connect to host
-moy-gorod.od.ua: did not receive HSTS header
+moyer.pub: did not receive HSTS header
moyoo.net: did not receive HSTS header
-moysovet.info: could not connect to host
+moysovet.info: did not receive HSTS header
moyu.host: did not receive HSTS header
mozart-game.cz: could not connect to host
mozartgame.cz: could not connect to host
@@ -12624,123 +14871,133 @@ mozoa.net: could not connect to host
mozzilla.cz: could not connect to host
mp3donusturucu.com: did not receive HSTS header
mp3donusturucu.net: did not receive HSTS header
-mp3gratuiti.com: could not connect to host
mp3juices.is: could not connect to host
mpe.org: did not receive HSTS header
mpg.ovh: could not connect to host
mphoto.at: did not receive HSTS header
-mphwinkel.nl: did not receive HSTS header
mpi-sa.fr: did not receive HSTS header
mpintaamalabanna.it: could not connect to host
mpkossen.com: did not receive HSTS header
+mpkshop.com.br: did not receive HSTS header
mpn.poker: did not receive HSTS header
mpnpokertour.com: did not receive HSTS header
mpodraza.pl: could not connect to host
mpreserver.com: could not connect to host
mpserver12.org: could not connect to host
-mpu-giessen.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+mpu-giessen.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
mpy.ovh: could not connect to host
+mqas.net: could not connect to host
mr-coffee.net: could not connect to host
+mr-designer-oman.com: did not receive HSTS header
mr-hosting.com: could not connect to host
mr-labo.jp: could not connect to host
+mr-nachhilfe.de: did not receive HSTS header
mr3.io: could not connect to host
mrafrohead.com: could not connect to host
mrawe.com: could not connect to host
mrazek.biz: did not receive HSTS header
+mrbmafrica.com: did not receive HSTS header
mrburtbox.com: could not connect to host
mrdani.net: could not connect to host
-mrdleisure.co.uk: did not receive HSTS header
+mrdleisure.co.uk: could not connect to host
mredsanders.net: did not receive HSTS header
mrettich.org: did not receive HSTS header
+mrgasfires.co.uk: did not receive HSTS header
+mrgiveaways.com: did not receive HSTS header
mrizzio.com: could not connect to host
mrksk.com: could not connect to host
-mrleonardo.com: max-age too low: 7889238
mrliu.me: could not connect to host
mrmoregame.de: could not connect to host
mrnh.tk: could not connect to host
-mrning.com: could not connect to host
mrnonz.com: max-age too low: 0
-mrparker.pw: did not receive HSTS header
mrpopat.in: did not receive HSTS header
mrpropop.com: did not receive HSTS header
mruganiepodspacja.pl: could not connect to host
ms-alternativ.de: did not receive HSTS header
msc-seereisen.net: could not connect to host
+mscenter.cf: could not connect to host
msgallery.tk: could not connect to host
-msopopop.cn: could not connect to host
+mshemailmarketer.com.au: could not connect to host
+msno.no: max-age too low: 7889238
+msopopop.cn: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
msp66.de: could not connect to host
mstd.tokyo: did not receive HSTS header
mstdn-tech.jp: could not connect to host
+mstdn.fr: did not receive HSTS header
mstdn.nl: could not connect to host
mstiles92.com: could not connect to host
+msv-limpezas.pt: 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
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: did not receive HSTS header
+mtinz.com: could not connect to host
mtirc.co: could not connect to host
mtn.cc: could not connect to host
mtnz.co.za: 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]
+mu3on.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
muahahahaha.co.uk: could not connect to host
-muchohentai.com: could not connect to host
mud-status.de: did not receive HSTS header
mudgezero.one: could not connect to host
muel.io: could not connect to host
muenzubi.de: did not receive HSTS header
-muffet.pw: could not connect to host
+muffet.pw: did not receive HSTS header
muga.space: could not connect to host
-muj-svet.cz: could not connect to host
+muj-svet.cz: did not receive HSTS header
mujadin.se: did not receive HSTS header
+mujemail.ml: could not connect to host
+mukyu.moe: could not connect to host
mulenvo.com: did not receive HSTS header
-mulheres18.com: could not connect to host
mullen.net.au: did not receive HSTS header
-multigamecard.com: did not receive HSTS header
multiplexcy.com: could not connect to host
-multiterm.org: could not connect to host
multivpn.cn.com: could not connect to host
multivpn.com.de: could not connect to host
multivpn.com.ua: could not connect to host
multivpn.fr: could not connect to host
multiworldsoftware.com: did not receive HSTS header
multizone.games: could not connect to host
-mumei.space: could not connect to host
+mumei.space: did not receive HSTS header
mundoadulto.com.br: did not receive HSTS header
mundoalpha.com.br: did not receive HSTS header
-mundodoscarbonos.com.br: could not connect to host
+mundodoscarbonos.com.br: did not receive HSTS header
+mundogamers.top: could not connect to host
+mundoperfecto.net: did not receive HSTS header
munecoscabezones.com: did not receive HSTS header
munich-rage.de: did not receive HSTS header
+munirajiwa.com: could not connect to host
munkiepus.com: did not receive HSTS header
-munpanel.com: could not connect to host
+munpanel.com: did not receive HSTS header
munrabi.com: could not connect to host
munuc.org: did not receive HSTS header
munzee.com: did not receive HSTS header
+muoivancauhoivisao.com: could not connect to host
muonium.ch: could not connect to host
murdercube.com: could not connect to host
murfy.kiwi: could not connect to host
-murgi.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+murgi.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
muriburi.land: could not connect to host
muriburiland.com: could not connect to host
murodese.org: could not connect to host
+murphycraftbeerfest.com: did not receive HSTS header
murraycoin.org: could not connect to host
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
-musaccostore.com: did not receive HSTS header
-muscleangels.com: could not connect to host
+murzik.space: could not connect to host
musearchengine.com: could not connect to host
museminder2.com: did not receive HSTS header
museumstreak.com: could not connect to host
musewearflipflops.com: could not connect to host
+mushel.ddns.net: 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
@@ -12748,29 +15005,40 @@ musicaconleali.it: did not receive HSTS header
musiccitycats.com: did not receive HSTS header
musikkfondene.no: did not receive HSTS header
musikzug-bookholzberg.de: did not receive HSTS header
-musique2nuit.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+musique2nuit.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
muslimbanter.co.za: could not connect to host
+musselsblog.com: could not connect to host
mustafa.space: did not receive HSTS header
mustika.cf: did not receive HSTS header
mutamatic.com: could not connect to host
+mutantmonkey.in: could not connect to host
+mutantmonkey.info: could not connect to host
+mutantmonkey.sexy: could not connect to host
+mutuals.cool: could not connect to host
mutuelle-obligatoire-pme.fr: did not receive HSTS header
muusika.fun: could not connect to host
+muusikoiden.net: 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
+mv-wohnen.de: could not connect to host
mvanmarketing.nl: did not receive HSTS header
+mvbug.com: could not connect to host
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
+mxdanggui.org: did not receive HSTS header
+mxn8.com: could not connect to host
mxp.tw: did not receive HSTS header
my-cdn.de: could not connect to host
+my-co.ir: did not receive HSTS header
my-demo.co: could not connect to host
-my-dick.ru: max-age too low: 0
+my-dns.co.il: max-age too low: 2592000
my-owncloud.com: could not connect to host
my-pawnshop.com.ua: could not connect to host
-my-plancha.ch: did not receive HSTS header
+my-plancha.ch: could not connect to host
my-static-demo-808795.c.cdn77.org: could not connect to host
my-static-live-808795.c.cdn77.org: could not connect to host
my-voice.nl: could not connect to host
@@ -12782,10 +15050,16 @@ 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
+myaspenheights.com: did not receive HSTS header
mybboard.pl: did not receive HSTS header
+mybeautyjobs.de: could not connect to host
+myblockchain.cloud: could not connect to host
+mybreastcancerjourney.com: 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
+mycarwashers.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
@@ -12795,160 +15069,172 @@ mycontrolmonitor.com: could not connect to host
mycoted.com: did not receive HSTS header
mycreativeartsconsulting.com: could not connect to host
mycuco.it: did not receive HSTS header
-mydarkstar.net: did not receive HSTS header
-myday.eu.com: did not receive HSTS header
+myday.eu.com: could not connect to host
mydeos.com: could not connect to host
mydigipass.com: did not receive HSTS header
-mydmdi.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+mydjsongbook.com: max-age too low: 3600
+mydmdi.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
mydnaresults.com: could not connect to host
mydnatest.com: did not receive HSTS header
mydreamlifelab.com: could not connect to host
+mydreamshaadi.in: could not connect to host
mydriversedge.com: did not receive HSTS header
mydrone.services: did not receive HSTS header
-mydroneservices.ca: did not receive HSTS header
-mydroneservices.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]
+myeffect.today: 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 :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
myepass.bg: could not connect to host
myepass.de: could not connect to host
-myessaygeek.com: could not connect to host
myfappening.org: could not connect to host
myfdic.gov: could not connect to host
myfishpalace.at: could not connect to host
+myfloridacfo.gov: could not connect to host
myfunworld.de: could not connect to host
mygalgame.com: did not receive HSTS header
mygaysitges.com: could not connect to host
-mygedit.com: could not connect to host
mygivingcircle.org: did not receive HSTS header
-mygooder.com: did not receive HSTS header
+mygooder.com: could not connect to host
mygov.scot: did not receive HSTS header
mygpsite.com: did not receive HSTS header
mygreatjob.eu: could not connect to host
+mygreatjobs.de: could not connect to host
mygreenrecipes.com: could not connect to host
myhair.asia: did not receive HSTS header
myhloli.com: did not receive HSTS header
-myicare.org: did not receive HSTS header
+myhostvm.com: did not receive HSTS header
+myicare.org: could not connect to host
myiocc.org: did not receive HSTS header
myip.tech: max-age too low: 2592000
mykolab.com: did not receive HSTS header
mykreuzfahrt.de: could not connect to host
-mylene-chandelier.me: did not receive HSTS header
mylighthost.com: did not receive HSTS header
mylocalsearch.co.uk: did not receive HSTS header
-mylotto.co.nz: could not connect to host
+mymed.de: did not receive HSTS header
+mymed.eu: did not receive HSTS header
mymp3singer.co: could not connect to host
mymp3singer.net: could not connect to host
mymp3singer.site: could not connect to host
+myms.eu: did not receive HSTS header
mymsr.de: did not receive HSTS header
+mymusiclist.alwaysdata.net: could not connect to host
myndcommunication.com: could not connect to host
mynetblog.com: did not receive HSTS header
+mynetworkingbuddy.com: could not connect to host
mynewleaf.co: did not receive HSTS header
mynewselfbariatrics.com: did not receive HSTS header
myni.io: could not connect to host
mynigma.org: did not receive HSTS header
+mynortherngarden.com: did not receive HSTS header
myon.info: did not receive HSTS header
myonlinedating.club: could not connect to host
myonlinevehicleinsurance.com: could not connect to host
-myownconference.de: did not receive HSTS header
-myownconference.es: did not receive HSTS header
-myownconference.fr: did not receive HSTS header
-myownconference.lt: did not receive HSTS header
-myownconference.lv: did not receive HSTS header
-myownconference.pt: did not receive HSTS header
-myownwebinar.com: could not connect to host
mypagella.com: could not connect to host
mypagella.eu: could not connect to host
mypagella.it: could not connect to host
-mypanier.com: max-age too low: 7889238
-mypaperwriter.com: could not connect to host
myparfumerie.at: did not receive HSTS header
+mypcqq.cc: did not receive HSTS header
mypension.ca: could not connect to host
myperfumecollection.com: did not receive HSTS header
myphonebox.de: could not connect to host
myproxy.eu.org: could not connect to host
+mypt3.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
myptsite.com: could not connect to host
mypup.nl: did not receive HSTS header
myqdu.cn: could not connect to host
myqdu.com: could not connect to host
-myranicol.com: did not receive HSTS header
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
+mysectools.org: did not receive HSTS header
myseo.ga: could not connect to host
myserv.one: could not connect to host
+myservice.store: could not connect to host
myseu.cn: did not receive HSTS header
myshirtsize.com: did not receive HSTS header
-mysongbird.xyz: could not connect to host
+mysize-condooms.nl: could not connect to host
+mysocialporn.com: could not connect to host
+mysongbird.xyz: did not receive HSTS header
myspa.asia: did not receive HSTS header
mystatus24.com: did not receive HSTS header
-mystery-science-theater-3000.de: could not connect to host
+mystery-science-theater-3000.de: did not receive HSTS header
mysteryblog.de: did not receive HSTS header
+mysterysear.ch: could not connect to host
+mysticplumes.com: did not receive HSTS header
mystown.org: could not connect to host
-mystudy.me: could not connect to host
-mysupboard.de: could not connect to host
+mysupboard.de: did not receive HSTS header
mytc.fr: could not connect to host
-mythlogic.com: did not receive HSTS header
+mythengay.ch: did not receive HSTS header
+mythlogic.com: could not connect to host
mythslegendscollection.com: did not receive HSTS header
mytravelblog.de: could not connect to host
-mytweeps.com: did not receive HSTS header
-myvoipnews.com: could not connect to host
+myvpl.com: could not connect to host
mywallets.io: could not connect to host
myweb360.de: did not receive HSTS header
mywebinar.io: could not connect to host
+mywebmanager.co.uk: could not connect to host
myxbox.gr: max-age too low: 0
-myzone.com: max-age too low: 0
mzlog.win: could not connect to host
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: 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
n5118.com: could not connect to host
-n64chan.me: could not connect to host
+n64chan.me: did not receive HSTS header
+n6957.com: could not connect to host
na.hn: could not connect to host
+naam.me: could not connect to host
naano.org: could not connect to host
+naarakah.fr: did not receive HSTS header
nabru.co.uk: did not receive HSTS header
nabu-bad-nauheim.de: did not receive HSTS header
nabytko.cz: could not connect to host
nacktwanderfreunde.de: did not receive HSTS header
nadia.pt: could not connect to host
-nagajanroshiya.info: did not receive HSTS header
+nagajanroshiya.info: could not connect to host
nagaragem.com.br: did not receive HSTS header
+nagata.info: did not receive HSTS header
+nagb.gov: could not connect to host
nagb.org: could not connect to host
+naggie.net: could not connect to host
nagios.by: did not receive HSTS header
nagoya-kyuyo.com: could not connect to host
-nagrad.tk: did not receive HSTS header
+nagrad.tk: could not connect to host
+nahura.com: could not connect to host
naiaspa.fr: did not receive HSTS header
naiharngym.com: did not receive HSTS header
-nailedithomebuilders.com: max-age too low: 300
-nais.me: did not receive HSTS header
+nais.me: could not connect to host
+nais0ne.com: did not receive HSTS header
+naive.network: could not connect to host
nakada4610.com: could not connect to host
nakamastreamingcommunity.com: could not connect to host
nakanishi-paint.com: could not connect to host
nakhonidc.com: could not connect to host
-nakitbonus2.com: could not connect to host
+nakitbonus2.com: did not receive HSTS header
nakliyatsirketi.biz: could not connect to host
nakuro.de: could not connect to host
nalao-company.com: did not receive HSTS header
-nalifornia.com: could not connect to host
+nalifornia.com: max-age too low: 0
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
namaho.com: could not connect to host
+namazon.org: could not connect to host
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
namethissymbol.com: could not connect to host
+nami.bo: could not connect to host
nami.exchange: did not receive HSTS header
namikawatetsuji.jp: could not connect to host
namorico.me: could not connect to host
@@ -12957,26 +15243,37 @@ nan.zone: could not connect to host
nanami.moe: could not connect to host
nanderson.me: could not connect to host
nanfangstone.com: could not connect to host
+nange.co: could not connect to host
nani.io: did not receive HSTS header
naniki.co.uk: could not connect to host
+nanofy.org: could not connect to host
nanogeneinc.com: could not connect to host
nanokamo.com: did not receive HSTS header
+nanollet.org: could not connect to host
nanosingularity.com: could not connect to host
+nanovolt.nl: 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
-naotone.com: did not receive HSTS header
naphex.rocks: could not connect to host
naphogar.com: did not receive HSTS header
napisynapomniky.cz: did not receive HSTS header
-nappynko.com: did not receive HSTS header
+napolinissanctparts.com: could not connect to host
narach.com: did not receive HSTS header
+narada.com.ua: could not connect to host
+narduin.xyz: did not receive HSTS header
+narenderchopra.com: could not connect to host
narko.space: could not connect to host
+narmos.ch: did not receive HSTS header
+narodsovety.ru: did not receive HSTS header
narviz.com: did not receive HSTS header
nasarawanewsonline.com: could not connect to host
+nascio.org: did not receive HSTS header
naseco.se: did not receive HSTS header
nasme.tk: could not connect to host
-nasmocopati.com: did not receive HSTS header
+nasmocopati.com: could not connect to host
+nasosvdom.com.ua: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+naspro.ru: could not connect to host
nasralmabrooka.com: did not receive HSTS header
nassi.me: could not connect to host
nastysclaw.com: could not connect to host
@@ -12984,17 +15281,17 @@ natalia-fadeeva.ru: could not connect to host
natalia.io: did not receive HSTS header
natalieandjoshua.com: could not connect to host
natalt.org: did not receive HSTS header
-natalydanilova.com: max-age too low: 300
natanaelys.com: could not connect to host
nataniel-perissier.fr: could not connect to host
natatorium.org: did not receive HSTS header
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
+nathan.io: could not connect to host
+nathan.ovh: could not connect to host
+nathankonopinski.com: could not connect to host
nathumarket.com.br: could not connect to host
nationalmall.gov: could not connect to host
-nationaltaxprep.com: could not connect to host
+nationaltaxprep.com: did not receive HSTS header
+nationwiderealtyinvestors.com: did not receive HSTS header
nationwidevehiclecontracts.co.uk: did not receive HSTS header
natur-udvar.hu: could not connect to host
natural-progesterone.net: could not connect to host
@@ -13006,39 +15303,50 @@ 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
+naughtytoy.co.uk: could not connect to host
nav.jobs: could not connect to host
naval.tf: could not connect to host
navegos.net: could not connect to host
navenlle.com: could not connect to host
naviaddress.io: did not receive HSTS header
+navigate-it-services.de: did not receive HSTS header
naviteq.eu: could not connect to host
-navitime.me: did not receive HSTS header
navjobs.com: could not connect to host
navstivime.cz: did not receive HSTS header
nawroth.info: could not connect to host
-nax.io: could not connect to host
+nax.io: did not receive HSTS header
nay.moe: could not connect to host
nazigol.com: did not receive HSTS header
+nb10000.vip: max-age too low: 0
nba2kqq.com: could not connect to host
-nba669.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-nba686.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+nba669.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+nba686.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
nbb.io: did not receive HSTS header
nbg-ha.de: could not connect to host
+nbgrooves.de: could not connect to host
nbis.gov: could not connect to host
nbl.org.tw: could not connect to host
nbp.com.pk: did not receive HSTS header
+nbrain.de: could not connect to host
nbrown.us: could not connect to host
nbtparse.org: could not connect to host
+nc-network.io: could not connect to host
nc2c.com: could not connect to host
-nca.ink: could not connect to host
+nc99.co: could not connect to host
ncaq.net: did not receive HSTS header
ncc60205.info: could not connect to host
-ncdesigns-studio.com: could not connect to host
-nchristo.com: did not receive HSTS header
+ncdesigns-studio.com: did not receive HSTS header
+ncgt.se: could not connect to host
+nchristo.com: could not connect to host
+ncic.gg: could not connect to host
nclvle.co.uk: did not receive HSTS header
+ncm-malerbetrieb.de: did not receive HSTS header
+ncmedicaidplan.gov: could not connect to host
+ncmedicaidplans.gov: could not connect to host
ncpc.gov: could not connect to host
-ncpw.gov: did not receive HSTS header
+ncpw.gov: could not connect to host
ncrmnt.org: did not receive HSTS header
+ncsccs.com: could not connect to host
nct.org.uk: did not receive HSTS header
ndatc.com: did not receive HSTS header
ndmath.club: could not connect to host
@@ -13050,11 +15358,14 @@ near.st: did not receive HSTS header
nearbi.com.mx: could not connect to host
nearbiwa.com: did not receive HSTS header
nearon.nl: could not connect to host
+neat-patch.de: could not connect to host
neavision.de: did not receive HSTS header
nebracy.com: could not connect to host
-nebras.ga: could not connect to host
+nebras.ga: did not receive HSTS header
nebulousenhanced.com: could not connect to host
+nebuluxcapital.com: could not connect to host
necesitodinero.org: could not connect to host
+nechiactua.com: could not connect to host
necio.ca: could not connect to host
nedcf.org.uk: could not connect to host
nediyor.com: did not receive HSTS header
@@ -13065,20 +15376,21 @@ needle.nz: could not connect to host
neels.ch: did not receive HSTS header
neer.io: could not connect to host
neet-investor.biz: could not connect to host
-neftaly.com: 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
neilshealthymeals.com: did not receive HSTS header
+neio.uk: could not connect to host
nejkasy.cz: did not receive HSTS header
nejnamc.org: did not receive HSTS header
-neko-life.com: did not receive HSTS header
+neko-life.com: could not connect to host
+neko-nyan.org: could not connect to host
neko.li: could not connect to host
neko.ml: did not receive HSTS header
nekoku.io: could not connect to host
-nekox.ml: could not connect to host
+nekolove.jp: could not connect to host
nella-project.org: could not connect to host
nella.io: could not connect to host
nellacms.com: could not connect to host
@@ -13086,32 +15398,37 @@ nellacms.org: could not connect to host
nellafw.org: could not connect to host
nellen.it: did not receive HSTS header
nemanja.top: could not connect to host
+nemausus.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
nemecl.eu: could not connect to host
+nemez.net: did not receive HSTS header
nemno.de: could not connect to host
nemovement.org: could not connect to host
-nemumu.com: could not connect to host
neoani.me: could not connect to host
neocoding.com: could not connect to host
neocyd.com: could not connect to host
neoeliteconsulting.com: could not connect to host
neofelhz.space: could not connect to host
+neohu.com: could not connect to host
neojames.me: could not connect to host
neokobe.city: could not connect to host
neolink.dk: could not connect to host
neonisi.com: could not connect to host
neonnuke.tech: did not receive HSTS header
-neosolution.ca: could not connect to host
neotist.com: did not receive HSTS header
neowa.tk: could not connect to host
nephos.xyz: could not connect to host
+neppglobal.top: could not connect to host
nercp.org.uk: did not receive HSTS header
-nerd42.de: could not connect to host
+nerd42.de: did not receive HSTS header
nerdbox.cc: did not receive HSTS header
nerdjokes.de: could not connect to host
+nerdoutstudios.tv: 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
+nerull7.info: could not connect to host
nesantuoka.lt: could not connect to host
+nesbase.com: could not connect to host
nesterov.pw: could not connect to host
nestone.ru: could not connect to host
net-masters.pl: could not connect to host
@@ -13120,30 +15437,31 @@ net-rencontre.com: did not receive HSTS header
net2o.com: did not receive HSTS header
net2o.de: did not receive HSTS header
net2o.net: did not receive HSTS header
-net4it.de: did not receive HSTS header
+net4it.de: could not connect to host
netba.net: could not connect to host
netbox.cc: could not connect to host
netbrief.ml: could not connect to host
-netd.at: max-age too low: 172800
netde.jp: did not receive HSTS header
netdego.jp: could not connect to host
netducks.space: could not connect to host
netexem.com: did not receive HSTS header
netfs.pl: did not receive HSTS header
+netfxharmonics.com: could not connect to host
netguide.co.nz: did not receive HSTS header
netherwind.eu: did not receive HSTS header
+nethruster.com: 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: could not connect to host
netresourcedesign.com: could not connect to host
netsafeid.biz: did not receive HSTS header
netscaler.expert: could not connect to host
+netsec.cloud: could not connect to host
+netsecma.com: 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
+nettefoundation.com: did not receive HSTS header
nettopower.dk: did not receive HSTS header
nettoyage.email: could not connect to host
nettplusultra-rhone.fr: did not receive HSTS header
@@ -13151,29 +15469,30 @@ netulo.com: could not connect to host
networking-groups.co.uk: could not connect to host
networth.at: did not receive HSTS header
networx-online.de: could not connect to host
+netz0.com: could not connect to host
netzbit.de: could not connect to host
-netzpolitik.org: max-age too low: 2592000
netztest.at: did not receive HSTS header
netzvieh.de: could not connect to host
netzzwerg4u.de: did not receive HSTS header
-neuber.uno: could not connect to host
neuch.info: did not receive HSTS header
neueonlinecasino2016.com: could not connect to host
neuhaus-city.de: could not connect to host
neuralgic.net: could not connect to host
neuro-plus-100.com: could not connect to host
+neuroethics.com: did not receive HSTS header
neurogroove.info: did not receive HSTS header
neuronasdigitales.com: did not receive HSTS header
-neuronfactor.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+neuronfactor.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
neutralvehicle.com: did not receive HSTS header
nevadafiber.net: could not connect to host
+nevalogic.com: could not connect to host
never-afk.de: did not receive HSTS header
neveta.com: could not connect to host
new: could not connect to host
newantiagingcreams.com: could not connect to host
-newbasemedia.us: did not receive HSTS header
newbieboss.com: did not receive HSTS header
newbownerton.xyz: could not connect to host
+newburghhistoryblog.com: did not receive HSTS header
newchance.store: could not connect to host
newcitygas.ca: did not receive HSTS header
newcityinfo.info: could not connect to host
@@ -13182,13 +15501,15 @@ 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: did not receive HSTS header
+newhdmovies.io: could not connect to host
+newhoperailroad.com: did not receive HSTS header
+newjianzhi.com: could not connect to host
newlooknow.com: did not receive HSTS header
+newmovements.net: could not connect to host
newparadigmventures.net: did not receive HSTS header
-newpathintegratedtherapy.com: could not connect to host
+newpathintegratedtherapy.com: did not receive HSTS header
newpoke.net: could not connect to host
newportpropertygroup.com: could not connect to host
-news47ell.com: did not receive HSTS header
news4c.com: did not receive HSTS header
newsa2.com: could not connect to host
newsaboutgames.de: did not receive HSTS header
@@ -13198,26 +15519,35 @@ 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
nexril.net: max-age too low: 7776000
+next-server.eu: could not connect to host
next47.com: did not receive HSTS header
-nextcloud.org: did not receive HSTS header
-nextend.net: did not receive HSTS header
+nextads.ch: could not connect to host
+nextcloud.co.za: did not receive HSTS header
+nextend.net: could not connect to host
nextend.org: could not connect to host
+nextgencel.com: did not receive HSTS header
nexth.de: could not connect to host
nexth.net: did not receive HSTS header
nexth.us: could not connect to host
+nexthop.co.jp: did not receive HSTS header
nexthop.co.th: did not receive HSTS header
-nextlevel-it.co.uk: could not connect to host
+nexthop.jp: did not receive HSTS header
nextpages.de: could not connect to host
nextproject.us: could not connect to host
nextshutter.com: did not receive HSTS header
+nexttv.co.il: 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
nezvestice.cz: did not receive HSTS header
+nf4.net: did not receive HSTS header
nfhome.be: did not receive HSTS header
+nfl.dedyn.io: could not connect to host
+nfl.duckdns.org: could not connect to host
+nfls.io: did not receive HSTS header
+nflsic.org: 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
@@ -13225,32 +15555,39 @@ 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
ngla.gov: could not connect to host
nglr.org: could not connect to host
+ngndn.jp: could not connect to host
ngocuong.net: could not connect to host
ngt-service.ru: could not connect to host
-ngtoys.com.br: did not receive HSTS header
+ngtoys.com.br: could not connect to host
nhccnews.org: could not connect to host
nhliberty.org: did not receive HSTS header
nhsuites.com: did not receive HSTS header
-nhus.de: max-age too low: 172800
niallator.com: could not connect to host
nibiisclaim.com: could not connect to host
+nice.im: did not receive HSTS header
nicestresser.fr: could not connect to host
nickcleans.co.uk: could not connect to host
+nickdekruijk.nl: could not connect to host
+nicklord.com: could not connect to host
+nickmertin.ca: did not receive HSTS header
+nickscomputers.nl: could not connect to host
nicky.io: did not receive HSTS header
nico.one: did not receive HSTS header
+nico.today: could not connect to host
nicoborghuis.nl: could not connect to host
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
+nicolashess.de: could not connect to host
+nicolasklotz.de: could not connect to host
nicoleoquendo.com: max-age too low: 2592000
niconiconi.xyz: could not connect to host
+nicoobook.net: did not receive HSTS header
nicorevin.ru: could not connect to host
nidux.com: did not receive HSTS header
niduxcomercial.com: could not connect to host
@@ -13259,8 +15596,9 @@ niedrigsterpreis.de: did not receive HSTS header
nielshoogenhout.be: did not receive HSTS header
nielshoogenhout.eu: did not receive HSTS header
nielshoogenhout.nl: did not receive HSTS header
+niemaler.de: could not connect to host
nien.chat: could not connect to host
-nien.com.tw: could not connect to host
+nien.com.tw: did not receive HSTS header
nien.taipei: could not connect to host
nienfun.com: could not connect to host
nieuwsoverijssel.nl: did not receive HSTS header
@@ -13268,13 +15606,18 @@ niffler.software: could not connect to host
nifpnet.nl: could not connect to host
nifume.com: could not connect to host
nigger.racing: could not connect to host
+nightbutterflies.com: did not receive HSTS header
+nightfirecat.com: could not connect to host
+nightmoose.org: did not receive HSTS header
nightsnack.cf: could not connect to host
nightwinds.tk: could not connect to host
-nigt.cf: did not receive HSTS header
+nigt.cf: could not connect to host
+nihilistan.tk: could not connect to host
niho.jp: did not receive HSTS header
+nii2.org: could not connect to host
+nikavandenbos.nl: did not receive HSTS header
nikcub.com: did not receive HSTS header
niki.ai: did not receive HSTS header
-nikklassen.ca: did not receive HSTS header
nikksno.io: could not connect to host
niklas.host: could not connect to host
niklasanderson.com: did not receive HSTS header
@@ -13284,9 +15627,9 @@ nikolaichik.photo: did not receive HSTS header
nikolasbradshaw.com: could not connect to host
nikz.in: did not receive HSTS header
nilianwo.com: could not connect to host
-nilrem.org: did not receive HSTS header
ninchisho-online.com: did not receive HSTS header
ninebytes.xyz: could not connect to host
+ninetailed.ninja: could not connect to host
ning.so: did not receive HSTS header
ninhs.org: could not connect to host
ninjaspiders.com: could not connect to host
@@ -13294,49 +15637,52 @@ ninofink.com: could not connect to host
niouininon.eu: could not connect to host
nippler.org: could not connect to host
nippombashi.net: did not receive HSTS header
+nippon.fr: did not receive HSTS header
nipponcareers.com: could not connect to host
nirada.info: could not connect to host
nirjharstudio.com: did not receive HSTS header
nirna.io: did not receive HSTS header
-nirvanashop.com: could not connect to host
nishaswonderland.be: did not receive HSTS header
nishaswonderland.nl: did not receive HSTS header
nishikino-maki.com: could not connect to host
nishisbma.com: could not connect to host
-nitaonline.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+nitaonline.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
nitix.games: could not connect to host
-nitropanel.com: did not receive HSTS header
niva.synology.me: could not connect to host
niveldron.com: could not connect to host
nivi.ca: could not connect to host
nix.black: 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
+nixne.st: did not receive HSTS header
nixtest.net: could not connect to host
-njujb.com: max-age too low: 5184000
-nkadvertising.online: could not connect to host
+njujb.com: did not receive HSTS header
+nkadvertising.online: did not receive HSTS header
nkautoservice.nl: did not receive HSTS header
nkb.in.th: could not connect to host
+nkp-media.de: could not connect to host
+nlayer.info: could not connect to host
+nlfant.eu: did not receive HSTS header
nll.fi: could not connect to host
nlrb.gov: did not receive HSTS header
-nmadda.com: did not receive HSTS header
+nmadda.com: could not connect to host
nmctest.net: did not receive HSTS header
-nmd.so: did not receive HSTS header
nmgb.ga: could not connect to host
nmgb.ml: could not connect to host
+nmsinusdoc.com: did not receive HSTS header
nmsnj.com: did not receive HSTS header
nmueller.at: could not connect to host
+nn6957.com: could not connect to host
nn78.com: did not receive HSTS header
nnote.net: did not receive HSTS header
+nnqc.nl: max-age too low: 0
nnya.cat: could not connect to host
no17sifangjie.cc: could not connect to host
noc.wang: could not connect to host
nocallaghan.com: could not connect to host
noclegi-online.pl: did not receive HSTS header
-nocs.cn: could not connect to host
noctinus.tk: could not connect to host
-nodalr.com: did not receive HSTS header
+nodalr.com: could not connect to host
nodari.com.ar: did not receive HSTS header
nodariweb.com.ar: could not connect to host
node-core-app.com: could not connect to host
@@ -13345,36 +15691,42 @@ nodechate.xyz: could not connect to host
nodecompat.com: did not receive HSTS header
nodefiles.com: did not receive HSTS header
nodefoo.com: could not connect to host
+nodelia.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
+nodeselect.com: did not receive HSTS header
+nodesonic.com: could not connect to host
nodesturut.cl: did not receive HSTS header
nodetemple.com: could not connect to host
-nodi.at: did not receive HSTS header
+nodi.at: could not connect to host
+nodist.club: could not connect to host
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
+noez.de: did not receive HSTS header
noisebridge.social: could not connect to host
+noisetor.net: could not connect to host
nojestorget.se: did not receive HSTS header
+nojobook.com: could not connect to host
nojok.es: could not connect to host
nokia.la: 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
+nolatepayments.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+nolberg.net: could not connect to host
nolimits.net.nz: could not connect to host
nolimitsbook.de: did not receive HSTS header
nolte.work: could not connect to host
-nomoondev.azurewebsites.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+nomoondev.azurewebsites.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
nomorebytes.de: could not connect to host
-nonabytes.xyz: could not connect to host
nonemu.ninja: could not connect to host
+noob-rp.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
noobswhatelse.net: could not connect to host
noodlecrave.com: did not receive HSTS header
noodlesandwich.com: did not receive HSTS header
noodleyum.com: could not connect to host
+nootroic.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
@@ -13382,12 +15734,12 @@ nopex.no: could not connect to host
nopol.de: could not connect to host
norandom.com: could not connect to host
norb.at: could not connect to host
+nordakademie.de: max-age too low: 0
norden.eu.org: could not connect to host
nordic-survival.de: could not connect to host
nordiccasinocommunity.com: did not receive HSTS header
nordicess.dk: could not connect to host
nordlicht.photography: did not receive HSTS header
-nordwal.de: could not connect to host
noref.tk: could not connect to host
norge.guide: could not connect to host
normalady.com: could not connect to host
@@ -13396,18 +15748,22 @@ norrkemi.se: could not connect to host
north.supply: could not connect to host
northcutt.com: did not receive HSTS header
northernmuscle.ca: could not connect to host
-northpennvwparts.com: max-age too low: 604800
+northernpage.com: did not receive HSTS header
northwest-events.co.uk: could not connect to host
northwoodsfish.com: could not connect to host
+norys-escape.de: could not connect to host
nosbenevolesontdutalent.com: could not connect to host
nosecretshop.com: could not connect to host
nosfermiers.com: could not connect to host
+nospoint.cz: could not connect to host
nosproduitsdequalite.fr: did not receive HSTS header
nossasenhoradaconceicao.com.br: could not connect to host
nostosh.eu.org: could not connect to host
nostraspace.com: could not connect to host
+nosuch.blog: did not receive HSTS header
nosx.tk: could not connect to host
not-a.link: could not connect to host
+not-equal.me: 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
@@ -13415,17 +15771,22 @@ 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
+notarvysocina.cz: did not receive HSTS header
notboring.co.uk: could not connect to host
notdienstreform-nordrhein.de: could not connect to host
note7forever.com: could not connect to host
notenoughtime.de: could not connect to host
+notequal.me: could not connect to host
+notes24x7.com: could not connect to host
notesforpebble.com: could not connect to host
notevencode.com: could not connect to host
nothing.org.uk: could not connect to host
noticia.do: did not receive HSTS header
notificami.com: could not connect to host
-notjustbitchy.com: could not connect to host
+notinglife.com: could not connect to host
+notjustbitchy.com: did not receive HSTS header
notonprem.com: could not connect to host
+notoriousdev.com: did not receive HSTS header
notrecourrier.net: did not receive HSTS header
nottheonion.net: did not receive HSTS header
nottori.com: could not connect to host
@@ -13434,8 +15795,6 @@ nou.si: did not receive HSTS header
nouma.fr: did not receive HSTS header
nouvelle-vague-saint-cast.fr: did not receive HSTS header
nova-elearning.com: could not connect to host
-nova.com.hk: did not receive HSTS header
-novacal.ga: could not connect to host
novaco.in: max-age too low: 3600
novacraft.me: could not connect to host
novaopcaofestas.com.br: could not connect to host
@@ -13446,35 +15805,48 @@ novelabs.de: could not connect to host
novelabs.eu: could not connect to host
novelrealm.com: did not receive HSTS header
novelshouse.com: could not connect to host
-novinhabucetuda.com: could not connect to host
+novodiegomaia.com.br: could not connect to host
novtest.ru: did not receive HSTS header
+nowall.online: could not connect to host
nowcost.com: could not connect to host
+nowitzki.me: could not connect to host
noworrywp.com: could not connect to host
-nowprotein.com: did not receive HSTS header
+nowprotein.com: could not connect to host
nowremindme.com: could not connect to host
noxi.ga: could not connect to host
+noydeen.com: did not receive HSTS header
nozoe.jp: could not connect to host
npm.li: did not receive HSTS header
npol.de: could not connect to host
-npool.org: did not receive HSTS header
-nq7.pl: could not connect to host
+npool.org: could not connect to host
+nq7.pl: did not receive HSTS header
+nqesh.com: could not connect to host
nrc-gateway.gov: could not connect to host
+nrdstd.io: could not connect to host
nrechn.de: could not connect to host
nrizzio.me: could not connect to host
nrnjn.xyz: did not receive HSTS header
nrvnastudios.com: could not connect to host
+nsa.lol: could not connect to host
nsa.wtf: could not connect to host
+nsamail.uk: could not connect to host
nsbfalconacademy.org: could not connect to host
+nsboutique.com: could not connect to host
+nscai.gov: could not connect to host
nsdev.cn: could not connect to host
nsellier.fr: did not receive HSTS header
nshost.ro: did not receive HSTS header
nsmail.cn: could not connect to host
nspeaks.com: did not receive HSTS header
+nstatic.xyz: could not connect to host
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
+ntcoss.org.au: did not receive HSTS header
+nth.sh: could not connect to host
ntse.xyz: could not connect to host
+ntut.net: could not connect to host
nu-pogodi.net: could not connect to host
nu3.at: did not receive HSTS header
nu3.ch: did not receive HSTS header
@@ -13482,32 +15854,41 @@ nu3.co.uk: could not connect to host
nu3.com: did not receive HSTS header
nu3.de: did not receive HSTS header
nu3.dk: did not receive HSTS header
-nu3.fi: did not receive HSTS header
+nu3.fi: could not connect to host
nu3.fr: did not receive HSTS header
nu3.no: did not receive HSTS header
nu3.se: did not receive HSTS header
nube.ninja: did not receive HSTS header
nubella.com.au: did not receive HSTS header
nubeslayer.com: could not connect to host
+nubu.at: could not connect to host
+nuclea.site: 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
+nucleuscore.org: could not connect to host
nudel.ninja: could not connect to host
-nudestpics.com: could not connect to host
+nudestpics.com: did not receive HSTS header
+nuevaimagenpublicidad.es: did not receive HSTS header
nufla.de: could not connect to host
-nugetdependencies.com: did not receive HSTS header
+nugdev.co: could not connect to host
+nugetdependencies.com: could not connect to host
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
+nulap.com: did not receive HSTS header
null-pointer.eu: did not receive HSTS header
null-sec.ru: could not connect to host
null.cat: did not receive HSTS header
null.tips: could not connect to host
+nullchan.org: could not connect to host
nullpoint.at: did not receive HSTS header
nullpro.com: could not connect to host
+nulltime.net: could not connect to host
+number.me: could not connect to host
numericacu.com: did not receive HSTS header
-numero-di-telefono.it: could not connect to host
+numero-di-telefono.it: did not receive HSTS header
+numis.tech: could not connect to host
numista.com: did not receive HSTS header
numm.fr: did not receive HSTS header
nuos.org: could not connect to host
@@ -13515,54 +15896,62 @@ nuovamoda.al: could not connect to host
nup.pw: could not connect to host
nupef.org.br: did not receive HSTS header
nurserybook.co: did not receive HSTS header
+nursingschool.network: could not connect to host
nurture.be: did not receive HSTS header
-nusatrip-api.com: did not receive HSTS header
nusku.biz: did not receive HSTS header
-nutricaovegana.com: did not receive HSTS header
+nutonic-sports.com: did not receive HSTS header
nutricuerpo.com: did not receive HSTS header
nutrieduca.com: could not connect to host
nutrienti.eu: did not receive HSTS header
nutrifyyourself.com: could not connect to host
nutritionculture.com: could not connect to host
+nutrivisa.com.br: could not connect to host
nutsandboltsmedia.com: did not receive HSTS header
-nuttyveg.com: did not receive HSTS header
nuwaterglobal.com: did not receive HSTS header
-nvcogct.gov: could not connect to host
+nvcogct.gov: did not receive HSTS header
+nve-qatar.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
-nwork.media: did not receive HSTS header
+nwork.media: could not connect to host
nwr-waffenbuch.de: did not receive HSTS header
+nwshell.com: could not connect to host
nwuss.okinawa: could not connect to host
-nxt.sh: could not connect to host
+nx42.pw: could not connect to host
+nxt.sh: did not receive HSTS header
nyanco.space: could not connect to host
nyanpasu.tv: could not connect to host
+nyansparkle.com: did not receive HSTS header
nyatane.com: could not connect to host
nyazeeland.guide: could not connect to host
nycroth.com: could not connect to host
-nydnxs.com: did not receive HSTS header
nyesider.org: could not connect to host
nyffo.com: did not receive HSTS header
-nylonfeetporn.com: could not connect to host
+nyghtus.net: could not connect to host
+nynex.net: could not connect to host
nyored.com: did not receive HSTS header
nyphox.net: could not connect to host
+nys-hk.com: could not connect to host
nysepho.pw: could not connect to host
nysifclaimcentral.com: did not receive HSTS header
nystart.no: did not receive HSTS header
nystudio107.com: did not receive HSTS header
-nyuusannkinn.com: did not receive HSTS header
nz.search.yahoo.com: max-age too low: 172800
nzbr.de: did not receive HSTS header
nzbs.io: could not connect to host
nzdmo.govt.nz: did not receive HSTS header
nzmk.cz: could not connect to host
nzquakes.maori.nz: did not receive HSTS header
-o-loska.cz: did not receive HSTS header
+o-loska.cz: could not connect to host
o-rickroll-y.pw: could not connect to host
+o0c.cc: could not connect to host
o0o.one: did not receive HSTS header
-o5.cx: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+o0o.st: could not connect to host
+o6957.com: could not connect to host
o8b.club: could not connect to host
+oaklands.co.za: did not receive HSTS header
oaksbloom.com: could not connect to host
+oanalista.com.br: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
oasis-conference.org.nz: could not connect to host
oasis.mobi: could not connect to host
obdolbacca.ru: could not connect to host
@@ -13570,49 +15959,60 @@ 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
obioncountytn.gov: could not connect to host
objectif-leger.com: did not receive HSTS header
+objetperso.fr: could not connect to host
oblikdom.pro: did not receive HSTS header
oblikdom.ru: did not receive HSTS header
oblondata.io: did not receive HSTS header
obrienlab.com: did not receive HSTS header
+obrobka-zdjec.pl: could not connect to host
obscuredfiles.com: could not connect to host
+obscureware.xyz: could not connect to host
observatory.se: could not connect to host
+observer.name: did not receive HSTS header
+obsessharness.com: could not connect to host
obsidianirc.net: 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
-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]
+occasion-impro.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
occupymedia.org: could not connect to host
ocelot.help: did not receive HSTS header
ochaken.cf: could not connect to host
+ochrebridge.com: could not connect to host
ocloudhost.com: could not connect to host
ocmeulebeke.be: did not receive HSTS header
+ocponj.gov: could not connect to host
ocrami.us: did not receive HSTS header
-octal.es: did not receive HSTS header
+octal.es: could not connect to host
octanio.com: did not receive HSTS header
octo.im: could not connect to host
-octocat.ninja: could not connect to host
octod.tk: could not connect to host
octohost.net: did not receive HSTS header
-oddmouse.com: could not connect to host
+octomist.com: did not receive HSTS header
+ocwr.gov: did not receive HSTS header
+oddtime.net: could not connect to host
+odeonentertainment.co.uk: could not connect to host
odifi.com: could not connect to host
odin.xxx: could not connect to host
odinkapital.no: did not receive HSTS header
odinoffice.no: did not receive HSTS header
+odisealinux.com: did not receive HSTS header
odosblog.de: could not connect to host
odysseyandco.com: could not connect to host
odysseyconservationtrust.com: did not receive HSTS header
oe8.bet: could not connect to host
+of2m.fr: did not receive HSTS header
ofcourselanguages.com: could not connect to host
-ofcss.com: could not connect to host
+ofcss.com: did not receive HSTS header
ofer.site: could not connect to host
off-the-clock.us: could not connect to host
offenedialoge.de: max-age too low: 2592000
offersgame.com: could not connect to host
offerstone.cl: could not connect to host
+offfbynight.be: 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
@@ -13621,77 +16021,91 @@ offshore-firma.org: could not connect to host
offshore-unternehmen.com: could not connect to host
offshorefirma-gruenden.com: could not connect to host
offtherails.ie: could not connect to host
+offtopic.io: could not connect to host
oficinadocelular.com.br: could not connect to host
ofo2.com: did not receive HSTS header
oganek.ie: could not connect to host
oganime.com: could not connect to host
oggw.us: could not connect to host
ogis.gov: 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
+ohartl.de: could not connect to host
ohayosoro.me: could not connect to host
ohhdeertrade.com: did not receive HSTS header
+ohioag.gov: could not connect to host
+ohiosos.gov: could not connect to host
ohling.org: could not connect to host
-ohm2013.org: did not receive HSTS header
ohma.ga: did not receive HSTS header
ohnemusik.com: did not receive HSTS header
-ohohrazi.com: did not receive HSTS header
+ohnonotme.com: could not connect to host
+ohohrazi.com: could not connect to host
ohreally.de: could not connect to host
-ohsocool.org: did not receive HSTS header
+ohyooo.com: could not connect to host
oiaio.cn: could not connect to host
oiepoie.nl: could not connect to host
-oil-ecn.ru: did not receive HSTS header
oilfieldinjury.attorney: could not connect to host
+oilpaintingsonly.com: could not connect to host
oinky.ddns.net: could not connect to host
+oirealtor.com: did not receive HSTS header
oishioffice.com: did not receive HSTS header
ojanaho.com: did not receive HSTS header
ojbk.eu: could not connect to host
ojeremy.com: did not receive HSTS header
ojls.co: could not connect to host
+ojomovies.com: did not receive HSTS header
+okanaganrailtrail.ca: max-age too low: 0
okane.love: did not receive HSTS header
+okchicas.com: did not receive HSTS header
oklahomamoversassociation.org: could not connect to host
oklahomanotepro.com: could not connect to host
+okmx.cloud: did not receive HSTS header
+okmx.de: did not receive HSTS header
okok-rent.com: could not connect to host
okok.rent: could not connect to host
-okonetwork.org.uk: could not connect to host
+okuscapital.com: did not receive HSTS header
okutama.in.th: could not connect to host
-olafnorge.de: did not receive HSTS header
+olandiz.com: did not receive HSTS header
olcso-vps-szerver.hu: could not connect to host
-oldandyounglesbians.us: could not connect to host
-oldbrookinflatables.co.uk: did not receive HSTS header
+oldandyounglesbians.us: did not receive HSTS header
oldenglishsheepdog.com.br: could not connect to host
-oldonyosafaris.com: did not receive HSTS header
+oldnoob.de: could not connect to host
oldtimer-trifft-flugplatz.de: did not receive HSTS header
+oleron.fr: did not receive HSTS header
+olgui.net: could not connect to host
+olifant.fr: could not connect to host
olightstore.com: did not receive HSTS header
oliode.tk: could not connect to host
olivlabs.com: could not connect to host
ollehbizev.co.kr: could not connect to host
ollieowlsblog.com: could not connect to host
+ollies.cloud: could not connect to host
ols.io: did not receive HSTS header
olswangtrainees.com: could not connect to host
+olygazoo.com: could not connect to host
olympe-transport.fr: did not receive HSTS header
omacostudio.com: could not connect to host
omar.yt: did not receive HSTS header
-omarsuniagamusic.ga: did not receive HSTS header
-omdesign.cz: did not receive HSTS header
+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: max-age too low: 0
omise.co: did not receive HSTS header
-omlmetal.co.jp: max-age too low: 0
ommahpost.com: did not receive HSTS header
-omnigon.network: could not connect to host
omnilab.tech: could not connect to host
omnisafira.com: did not receive HSTS header
omniscimus.net: could not connect to host
+omnisky.dk: did not receive HSTS header
omniti.com: did not receive HSTS header
-omorashi.org: could not connect to host
omquote.gq: could not connect to host
+omranic.com: could not connect to host
omskit.ru: could not connect to host
omyogarishikesh.com: did not receive HSTS header
on-te.ch: did not receive HSTS header
-on.tax: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
onazikgu.com: could not connect to host
ondrejhoralek.cz: did not receive HSTS header
one-pe.com: did not receive HSTS header
@@ -13700,59 +16114,67 @@ oneb4nk.com: could not connect to host
oneclickonejob.com: did not receive HSTS header
onecycling.my: could not connect to host
onecycling.world: could not connect to host
+onedot.nl: max-age too low: 10368000
onefour.co: could not connect to host
+onefour.ga: could not connect to host
+onegoodthingbyjillee.com: did not receive HSTS header
+onehost.blue: could not connect to host
onehourloan.com: could not connect to host
onehourloan.sg: did not receive HSTS header
+oneidentity.me: could not connect to host
+oneiroi.co.uk: could not connect to host
oneiros.cc: could not connect to host
-onelawsuit.com: could not connect to host
+onelawsuit.com: did not receive HSTS header
oneminute.io: did not receive HSTS header
-oneminutefilm.tv: did not receive HSTS header
+oneminutefilm.tv: could not connect to host
+oneminutetomindfulness.com: could not connect to host
onemusou.com: could not connect to host
-onepathnetwork.com: max-age too low: 7776000
onepluscamps.com: did not receive HSTS header
onepopstore.com: could not connect to host
+onesearay.com: did not receive HSTS header
onespiritinc.com: did not receive HSTS header
onet.space: could not connect to host
+onetech.it: could not connect to host
onetly.com: could not connect to host
onewebdev.info: could not connect to host
oneworldbank.com: did not receive HSTS header
-onewpst.com: could not connect to host
-ongea.io: could not connect to host
+onewpst.com: did not receive HSTS header
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
-onionplay.org: could not connect to host
+onionplay.org: did not receive HSTS header
onionsburg.com: could not connect to host
+onkfaktor.de: could not connect to host
+online-bouwmaterialen.nl: did not receive HSTS header
online-casino.eu: did not receive HSTS header
+online-consulting-corp.com: could not connect to host
online-horoskop.ch: did not receive HSTS header
online-results.dk: did not receive HSTS header
online-scene.com: did not receive HSTS header
online-wetten.de: could not connect to host
online.net.gr: could not connect to host
-online.swedbank.se: did not receive HSTS header
-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]
+onlinebiller.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
onlinebillingform.com: could not connect to host
-onlinecasinobluebook.com: could not connect to host
+onlinebizdirect.com: did not receive HSTS header
onlinecasinoselite.org: did not receive HSTS header
onlinecompliance.org: did not receive HSTS header
-onlinecorners.com: did not receive HSTS header
-onlinedemo.hu: could not connect to host
+onlinecorners.com: could not connect to host
onlinedeposit.us: could not connect to host
onlineinfographic.com: could not connect to host
onlinekasino.de: did not receive HSTS header
+onlinelighting.com.au: 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: could not connect to host
onlinestoreninjas.com: did not receive HSTS header
-onlineweblearning.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
onlinewetten.de: could not connect to host
only-roses.co.uk: did not receive HSTS header
only-roses.com: max-age too low: 2592000
-onlyesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+onlyesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
onlyesb.net: could not connect to host
+onlylebanon.net: did not receive HSTS header
onlyshopstation.com: did not receive HSTS header
onlyzero.net: could not connect to host
onmuvo.com: could not connect to host
@@ -13765,6 +16187,7 @@ onovlena.dn.ua: could not connect to host
onpatient.com: did not receive HSTS header
onpermit.net: could not connect to host
onsennuie.fr: did not receive HSTS header
+onshuistrust.co.za: did not receive HSTS header
onsite4u.de: could not connect to host
onsitemassageco.com: did not receive HSTS header
onstud.com: could not connect to host
@@ -13773,6 +16196,7 @@ ontheboard.com: did not receive HSTS header
onthecheap.store: could not connect to host
ontheten.org: did not receive HSTS header
ontimestamp.com: did not receive HSTS header
+ontsc.com: could not connect to host
onvirt.de: could not connect to host
onwie.com: could not connect to host
onwie.fr: could not connect to host
@@ -13780,7 +16204,9 @@ onyxwall.com: could not connect to host
onyxwall.link: could not connect to host
onyxwall.net: could not connect to host
oo.edu.rs: could not connect to host
+oo6957.com: could not connect to host
ooeste.com: could not connect to host
+oogartsennet.nl: could not connect to host
ookjesprookje.nl: could not connect to host
ooooush.co.uk: could not connect to host
oopsis.com: could not connect to host
@@ -13792,52 +16218,58 @@ op11.co.uk: could not connect to host
opadaily.com: could not connect to host
opatut.de: did not receive HSTS header
opcaobolsas.com.br: could not connect to host
+open-domotics.info: could not connect to host
open-mx.de: could not connect to host
-open-to-repair.fr: max-age too low: 86400
+open-to-repair.fr: could not connect to host
openacademies.com: did not receive HSTS header
-openas.org: did not receive HSTS header
+openas.org: could not connect to host
openbankproject.com: did not receive HSTS header
-openbsd.id: could not connect to host
-openbsd.rocks: could not connect to host
+openbsd.id: did not receive HSTS header
+openbsd.rocks: did not receive HSTS header
openclub24.ru: could not connect to host
opencluster.at: could not connect to host
openconcept.no: did not receive HSTS header
openconnect.com.au: could not connect to host
+opencpes.org: 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
+openintelligence.uk: 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
-openpictures.ch: could not connect to host
+opennippon.com: could not connect to host
+opennippon.ru: could not connect to host
openpresentes.com.br: could not connect to host
openpriv.pw: could not connect to host
openprovider.nl: did not receive HSTS header
openrainbow.org: could not connect to host
openrtv.com: did not receive HSTS header
-openruhr.de: did not receive HSTS header
openshift.redhat.com: did not receive HSTS header
opensourcedmind.eu: could not connect to host
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
+openssf.org: could not connect to host
opentexon.com: could not connect to host
+opentrash.org: could not connect to host
openxmpp.com: could not connect to host
operad.fr: could not connect to host
+operationforever.com: could not connect to host
opiates.net: did not receive HSTS header
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
+opoleo.com: did not receive HSTS header
oportho.com.br: did not receive HSTS header
oportunidadesemfoco.com.br: could not connect to host
opp.ag: did not receive HSTS header
oppag.com.br: did not receive HSTS header
opperwall.net: could not connect to host
opposer.me: could not connect to host
+oprbox.com: could not connect to host
opsafewinter.net: could not connect to host
opsbears.com: did not receive HSTS header
opsnotepad.com: could not connect to host
@@ -13848,6 +16280,8 @@ optiekzien.nl: did not receive HSTS header
optimal-e.com: did not receive HSTS header
optimised.cloud: could not connect to host
optimised.io: could not connect to host
+optimisedlabs.co.uk: could not connect to host
+optimisedlabs.com: could not connect to host
optimisedlabs.info: could not connect to host
optimisedlabs.net: could not connect to host
optimisedlabs.uk: could not connect to host
@@ -13859,37 +16293,48 @@ optimizedlabs.net: could not connect to host
optimizedlabs.uk: could not connect to host
optisure.de: could not connect to host
optometriepunt.nl: did not receive HSTS header
+optometryscotland.org.uk: did not receive HSTS header
optumrxhealthstore.com: could not connect to host
opunch.org: did not receive HSTS header
opure.ml: did not receive HSTS header
+opure.ru: did not receive HSTS header
oracaodocredo.com.br: could not connect to host
+oraculum.cz: did not receive HSTS header
+orangefinanse.com.pl: could not connect to host
+orangehattech.com: did not receive HSTS header
orangekey.tk: could not connect to host
orangenuts.in: could not connect to host
oranges.tokyo: did not receive HSTS header
-oranic.com: did not receive HSTS header
+orangetravel.eu: could not connect to host
+oranic.com: could not connect to host
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
ordekho.com: did not receive HSTS header
order.one: could not connect to host
ordereat.fr: could not connect to host
-orderessay.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+orderessay.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
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
-oregonmu.org: did not receive HSTS header
+ordr.mobi: could not connect to host
+ore.cool: could not connect to host
+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: could not connect to host
oreka.online: could not connect to host
orelavtomaster.ru: could not connect to host
orfeo-engineering.ch: could not connect to host
organic-superfood.net: could not connect to host
organicae.com: did not receive HSTS header
-orians.eu: could not connect to host
+organicskincare.com: did not receive HSTS header
+organix.ma: did not receive HSTS header
+orgatech-gmbh.de: 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
+origincoffee.com: did not receive HSTS header
+origincoffee.nz: did not receive HSTS header
orioncustompcs.com: could not connect to host
oriondynamic.be: did not receive HSTS header
orionfcu.com: did not receive HSTS header
@@ -13898,37 +16343,43 @@ orionrebellion.com: did not receive HSTS header
orleika.ml: could not connect to host
orovillelaw.com: could not connect to host
oroweatorganic.com: could not connect to host
+orro.ro: did not receive HSTS header
ortho-graz.at: max-age too low: 86400
orthodoxy.lt: did not receive HSTS header
+ortizmario.com: could not connect to host
ortodonciaian.com: did not receive HSTS header
-orui.com.br: did not receive HSTS header
+orui.com.br: could not connect to host
orum.in: max-age too low: 0
+orz.uno: did not receive HSTS header
os-chrome.ru: did not receive HSTS header
osaiyuwu.com: could not connect to host
osaka-onakura.com: did not receive HSTS header
-oscamp.eu: could not connect to host
+oscamp.eu: did not receive HSTS header
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]
+oscarproductions.no: 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 :: .\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: 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
oshershalom.com: did not receive HSTS header
oshinagaki.jp: did not receive HSTS header
-osirisrp.online: could not connect to host
oslfoundation.org: did not receive HSTS header
osmestres.com: did not receive HSTS header
osp.cx: could not connect to host
-osquery.io: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+osprecos.com.br: did not receive HSTS header
+osprecos.pt: did not receive HSTS header
ossan-kobe-gourmet.com: did not receive HSTS header
ossbinaries.com: could not connect to host
osteammate.com: could not connect to host
ostendorf.com: did not receive HSTS header
osticketawesome.com: did not receive HSTS header
+osusume-houhou.com: did not receive HSTS header
oswaldmattgroup.com: did not receive HSTS header
osxentwicklerforum.de: max-age too low: 2592000
otako.pl: did not receive HSTS header
@@ -13936,58 +16387,59 @@ otakucloud.net: 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
-othercode.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]
+othercode.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
otherkinforum.com: could not connect to host
-othermedia.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-otherstuff.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+othermedia.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\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 :: .\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
+otmns.net: did not receive HSTS header
otmo7.com: did not receive HSTS header
otoblok.com: did not receive HSTS header
otokonna.com: did not receive HSTS header
otrsdemo.hu: did not receive HSTS header
otsu.beer: could not connect to host
ottospora.nl: could not connect to host
+otus-magnum.com: could not connect to host
ouimoove.com: could not connect to host
-oulunjujutsu.com: did not receive HSTS header
-ouowo.gq: did not receive HSTS header
-ourbank.com: max-age too low: 2592000
+ourbank.com: did not receive HSTS header
ourchoice2016.com: could not connect to host
+ourls.win: could not connect to host
ouruglyfood.com: could not connect to host
outdooradventures.pro: could not connect to host
-outdoorproducts.com: max-age too low: 7889238
-outerlimitsdigital.com: did not receive HSTS header
-outetc.com: could not connect to host
+outdoorhole.com: max-age too low: 6000000
+outfit-weimar.eu: could not connect to host
+outlines.xyz: did not receive HSTS header
outreachbuddy.com: could not connect to host
outsider.im: could not connect to host
outurnate.com: did not receive HSTS header
ouvirmusica.com.br: did not receive HSTS header
ovabag.com: did not receive HSTS header
ovenapp.io: did not receive HSTS header
-over25tips.com: did not receive HSTS header
overceny.cz: did not receive HSTS header
override.io: could not connect to host
-overrustle.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+overrustle.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
oversight.io: could not connect to host
overstappen.nl: did not receive HSTS header
+overthecloud.it: could not connect to host
overture.london: did not receive HSTS header
overwall.org: could not connect to host
ovuscloud.de: could not connect to host
ovwane.com: could not connect to host
owall.ml: did not receive HSTS header
-owennelson.me: max-age too low: 2592000
owensmith.website: could not connect to host
owl-hakkei.com: did not receive HSTS header
+owlandrabbitgallery.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
owlscrap.ru: could not connect to host
-owncloud.help: could not connect to host
-owngeek.com: could not connect to host
+owncloud.ch: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+owncloud.help: did not receive HSTS header
+owngeek.com: did not receive HSTS header
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.co: could not connect to host
oxro.io: did not receive HSTS header
+oxt.co: did not receive HSTS header
oxygaming.com: did not receive HSTS header
oxygenabsorbers.com: did not receive HSTS header
oxymc.com: did not receive HSTS header
@@ -13995,9 +16447,17 @@ oxynux.fr: could not connect to host
oxynux.xyz: could not connect to host
oyesunn.com: could not connect to host
oyste.in: could not connect to host
+ozonitron.com: did not receive HSTS header
+ozonitron.de: did not receive HSTS header
+ozonitron.eu: did not receive HSTS header
+ozonytron.com: did not receive HSTS header
+ozonytron.de: did not receive HSTS header
+ozonytron.eu: did not receive HSTS header
ozoz.cc: could not connect to host
+p-fent.ch: did not receive HSTS header
p-pc.de: could not connect to host
p-rickroll-o.pw: could not connect to host
+p-t.io: could not connect to host
p.ki: could not connect to host
p.linode.com: could not connect to host
p1984.nl: could not connect to host
@@ -14012,35 +16472,49 @@ p8r.de: could not connect to host
paavolastudio.com: did not receive HSTS header
pablocamino.tk: could not connect to host
pablorey-art.com: did not receive HSTS header
-paccolat.name: could not connect to host
+pacco.com.br: did not receive HSTS header
paceda.nl: could not connect to host
pachaiyappas.org: did not receive HSTS header
+pacificpalisadeselectric.com: could not connect to host
+pacificpalisadeselectrical.com: could not connect to host
pacificpalisadeselectrician.com: could not connect to host
+pacificpalisadeslandscapelighting.com: could not connect to host
+pacificpalisadeslighting.com: could not connect to host
+pacifique-web.nc: could not connect to host
+packagefactory.dk: max-age too low: 0
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
+packs-de-mujeres.com: did not receive HSTS header
packshot-creator.com: did not receive HSTS header
pacnetwork.io: could not connect to host
pacoda.de: could not connect to host
pactf-flag-4boxdpa21ogonzkcrs9p.com: could not connect to host
pactocore.org: could not connect to host
-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]
+pader-deko.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+padovani.de: did not receive HSTS header
+paducaheic.com: could not connect to host
paestbin.com: could not connect to host
+pagamentosonline.pt: did not receive HSTS header
page: could not connect to host
pagedesignshop.com: did not receive HSTS header
pageperform.com: did not receive HSTS header
pagerate.io: could not connect to host
pages-tocaven.com: could not connect to host
pagetoimage.com: could not connect to host
+pagina.com.mx: did not receive HSTS header
paginapolitica.ro: did not receive HSTS header
pagure.org: could not connect to host
pahnid.com: could not connect to host
+pahub.io: did not receive HSTS header
paigeglass.com: did not receive HSTS header
+paigejulianne.com: did not receive HSTS header
painlessproperty.co.uk: did not receive HSTS header
paino.cloud: could not connect to host
painosso.org: could not connect to host
+paint-it.pink: could not connect to host
paintingat.com: could not connect to host
paintsealdirect.com: did not receive HSTS header
paio2-rec.com: could not connect to host
@@ -14051,13 +16525,20 @@ pajonzeck.de: could not connect to host
paket.io: could not connect to host
paket.ml: could not connect to host
paketkreditsuzuki.com: could not connect to host
-pakeystonescholars.gov: could not connect to host
-pakowanie-polska.pl: could not connect to host
+pakeystonescholars.gov: did not receive HSTS header
+pakowanie-polska.pl: did not receive HSTS header
+pakroyalpress.com: did not receive HSTS header
paku.me: could not connect to host
+palace-bayreuth.de: did not receive HSTS header
palationtrade.com: could not connect to host
palawan.jp: could not connect to host
+palazzo.work: could not connect to host
palazzotalamo.it: did not receive HSTS header
+paleolowcarb.de: did not receive HSTS header
+paleoself.com: could not connect to host
paleosquawk.com: could not connect to host
+paleotraining.com: did not receive HSTS header
+pallas.in: did not receive HSTS header
pallet.io: could not connect to host
palmer.im: could not connect to host
pammbook.com: could not connect to host
@@ -14067,48 +16548,50 @@ panaceallc.net: could not connect to host
panama-gbs.com: did not receive HSTS header
panamaequity.com: did not receive HSTS header
panamateakforestry.com: did not receive HSTS header
-panascais.io: could not connect to host
panasproducciones.com: could not connect to host
pandapsy.com: could not connect to host
panelomix.net: did not receive HSTS header
pangci.xyz: could not connect to host
panicparts.com: max-age too low: 10540800
panjee.com: max-age too low: 0
-panjee.fr: did not receive HSTS header
+panjee.fr: could not connect to host
panlex.org: did not receive HSTS header
panni.me: could not connect to host
panoma.de: did not receive HSTS header
panomizer.de: did not receive HSTS header
-panoranordic.net: did not receive HSTS header
+panoranordic.net: could not connect to host
panos.io: did not receive HSTS header
panoti.com: could not connect to host
panoxadrez.com.br: did not receive HSTS header
pansu.space: could not connect to host
pantsu.cat: did not receive HSTS header
+pao.ge: could not connect to host
paolo565.org: did not receive HSTS header
papalytics.com: could not connect to host
papapa-members.club: could not connect to host
papatest24.de: could not connect to host
papeda.net: could not connect to host
papelariadante.com.br: could not connect to host
+paper-driver.biz: did not receive HSTS header
papercard.co.uk: did not receive HSTS header
papercrunch.io: could not connect to host
-papermasters.com: could not connect to host
-papersmart.net: could not connect to host
+papermasters.com: did not receive HSTS header
paperwallets.io: could not connect to host
paperwork.co.za: could not connect to host
+paperworld.online: could not connect to host
papierniak.net: could not connect to host
papotage.net: could not connect to host
papygeek.com: could not connect to host
-parabhairavayoga.com: did not receive HSTS header
-paradependentesquimicos.com.br: did not receive HSTS header
+par-allel.ru: did not receive HSTS header
+parabhairavayoga.com: could not connect to host
paradiesgirls.ch: could not connect to host
paradigi.com.br: did not receive HSTS header
paradise-engineers.com: could not connect to host
paragon.edu: could not connect to host
paragontasarim.com: did not receive HSTS header
parakranov.ru: did not receive HSTS header
-paranormalweirdo.com: max-age too low: 600000
+paranoidcrypto.com: could not connect to host
+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
@@ -14119,19 +16602,19 @@ pariga.co.uk: could not connect to host
paris-cyber.fr: did not receive HSTS header
parisdimanche.com: did not receive HSTS header
parishome.jp: could not connect to host
+parisprovincedemenagements.fr: did not receive HSTS header
parisvox.info: did not receive HSTS header
parithy.net: could not connect to host
+parkfans.net: did not receive HSTS header
parkhillsbaptist.church: did not receive HSTS header
parkingplus.co.il: could not connect to host
-parkrocker.com: max-age too low: 604800
parksland.net: did not receive HSTS header
parksubaruoemparts.com: could not connect to host
parkwithark.com: could not connect to host
-parodesigns.com: did not receive HSTS header
parodybit.net: did not receive HSTS header
parpaing-paillette.net: could not connect to host
-parquet-lascazes.fr: max-age too low: 2592000
parroquiasanrafaeldegramalote.com: did not receive HSTS header
+partage.ovh: could not connect to host
participatorybudgeting.de: did not receive HSTS header
participatorybudgeting.info: did not receive HSTS header
particonpsplus.it: could not connect to host
@@ -14139,12 +16622,12 @@ partijhandel.website: did not receive HSTS header
partijtjevoordevrijheid.nl: could not connect to host
partirkyoto.jp: did not receive HSTS header
partiwatch.com: did not receive HSTS header
+partner.sh: did not receive HSTS header
partnerbeam.com: could not connect to host
partnerwerk.de: did not receive HSTS header
-party-kneipe-bar.com: did not receive HSTS header
+partycentrumdebinnenhof.nl: did not receive HSTS header
partyhaus.ovh: could not connect to host
partyhireformby.co.uk: did not receive HSTS header
-partyschnaps.com: could not connect to host
partyshop.ge: did not receive HSTS header
partyspecialists.com: did not receive HSTS header
partyvan.eu: could not connect to host
@@ -14154,10 +16637,11 @@ partyvan.nl: could not connect to host
partyvan.se: could not connect to host
pasadenasandwich.co: did not receive HSTS header
pasadenasandwich.com: did not receive HSTS header
-pascalchristen.ch: did not receive HSTS header
+pascal-kannchen.de: did not receive HSTS header
pasportaservo.org: did not receive HSTS header
-passendonderwijs.nl: did not receive HSTS header
-passionebenessere.com: did not receive HSTS header
+passfoto-deinfoto.ch: could not connect to host
+passionbyd.com: did not receive HSTS header
+passphrase.today: could not connect to host
passpilot.co.uk: did not receive HSTS header
passrhce.com: could not connect to host
passrhcsa.com: could not connect to host
@@ -14170,16 +16654,17 @@ pastaf.com: could not connect to host
pastdream.xyz: could not connect to host
paste.linode.com: could not connect to host
pastebin.linode.com: could not connect to host
+pasteblin.com: could not connect to host
pastenib.com: could not connect to host
paster.li: did not receive HSTS header
pasteros.io: could not connect to host
pastie.se: could not connect to host
-pastoral-verbund.de: max-age too low: 86400
pastorbelgagroenendael.com.br: could not connect to host
pastorcanadense.com.br: could not connect to host
pastordocaucaso.com.br: could not connect to host
pastormaremanoabruzes.com.br: could not connect to host
pastorsuico.com.br: could not connect to host
+pat-edu.org: could not connect to host
pataua.kiwi: did not receive HSTS header
paternitydnatest.com: could not connect to host
patfs.com: did not receive HSTS header
@@ -14188,32 +16673,40 @@ patientinsight.net: could not connect to host
patouille-et-gribouille.fr: 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
patrickmcnamara.xyz: did not receive HSTS header
patrickneuro.de: could not connect to host
patrickquinn.ca: did not receive HSTS header
+patrol-x.com: did not receive HSTS header
patt.us: could not connect to host
patterson.mp: could not connect to host
+paul-bronski.de: did not receive HSTS header
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: could not connect to host
+pauldev.co: max-age too low: 0
paulewen.ca: could not connect to host
+paulomonteiro.pt: could not connect to host
paulpetersen.dk: did not receive HSTS header
paulproell.at: did not receive HSTS header
paulrudge.codes: could not connect to host
+paulshir.com: could not connect to host
+paulshir.is: could not connect to host
paulyang.cn: did not receive HSTS header
-paveljanda.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+pause-canap.com: did not receive HSTS header
+pauspam.net: could not connect to host
+paveljanda.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
pavelkahouseforcisco.com: did not receive HSTS header
-pavelstriz.cz: could not connect to host
-pawfriends.org.za: did not receive HSTS header
-pawsru.org: could not connect to host
+pavio.org: did not receive HSTS header
+pawsomebox.co.uk: did not receive HSTS header
paxdei.com.br: could not connect to host
-paxwinkel.nl: could not connect to host
+paxwinkel.nl: did not receive HSTS header
pay.gigahost.dk: did not receive HSTS header
pay.ubuntu.com: could not connect to host
pay8522.com: could not connect to host
+paybook.co.tz: could not connect to host
payclixpayments.com: did not receive HSTS header
+paydigital.pt: 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
@@ -14222,92 +16715,112 @@ payments.google.com: did not receive HSTS header (error ignored - included regar
paymon.tj: could not connect to host
paypod.org: could not connect to host
payroll.ch: could not connect to host
+payrollhive.com: did not receive HSTS header
paytwopay.com: could not connect to host
+payzang.com: did not receive HSTS header
payzwin.com: did not receive HSTS header
pb-design.ch: could not connect to host
+pback.se: 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: could not connect to host
pbqs.site: could not connect to host
-pbreen.co.uk: did not receive HSTS header
+pbreen.co.uk: could not connect to host
pbscreens.com: could not connect to host
pbytes.com: could not connect to host
+pbz.pw: did not receive HSTS header
pc-nf.de: did not receive HSTS header
pc-tweak.de: did not receive HSTS header
+pc9865.com: max-age too low: 0
pcat.io: could not connect to host
pcbricole.fr: could not connect to host
+pcforum.sk: did not receive HSTS header
pcfun.net: did not receive HSTS header
pchax.net: could not connect to host
pchospital.cc: could not connect to host
-pcmedia.co.nz: max-age too low: 7889238
+pci-dss.hu: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+pcidss.hu: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+pcipac.com: did not receive HSTS header
+pcreparatiehardenberg.nl: did not receive HSTS header
pcvirusclear.com: could not connect to host
+pcw.gov.ph: could not connect to host
pdamsidoarjo.co.id: could not connect to host
pdevio.com: could not connect to host
pdf.yt: could not connect to host
+pdfsearch.org: could not connect to host
pdomo.me: did not receive HSTS header
-pdragt.com: could not connect to host
+pdthings.net: could not connect to host
pe-bank.co.jp: max-age too low: 604800
pe-kyousai.jp: did not receive HSTS header
peaceandwool.com: did not receive HSTS header
peakapp.nl: could not connect to host
-pearbloom.com: could not connect to host
pebblesdemo.com: could not connect to host
+peckcloths.com: did not receive HSTS header
pecot.fr: did not receive HSTS header
+pedidosfarma.com.br: could not connect to host
peekops.com: could not connect to host
peen.ch: could not connect to host
peerherrmann.de: could not connect to host
peerless.ae: did not receive HSTS header
-peinard.net: did not receive HSTS header
+pefricea.com: did not receive HSTS header
+pehapkari.cz: did not receive HSTS header
+peinard.net: could not connect to host
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]
+peissen.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+peka.pw: could not connect to host
pekkapikkarainen.fi: did not receive HSTS header
pekkarik.ru: could not connect to host
peliculasaudiolatinoonline.com: could not connect to host
peliculator.com: max-age too low: 0
-peliweb.com: did not receive HSTS header
+peliseries24.com: could not connect to host
+pelletizermill.com: did not receive HSTS header
pemagrid.org: could not connect to host
pemberton.at: did not receive HSTS header
penablog.com: did not receive HSTS header
pengisatelier.net: could not connect to host
pengui.uk: could not connect to host
penguinclientsystem.com: did not receive HSTS header
-pengumuman.id: could not connect to host
+pengumuman.id: did not receive HSTS header
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: did not receive HSTS header
people-mozilla.org: could not connect to host
-peoplerange.com: did not receive HSTS header
+peoplerange.com: could not connect to host
peoplesbankal.com: did not receive HSTS header
peperiot.com: did not receive HSTS header
+peppelmedi.fi: could not connect to host
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
+pepwaterproofing.com: did not receive HSTS header
per-pedes.at: did not receive HSTS header
+pera.gs: could not connect to host
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: could not connect to host
+perfectionunite.com: did not receive HSTS header
perfectseourl.com: did not receive HSTS header
+perfektesgewicht.com: could not connect to host
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
+perfumeaz.com: did not receive HSTS header
perfumista.vn: did not receive HSTS header
-periodismoactual.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+periodismoactual.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
periscopeliveweb.com: could not connect to host
-perlwork.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+perlwork.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
perm-jur.ch: could not connect to host
perm-juridique.ch: could not connect to host
permanence-juridique.com: could not connect to host
@@ -14317,8 +16830,10 @@ permiscoderoute.fr: did not receive HSTS header
pernatie.ru: could not connect to host
peromsik.com: did not receive HSTS header
perplex.nl: did not receive HSTS header
+perrau.lt: could not connect to host
perrone.co: could not connect to host
-perroud.pro: did not receive HSTS header
+perroud.pro: could not connect to host
+persiart.shop: could not connect to host
persjrp.ca: could not connect to host
persoform.ch: could not connect to host
personal-injury-attorney.co: could not connect to host
@@ -14330,10 +16845,12 @@ 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
-peruvianphotography.com: did not receive HSTS header
+perucasestoril.com.br: did not receive HSTS header
+peruvianphotography.com: could not connect to host
pestalozzishop.com.br: could not connect to host
+pestkill.info: could not connect to host
pesto.video: could not connect to host
-pesyun.cn: max-age too low: 3600
+pet-life.top: did not receive HSTS header
pet-nsk.ru: could not connect to host
petangen.se: could not connect to host
petchart.net: could not connect to host
@@ -14348,9 +16865,12 @@ 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: did not receive HSTS header
+petplum.com: could not connect to host
+petrachuk.ru: could not connect to host
petrkrapek.cz: could not connect to host
+petrostathis.com: could not connect to host
petrovsky.pro: could not connect to host
+petrpikora.com: did not receive HSTS header
petsittersservices.com: could not connect to host
pettsy.com: did not receive HSTS header
peuf.shop: could not connect to host
@@ -14359,25 +16879,33 @@ pewat.com: could not connect to host
pewboards.com: could not connect to host
pexieapp.com: did not receive HSTS header
peykezamin.ir: did not receive HSTS header
-peyote.org: could not connect to host
peytonfarrar.com: did not receive HSTS header
pfarchimedes-pensioen123.nl: could not connect to host
pferdeeinstreu-kaufen.com: did not receive HSTS header
pferdekauf.de: did not receive HSTS header
pfgshop.com.br: could not connect to host
-pflegedienst-gratia.de: max-age too low: 300
+pflegedienst-gratia.de: could not connect to host
+pflegesalon-siebke.de: could not connect to host
pfo.io: could not connect to host
pfolta.net: could not connect to host
+pfssales.com: did not receive HSTS header
pgcpbc.com: could not connect to host
pglandscapingpaving.com: did not receive HSTS header
+pglaum.tk: could not connect to host
pgmsource.com: could not connect to host
+pgp.guru: could not connect to host
pgpm.io: could not connect to host
pgtb.be: could not connect to host
-phalconist.com: could not connect to host
+phalconist.com: did not receive HSTS header
phantasie.cc: could not connect to host
-pharmgkb.org: could not connect to host
+pharmacyglobalrx.net: could not connect to host
+pharmafoto.ch: max-age too low: 0
+pharmaphoto.ch: max-age too low: 0
+pharmaquality.com: did not receive HSTS header
phasersec.com: did not receive HSTS header
+phattea.tk: could not connect to host
phcmembers.com: could not connect to host
+phdhub.it: could not connect to host
phdsupply.com: could not connect to host
phdwuda.com: could not connect to host
phenomeno-porto.com: did not receive HSTS header
@@ -14391,25 +16919,28 @@ philipkohn.com: did not receive HSTS header
philipmordue.co.uk: could not connect to host
philippa.cool: could not connect to host
philippbirkholz.com: could not connect to host
-philippinedroneassociation.org: did not receive HSTS header
phillippi.me: could not connect to host
phillmoore.com: did not receive HSTS header
-phillprice.com: did not receive HSTS header
+phillprice.com: could not connect to host
+phillyinjurylawyer.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-studie.org: could not connect to host
phishing.rs: could not connect to host
phligence.com: could not connect to host
+phocean.net: did not receive HSTS header
phoebe.co.nz: did not receive HSTS header
phoenicis.com.ua: did not receive HSTS header
phoenix.dj: did not receive HSTS header
-phoenixlogan.com: could not connect to host
phonenumberinfo.co.uk: could not connect to host
phongmay24h.com: could not connect to host
+phonix-company.fr: could not connect to host
phood.be: did not receive HSTS header
photek.fm: could not connect to host
photoblogverona.com: could not connect to host
photoboothpartyhire.co.uk: did not receive HSTS header
+photographersdaydream.com: could not connect to host
photographyforchange.com: could not connect to host
photographyforchange.org: could not connect to host
photon.sh: could not connect to host
@@ -14420,15 +16951,16 @@ 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]
+phpfashion.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
phpinfo.in.th: could not connect to host
phpkari.cz: could not connect to host
-phr34kz.pw: did not receive HSTS header
+phpunit.de: did not receive HSTS header
+phr34kz.pw: could not connect to host
phra.gs: could not connect to host
phrasing.me: could not connect to host
+phrazor.com: did not receive HSTS header
phrive.space: could not connect to host
phryanjr.com: could not connect to host
-phryneas.de: did not receive HSTS header
phumin.in.th: did not receive HSTS header
phunehehe.net: did not receive HSTS header
phuong.faith: could not connect to host
@@ -14445,11 +16977,13 @@ 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
+pickr.co: did not receive HSTS header
+picoauto.com: did not receive HSTS header
picone.com.au: could not connect to host
+picotech.com: did not receive HSTS header
picotronic.biz: could not connect to host
picotronic.de: did not receive HSTS header
-picsandtours.com: did not receive HSTS header
+picsandtours.com: could not connect to host
picscare.co.uk: could not connect to host
picshare.nz: could not connect to host
pidatacenters.com: did not receive HSTS header
@@ -14457,38 +16991,45 @@ pidomex.com: did not receive HSTS header
piedfeed.com: did not receive HSTS header
pieinsurance.com: did not receive HSTS header
piekacz.co.uk: could not connect to host
+pieland.eu: did not receive HSTS header
pieperhome.de: did not receive HSTS header
+piercing-store.com: did not receive HSTS header
pierrejeansuau.fr: could not connect to host
-pierreprinetti.com: did not receive HSTS header
pieterjangeeroms.me: could not connect to host
piggott.me.uk: did not receive HSTS header
pigritia.de: could not connect to host
-piils.fr: could not connect to host
-pikalongwar.com: did not receive HSTS header
+piils.fr: did not receive HSTS header
+pikalongwar.com: could not connect to host
+pikeitservices.com.au: did not receive HSTS header
pikmy.com: could not connect to host
pilgermaske.org: did not receive HSTS header
piligrimname.com: could not connect to host
+piliszek.net: could not connect to host
+pill.id: did not receive HSTS header
pillowandpepper.com: did not receive HSTS header
pilotcrowd.nl: did not receive HSTS header
+pimg136.com: could not connect to host
pimpmymac.ru: did not receive HSTS header
-pimpmypaper.com: could not connect to host
pims.global: did not receive HSTS header
pimspage.nl: could not connect to host
-pin.net.au: did not receive HSTS header
+pincha.com.tw: could not connect to host
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
+pinkhq.com: could not connect to host
pinkinked.com: could not connect to host
+pinkyf.com: could not connect to host
+pinnacle-tex.com: could not connect to host
+pinnaclelife.nz: could not connect to host
pinnacles.com: max-age too low: 0
pinner.io: could not connect to host
pinoylinux.org: did not receive HSTS header
pinscher.com.br: could not connect to host
pintoselectrician.co.za: did not receive HSTS header
pioche.ovh: did not receive HSTS header
+pipocao.com: did not receive HSTS header
pippen.io: could not connect to host
pips.rocks: could not connect to host
pir9.com: did not receive HSTS header
@@ -14506,37 +17047,42 @@ piratepay.ir: could not connect to host
pirateproxy.pe: could not connect to host
pirateproxy.sx: did not receive HSTS header
pirateproxy.vip: could not connect to host
-pirati.cz: max-age too low: 604800
+pirates.click: did not receive HSTS header
+pirati.cz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
piratte.net: did not receive HSTS header
-pirganj24.com: could not connect to host
+pirganj24.com: did not receive HSTS header
pirlitu.com: did not receive HSTS header
+pirman.es: could not connect to host
pisexy.me: did not receive HSTS header
pisidia.de: could not connect to host
+pitchpinecapital.com: could not connect to host
pitonarms.com: could not connect to host
pitsstop.nu: could not connect to host
pittaya.com: did not receive HSTS header
+pittmancentertn.gov: could not connect to host
+pittmantraffic.co.uk: did not receive HSTS header
pittonpreschool.com: did not receive HSTS header
pix-geeks.com: max-age too low: 2592000
+pixabay.com: did not receive HSTS header
pixdigital.net: did not receive HSTS header
pixeame.com: could not connect to host
pixel.google.com: did not receive HSTS header (error ignored - included regardless)
pixelcode.com.au: could not connect to host
+pixelcubed.com: could not connect to host
pixelesque.uk: could not connect to host
pixelfou.com: could not connect to host
pixelgliders.de: could not connect to host
pixelhero.co.uk: did not receive HSTS header
-pixelpoint.io: did not receive HSTS header
pixelrain.info: could not connect to host
pixi.chat: could not connect to host
-pixi.me: did not receive HSTS header
-pixiv.rip: could not connect to host
-pixivimg.me: could not connect to host
+pixi.me: could not connect to host
+pixiv.rip: did not receive HSTS header
+pixlfox.com: could not connect to host
pizala.de: could not connect to host
pizzabottle.com: did not receive HSTS header
pizzacook.ch: did not receive HSTS header
pizzadoc.ch: could not connect to host
pizzafunny.com.br: could not connect to host
-pizzamc.eu: could not connect to host
pj00100.com: could not connect to host
pj00200.com: did not receive HSTS header
pj00300.com: did not receive HSTS header
@@ -14546,71 +17092,81 @@ pj00700.com: did not receive HSTS header
pj00800.com: did not receive HSTS header
pj009.com: could not connect to host
pj00900.com: did not receive HSTS header
-pj02.com: could not connect to host
-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]
+pj539999.com: could not connect to host
+pj83.duckdns.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
pj881988.com: could not connect to host
pjbet.mg: could not connect to host
pjili.com: did not receive HSTS header
+pjo.no: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
pjsec.tk: could not connect to host
pkautodesign.com: did not receive HSTS header
pkbjateng.com: could not connect to host
-pko.ch: did not receive HSTS header
+pkbjateng.or.id: could not connect to host
pkschat.com: could not connect to host
plaasprodukte.com: could not connect to host
placassinal.com.br: did not receive HSTS header
-placebet.pro: 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: could not connect to host
plakbak.nl: could not connect to host
planbox.info: could not connect to host
planeexplanation.com: could not connect to host
+planet-laas.de: did not receive HSTS header
planetbeauty.com: did not receive HSTS header
+planete-cocoon.com: did not receive HSTS header
planete-secu.com: could not connect to host
-planetromeo.com: could not connect to host
planformation.com: did not receive HSTS header
planktonholland.com: did not receive HSTS header
+planktonholland.nl: did not receive HSTS header
+planningexcellence.com.au: max-age too low: 86400
+planolowcarb.com: could not connect to host
planpharmacy.com: could not connect to host
plant.ml: could not connect to host
+plantdaddie.com: did not receive HSTS header
+plaros.ml: could not connect to host
plass.hamburg: could not connect to host
plasti-pac.ch: did not receive HSTS header
-plasticsurgeryartist.com: max-age too low: 300
plastiflex.it: could not connect to host
plasvilledescartaveis.com.br: could not connect to host
platform.lookout.com: could not connect to host
platinumpeek.com: did not receive HSTS header
+platnicyvat.pl: could not connect to host
platomania.eu: did not receive HSTS header
+platschi.net: did not receive HSTS header
plattner.club: 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
+playerscout.net: could not connect to host
playflick.com: did not receive HSTS header
playhappywheelsunblocked.com: could not connect to host
playkh.com: did not receive HSTS header
playkinder.com: did not receive HSTS header
-playmaker.io: did not receive HSTS header
+playmaker.io: could not connect to host
playmaza.live: could not connect to host
+playmei.com: did not receive HSTS header
playmfe.com: could not connect to host
+playpirates.com: could not connect to host
+playsoundevents.be: did not receive HSTS header
playsource.co: could not connect to host
playwhyyza.com: could not connect to host
playyou.be: could not connect to host
please-deny.me: could not connect to host
pleaseuseansnisupportedbrowser.ml: could not connect to host
pleasure.forsale: could not connect to host
+pleiades.com.tr: did not receive HSTS header
plen.io: could not connect to host
-plexi.dyndns.tv: could not connect to host
+plexi.dyndns.tv: did not receive HSTS header
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
+plinc.co: did not receive HSTS header
+plirt.ru: did not receive HSTS header
plogable.co: could not connect to host
-plomberierenga.com: max-age too low: 2592000
plombirator.kz: did not receive HSTS header
plothost.com: did not receive HSTS header
ploup.net: could not connect to host
@@ -14619,6 +17175,7 @@ plugboard.xyz: could not connect to host
pluggedhead.com: did not receive HSTS header
plumbingboksburg.co.za: did not receive HSTS header
plumbingman.com.au: did not receive HSTS header
+plumplat.com: could not connect to host
plus-digital.net: could not connect to host
plus-u.com.au: did not receive HSTS header
plus.sandbox.google.com: did not receive HSTS header (error ignored - included regardless)
@@ -14627,117 +17184,217 @@ 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
-pluta.net: did not receive HSTS header
-pluth.org: could not connect to host
+plutonx.com: did not receive HSTS header
plymouthglassgallery.com: did not receive HSTS header
-plymouthsoftplay.co.uk: could not connect to host
+plymouthsoftplay.co.uk: did not receive HSTS header
+plzenskybarcamp.cz: did not receive HSTS header
pm13-media.cz: could not connect to host
+pma-iss.com: could not connect to host
pmac.pt: could not connect to host
-pmbremer.de: did not receive HSTS header
+pmbremer.de: could not connect to host
pmbtf.com: could not connect to host
+pmconference.ch: did not receive HSTS header
pmctire.com: did not receive HSTS header
pmemanager.fr: did not receive HSTS header
pmessage.ch: could not connect to host
pmheart.site: could not connect to host
pmnts.io: could not connect to host
pmponline.de: did not receive HSTS header
+pmsacorp.com: did not receive HSTS header
+pmsfdev.com: could not connect to host
+pnakosoft.com: could not connect to host
+pnakosoft.com.au: could not connect to host
pneumonline.be: did not receive HSTS header
pneusgppremium.com.br: did not receive HSTS header
-pnoec.org.do: could not connect to host
-pnukee.com: did not receive HSTS header
-po.gl: could not connect to host
-poc060.com: did not receive HSTS header
-poc080.com: did not receive HSTS header
-poc100.com: did not receive HSTS header
-poc109.com: did not receive HSTS header
-poc11.com: did not receive HSTS header
-poc116.com: did not receive HSTS header
-poc118.com: did not receive HSTS header
-poc119.com: did not receive HSTS header
-poc120.com: did not receive HSTS header
-poc128.com: did not receive HSTS header
-poc13.com: did not receive HSTS header
-poc15.com: did not receive HSTS header
-poc16.com: did not receive HSTS header
+pnmhomecheckup.com: max-age too low: 1000
+pnukee.com: could not connect to host
+poc.xn--fiqs8s: could not connect to host
+poc060.com: could not connect to host
+poc080.com: could not connect to host
+poc090.com: could not connect to host
+poc100.com: could not connect to host
+poc109.com: could not connect to host
+poc11.com: could not connect to host
+poc116.com: could not connect to host
+poc118.com: could not connect to host
+poc119.com: could not connect to host
+poc120.com: could not connect to host
+poc128.com: could not connect to host
+poc13.com: could not connect to host
+poc15.com: could not connect to host
+poc16.com: could not connect to host
poc17.com: could not connect to host
-poc18.com: did not receive HSTS header
-poc19.com: did not receive HSTS header
-poc21.com: did not receive HSTS header
-poc211.com: did not receive HSTS header
-poc226.com: did not receive HSTS header
-poc228.com: did not receive HSTS header
+poc18.com: could not connect to host
+poc19.com: could not connect to host
+poc21.com: could not connect to host
+poc211.com: could not connect to host
+poc22.com: could not connect to host
+poc226.com: could not connect to host
+poc228.com: could not connect to host
+poc23.com: could not connect to host
+poc25.com: could not connect to host
+poc26.com: could not connect to host
+poc261.com: could not connect to host
+poc262.com: could not connect to host
+poc27.com: could not connect to host
+poc290.com: could not connect to host
+poc298.com: could not connect to host
+poc31.com: could not connect to host
+poc32.com: could not connect to host
+poc33.com: could not connect to host
+poc35.com: could not connect to host
+poc36.com: could not connect to host
+poc37.com: could not connect to host
+poc38.com: could not connect to host
+poc51.com: could not connect to host
+poc518.com: could not connect to host
+poc52.com: could not connect to host
+poc53.com: could not connect to host
+poc55.com: could not connect to host
+poc56.com: could not connect to host
+poc568.com: could not connect to host
+poc57.com: could not connect to host
+poc58.com: could not connect to host
+poc586.com: could not connect to host
+poc588.com: could not connect to host
+poc59.com: could not connect to host
+poc601.com: could not connect to host
+poc618.com: could not connect to host
+poc63.com: could not connect to host
+poc65.com: could not connect to host
+poc66.com: could not connect to host
+poc661.com: could not connect to host
+poc663.com: could not connect to host
+poc665.com: could not connect to host
+poc668.com: could not connect to host
+poc669.com: could not connect to host
+poc67.com: could not connect to host
+poc68.com: could not connect to host
+poc69.com: could not connect to host
+poc699.com: could not connect to host
+poc7.com: could not connect to host
+poc71.com: could not connect to host
+poc718.com: could not connect to host
+poc72.com: could not connect to host
+poc75.com: could not connect to host
+poc76.com: could not connect to host
+poc768.com: could not connect to host
+poc77.com: could not connect to host
+poc771.com: could not connect to host
+poc772.com: could not connect to host
+poc773.com: could not connect to host
+poc779.com: could not connect to host
+poc78.com: could not connect to host
+poc79.com: could not connect to host
+poc8.com: could not connect to host
+poc816.com: could not connect to host
+poc86.com: could not connect to host
+poc866.com: could not connect to host
+poc88.com: could not connect to host
+poc88.vip: could not connect to host
+poc8811.com: could not connect to host
+poc882.com: could not connect to host
+poc8822.com: could not connect to host
+poc883.com: could not connect to host
+poc8833.com: could not connect to host
+poc885.com: could not connect to host
+poc8855.com: could not connect to host
+poc886.com: could not connect to host
+poc8866.com: could not connect to host
+poc887.com: could not connect to host
+poc8877.com: could not connect to host
+poc888.com: could not connect to host
+poc889.com: could not connect to host
+poc8899.com: could not connect to host
+poc89.com: could not connect to host
+poc899.com: could not connect to host
+poc916.com: could not connect to host
+poc918.com: could not connect to host
+poc965.com: could not connect to host
+poc98.com: could not connect to host
+poc99.com: could not connect to host
+poc992.com: could not connect to host
+poc993.com: could not connect to host
+poc995.com: could not connect to host
+poc996.com: could not connect to host
+poc997.com: could not connect to host
+poc998.com: could not connect to host
pocakdrops.com: could not connect to host
pocakking.tk: could not connect to host
pocket-lint.com: did not receive HSTS header
pocketfullofapps.com: did not receive HSTS header
-pocketinsure.com: could not connect to host
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
+pocpok.com: could not connect to host
+pocqipai.com: could not connect to host
+pocze.ch: did not receive HSTS header
podcast.style: could not connect to host
-podemos.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]
podiumsdiskussion.org: did not receive HSTS header
-poed.com.au: could not connect to host
-poedgirl.com: could not connect to host
+podo-podo.com: could not connect to host
+poedgirl.com: did not receive HSTS header
poeg.cz: did not receive HSTS header
-pogoswine.com: could not connect to host
+poezjagala.pl: could not connect to host
+pogetback.pl: could not connect to host
pogs.us: could not connect to host
-poiema.com.sg: did not receive HSTS header
poinsot.beer: could not connect to host
pointeringles.com: could not connect to host
-pointiswunderland.de: did not receive HSTS header
pointpro.de: did not receive HSTS header
points4unitedway.com: could not connect to host
pointworksacademy.com: could not connect to host
pokalsocial.de: could not connect to host
pokeduel.me: did not receive HSTS header
+pokerslab.com: could not connect to host
pokomichi.com: did not receive HSTS header
pol-expo.ru: could not connect to host
pol.in.th: could not connect to host
polandb2b.directory: could not connect to host
+polar.uk.com: did not receive HSTS header
polarityschule.com: did not receive HSTS header
-pole.net.nz: could not connect to host
+pole.net.nz: did not receive HSTS header
poleartschool.com: could not connect to host
polen.guide: could not connect to host
policeiwitness.sg: could not connect to host
polimat.org: could not connect to host
-polish-translations.com: could not connect to host
polish.directory: could not connect to host
polit-it.pro: could not connect to host
politeiaudesa.org: max-age too low: 2592000
politically-incorrect.xyz: could not connect to host
politiewervingshop.nl: did not receive HSTS header
politologos.org: could not connect to host
+pollet-ghijs.be: could not connect to host
+pollet-ghys.be: could not connect to host
pollpodium.nl: could not connect to host
+polly.spdns.org: could not connect to host
poloniex.co.za: did not receive HSTS header
polsport.live: did not receive HSTS header
-polycoise.com: could not connect to host
polycrypt.us: could not connect to host
polyfill.io: did not receive HSTS header
+polymorph.rs: could not connect to host
polypho.nyc: could not connect to host
polysage.org: did not receive HSTS header
polytechecosystem.vc: could not connect to host
-pomardaserra.com: could not connect to host
-pomelo-paradigm.com: did not receive HSTS header
+pomardaserra.com: did not receive HSTS header
pomozmruczkom.pl: could not connect to host
pompefunebrilariviera.it: could not connect to host
-pompompoes.com: did not receive HSTS header
+pompompoes.com: could not connect to host
pondof.fish: could not connect to host
+poneytelecom.org: could not connect to host
+ponio.xyz: 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
-ponxel.com: could not connect to host
pony.today: could not connect to host
ponythread.com: did not receive HSTS header
ponzi.life: could not connect to host
+poochingaround.co.uk: did not receive HSTS header
poolinstallers.co.za: could not connect to host
poolsandstuff.com: did not receive HSTS header
poolspondsandwaterscapes.com: could not connect to host
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
@@ -14745,87 +17402,82 @@ popkins.gq: 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
+poris.web.id: did not receive HSTS header
pormat.cl: did not receive HSTS header
-porn77.info: could not connect to host
-pornalpha.com: could not connect to host
-pornbay.org: could not connect to host
pornblog.org: could not connect to host
porncandi.com: could not connect to host
-porncompanions.com: could not connect to host
-pornimg.net: could not connect to host
-pornless.biz: could not connect to host
-pornmax.net: could not connect to host
-porno-gif.ru: could not connect to host
-pornohub.su: could not connect to host
-pornolab-net.appspot.com: could not connect to host
-pornoserver.eu: could not connect to host
-pornport.org: could not connect to host
-pornsocket.com: could not connect to host
-pornspider.to: could not connect to host
+porniwi.com: could not connect to host
+pornofilme.top: could not connect to host
+pornskyhub.com: could not connect to host
pornstars.me: did not receive HSTS header
-pornteddy.com: could not connect to host
-pornultra.net: could not connect to host
porschen.fr: could not connect to host
port.im: did not receive HSTS header
port.social: could not connect to host
portablebuildingsales.co.uk: did not receive HSTS header
portablespeakersfinder.com: could not connect to host
portalcarapicuiba.com: did not receive HSTS header
-portale-randkowe.pl: did not receive HSTS header
+portalcentric.net: could not connect to host
+portale-randkowe.pl: could not connect to host
portalhubnuti.cz: did not receive HSTS header
portalisapres.cl: could not connect to host
portalkla.com.br: did not receive HSTS header
portalm.tk: could not connect to host
portalmundo.xyz: could not connect to host
portalplatform.net: could not connect to host
-portaluniversalista.org: did not receive HSTS header
-portalveneza.com.br: could not connect to host
+portaluniversalista.org: could not connect to host
+portalveneza.com.br: did not receive HSTS header
portalzine.de: did not receive HSTS header
-portefeuillesignalen.nl: could not connect to host
portraitsystem.biz: did not receive HSTS header
portsmoutheic.com: could not connect to host
-poschtiliste.ch: could not connect to host
+portvincentcaravanpark.com.au: did not receive HSTS header
+poshbeyond.com: did not receive HSTS header
poshpak.com: max-age too low: 86400
posijson.stream: could not connect to host
+positivenames.net: could not connect to host
positivesobrietyinstitute.com: did not receive HSTS header
-postback.io: did not receive HSTS header
+posoiu.net: could not connect to host
+post.we.bs: did not receive HSTS header
+postback.io: could not connect to host
postcardpayment.com: could not connect to host
postcodegarant.nl: could not connect to host
posters.win: could not connect to host
postscheduler.org: could not connect to host
+postura-corretta.it: did not receive HSTS header
posylka.de: did not receive HSTS header
potatoheads.net: could not connect to host
-potbar.com: could not connect to host
-potbox.com: could not connect to host
+potbox.com: did not receive HSTS header
potenzmittelblog.info: could not connect to host
potenzprobleme-info.net: did not receive HSTS header
potlytics.com: could not connect to host
potomania.cz: could not connect to host
potpourrifestival.de: did not receive HSTS header
potsky.com: did not receive HSTS header
-pottreid.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]
+pottreid.com: could not connect to host
+pouet.it: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
pouets.ovh: could not connect to host
poupatempo.org: did not receive HSTS header
-pour-la-culture-aulnay.fr: could not connect to host
+pour-la-culture-aulnay.fr: did not receive HSTS header
pourmesloisirs.com: could not connect to host
+pourmoi.co.uk: did not receive HSTS header
pourout.org: did not receive HSTS header
poussinooz.fr: could not connect to host
povitria.net: could not connect to host
-powaclub.com: max-age too low: 86400
+powdersnow.top: did not receive HSTS header
power-coonies.de: could not connect to host
+power-fit.org: did not receive HSTS header
power-l.ch: did not receive HSTS header
power-meter.cc: did not receive HSTS header
power-of-interest.com: could not connect to host
+power-tools24.com: could not connect to host
power99press.com: could not connect to host
-powerb.ch: did not receive HSTS header
powerdent.net.br: could not connect to host
poweredbypurdy.com: did not receive HSTS header
powerentertainment.tv: could not connect to host
+powermatic7.com: max-age too low: 7889238
poweroff.win: could not connect to host
powerplannerapp.com: could not connect to host
-powerplaywashers.com: did not receive HSTS header
+powerplaywashers.com: could not connect to host
+powerserg.org: could not connect to host
powersergdatasystems.tk: could not connect to host
powersergthisisthewebsitefuckyouchris.com: could not connect to host
powersergunited.com: could not connect to host
@@ -14835,19 +17487,24 @@ powershellmagic.com: could not connect to host
powershift.ne.jp: did not receive HSTS header
powertothebuilder.com: could not connect to host
powerxequality.com: did not receive HSTS header
-poy-tech.com: 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
+pozytywnyplan.pl: did not receive HSTS header
pozzitiv.ro: could not connect to host
-pozzo-balbi.com: did not receive HSTS header
+pozzo-balbi.com: could not connect to host
+pp6957.com: could not connect to host
ppembed.com: did not receive HSTS header
-ppoou.co.uk: could not connect to host
+ppiproperties.com: did not receive HSTS header
pppo.gov: could not connect to host
ppr-truby.ru: could not connect to host
ppsvcs2.com: did not receive HSTS header
ppuu.org: could not connect to host
-ppy3.com: did not receive HSTS header
+ppwancai.com: max-age too low: 0
+ppy3.com: could not connect to host
+pqscript.com: could not connect to host
+pr3-space-staging.ga: could not connect to host
+pr3.space: could not connect to host
practodev.com: could not connect to host
prajwalkoirala.com: could not connect to host
pratinav.xyz: could not connect to host
@@ -14855,8 +17512,10 @@ prattpokemon.com: could not connect to host
praxis-research.info: could not connect to host
prazeresdavida.com.br: could not connect to host
prazynka.pl: did not receive HSTS header
-prc-newmedia.com: max-age too low: 0
+pre-lean-consulting.de: did not receive HSTS header
precedecaritas.com.br: could not connect to host
+preciosde.es: did not receive HSTS header
+precision.st: 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
@@ -14868,11 +17527,11 @@ pregono.com: did not receive HSTS header
preio.cn: could not connect to host
prekladysanca.cz: could not connect to host
prelist.org: did not receive HSTS header
-premaritalsex.info: could not connect to host
-premioambiente.it: did not receive HSTS header
-premiumweb.co.id: could not connect to host
-premiumzweirad.de: max-age too low: 7776000
-prepaidgirl.com: could not connect to host
+prelogica.com.br: could not connect to host
+premaritalsex.info: did not receive HSTS header
+prematureacceleration.club: could not connect to host
+premieravenue.net: did not receive HSTS header
+premiumwebdesign.it: could not connect to host
prepandgo-euro.com: could not connect to host
preposted.com: could not connect to host
preppertactics.com: could not connect to host
@@ -14880,52 +17539,60 @@ preprodfan.gov: could not connect to host
prescriptionrex.com: could not connect to host
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: max-age too low: 0
+press-anime-nenkan.com: could not connect to host
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
+prestigesigns.net: did not receive HSTS header
+pretrialservices.gov: did not receive HSTS header
prettygrouse.com: did not receive HSTS header
+prettynode.com: could not connect to host
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
+preventshare.com: could not connect to host
preworkout.me: could not connect to host
prgslab.net: could not connect to host
priceholic.com: could not connect to host
-prideindomination.com: could not connect to host
+pridetechdesign.com: did not receive HSTS header
pridoc.se: did not receive HSTS header
prifo.se: could not connect to host
-prijsvergelijken.ml: could not connect to host
+prijsvergelijken.ml: did not receive HSTS header
prilock.com: did not receive HSTS header
primecaplending.com: could not connect to host
-primewho.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
primordialsnooze.com: could not connect to host
primotiles.co.uk: could not connect to host
-primotilesandbathrooms.co.uk: max-age too low: 2592000
prinbanat.ngo: did not receive HSTS header
princeagency.com: did not receive HSTS header
+princeofwhales.com: did not receive HSTS header
princepessa.de: did not receive HSTS header
princesparktouch.com: did not receive HSTS header
princessbackpack.de: could not connect to host
princessmargaretlotto.com: did not receive HSTS header
principalship.net: could not connect to host
+principalstest.ph: could not connect to host
principalstest.review: could not connect to host
-prinesdoma.at: did not receive HSTS header
printerest.io: could not connect to host
printersonline.be: could not connect to host
printery.be: could not connect to host
printexpress.cloud: could not connect to host
+printf.de: did not receive HSTS header
priolkar.com: could not connect to host
+prior-it.be: could not connect to host
prism-communication.com: could not connect to host
-pristineevents.co.uk: did not receive HSTS header
+prismacloud.xyz: could not connect to host
+pristineevents.co.uk: could not connect to host
+pritalk.com: could not connect to host
pritchett.xyz: could not connect to host
+privacybydesign.foundation: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
privacylabs.io: could not connect to host
privacymanatee.com: could not connect to host
privacyrup.net: could not connect to host
privategiant.com: could not connect to host
+privatewolke.com: did not receive HSTS header
privatstunden.express: could not connect to host
privcloud.cc: could not connect to host
privcloud.org: could not connect to host
@@ -14935,9 +17602,11 @@ privytime.com: could not connect to host
prknje.com: did not receive HSTS header
prmte.com: could not connect to host
prnt.li: did not receive HSTS header
-pro-esb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+pro-ben.sk: did not receive HSTS header
+pro-esb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
pro-esb.net: could not connect to host
pro-image.de: did not receive HSTS header
+pro-link.eu: 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
@@ -14945,25 +17614,26 @@ procens.us: could not connect to host
proclubs.news: did not receive HSTS header
procode.gq: could not connect to host
procrastinatingengineer.co.uk: could not connect to host
+prodegree.com: could not connect to host
prodottogiusto.com: could not connect to host
prodpad.com: did not receive HSTS header
-produccioneskm.cl: did not receive HSTS header
productgap.com: did not receive HSTS header
-productived.net: did not receive HSTS header
producto8.com: did not receive HSTS header
productoinnovador.com: did not receive HSTS header
-proesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+proesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
proesb.net: could not connect to host
+professional.cleaning: could not connect to host
+professionalboundaries.com: did not receive HSTS header
+profhome-shop.com: did not receive HSTS header
profi-durchgangsmelder.de: did not receive HSTS header
profinetz.de: could not connect to host
profivps.com: could not connect to host
-proformer.io: could not connect to host
profpay.com: could not connect to host
profundr.com: could not connect to host
profusion.io: could not connect to host
-progblog.net: max-age too low: 0
progolfjourney.com: could not connect to host
program-and.work: could not connect to host
+programlama.tk: could not connect to host
programmingstudent.com: could not connect to host
progress-technologies.com: could not connect to host
progressivecfo.co.nz: could not connect to host
@@ -14972,34 +17642,33 @@ 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: did not receive HSTS header
project-stats.com: could not connect to host
projectascension.io: could not connect to host
projectasterk.com: could not connect to host
-projectblackbook.us: did not receive HSTS header
+projectblackbook.us: could not connect to host
projectcastle.tech: did not receive HSTS header
-projectdp.net: did not receive HSTS header
+projectdp.net: could not connect to host
projectgrimoire.com: did not receive HSTS header
projectherogames.xyz: could not connect to host
projectl1b1t1na.tk: could not connect to host
projectmercury.space: did not receive HSTS header
projectte.ch: could not connect to host
-projectvault.ovh: did not receive HSTS header
+projectunity.io: could not connect to host
projectx.top: could not connect to host
projekt-umbriel.de: could not connect to host
projektik.cz: did not receive HSTS header
projetoresecia.com: could not connect to host
-prok.pw: did not receive HSTS header
-prokop.ovh: did not receive HSTS header
-promarketer.net: did not receive HSTS header
+prok.pw: could not connect to host
+prokop.ovh: could not connect to host
+promarketer.net: could not connect to host
promecon-gmbh.de: did not receive HSTS header
-promedicalapplications.com: did not receive HSTS header
+promedicalapplications.com: could not connect to host
promesa.net: did not receive HSTS header
promhadan.com: could not connect to host
promocao.email: could not connect to host
promohunt.ru: did not receive HSTS header
pronostic-king.fr: could not connect to host
-prontocleaners.co.uk: could not connect to host
prontolight.com: did not receive HSTS header
prontomovers.co.uk: could not connect to host
proobec.cz: did not receive HSTS header
@@ -15008,22 +17677,30 @@ propagandism.org: did not receive HSTS header
propepper.net: did not receive HSTS header
properchels.com: did not receive HSTS header
propershave.com: could not connect to host
+prophiler.de: did not receive HSTS header
proplan.co.il: did not receive HSTS header
propmag.co: could not connect to host
prosenseit.com: did not receive HSTS header
prosharp.com.au: could not connect to host
proslimdiets.com: could not connect to host
prosocialmachines.com: could not connect to host
-prosperident.com: did not receive HSTS header
-prostoporno.net: could not connect to host
-prostoporno.sexy: could not connect to host
+prostecheat.xyz: could not connect to host
+prostoporno.net: did not receive HSTS header
+prostoporno.sexy: did not receive HSTS header
+prostoporno.video: did not receive HSTS header
+prostoporno.vip: did not receive HSTS header
proteapower.co.za: could not connect to host
protecciondelconsumidor.gov: did not receive HSTS header
+protech.ge: did not receive HSTS header
+proteinnuts.cz: could not connect to host
+proteinnuts.sk: could not connect to host
proto-online.ru: did not receive HSTS header
protonmail.ch: did not receive HSTS header
-providerlijst.ml: could not connect to host
-provisionaldriving.com: did not receive HSTS header
-provisionircd.tk: did not receive HSTS header
+provectus.de: did not receive HSTS header
+providencecmc.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+providerlijst.ml: did not receive HSTS header
+provisionaldriving.com: could not connect to host
+provisionircd.tk: could not connect to host
provitacare.com: did not receive HSTS header
provokator.co.il: did not receive HSTS header
proweser.de: did not receive HSTS header
@@ -15040,24 +17717,27 @@ proxydesk.net: could not connect to host
proxyowl.pw: could not connect to host
proxyportal.me: could not connect to host
proxyportal.net: could not connect to host
-proxyportal.org: did not receive HSTS header
proxyrox.com: could not connect to host
proxyweb.us: did not receive HSTS header
-proyecto13.com: did not receive HSTS header
proymaganadera.com: did not receive HSTS header
+prplz.io: did not receive HSTS header
+prpr.cloud: could not connect to host
prpsss.com: did not receive HSTS header
prstatic.com: could not connect to host
pruikshop.nl: could not connect to host
+pruma.com.br: could not connect to host
prxio.date: could not connect to host
prxio.site: could not connect to host
ps-qa.com: did not receive HSTS header
ps-w.ru: did not receive HSTS header
ps-x.ru: could not connect to host
+ps4all.nl: could not connect to host
+psa.gov: did not receive HSTS header
+psb.cloud: could not connect to host
pscleaningsolutions.co.uk: could not connect to host
-pseudo.coffee: did not receive HSTS header
+psicoexpansao.com.br: could not connect to host
psicologia.co.ve: could not connect to host
psicologoforensebarcelona.com: did not receive HSTS header
-psicometricas.mx: did not receive HSTS header
psicosalud.online: could not connect to host
psncardplus.be: could not connect to host
psncardplus.com: could not connect to host
@@ -15065,31 +17745,39 @@ psncardplus.dk: could not connect to host
psncardplus.nl: could not connect to host
psncardplus.se: could not connect to host
pson.ninja: could not connect to host
+pste.pw: did not receive HSTS header
pstrozniak.com: could not connect to host
pstudio.me: max-age too low: 0
psw.academy: could not connect to host
psw.consulting: could not connect to host
psxtr.com: could not connect to host
psychiatrie-betreuung.ch: could not connect to host
+psycho-lobby.fr: could not connect to host
+psycho.space: could not connect to host
psychologie-hofner.at: could not connect to host
+psydix.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+psylab.cc: did not receive HSTS header
+psylab.re: did not receive HSTS header
+psylab.vip: did not receive HSTS header
psynapse.net.au: could not connect to host
pthsec.com: could not connect to host
ptn.moscow: could not connect to host
ptonet.com: could not connect to host
+ptr.kr: could not connect to host
ptrujillo.com: did not receive HSTS header
pub-online.ro: could not connect to host
pubkey.is: could not connect to host
-publications.qld.gov.au: did not receive HSTS header
publicidadnovagrass.com.mx: could not connect to host
publicinquiry.eu: did not receive HSTS header
publick.net: did not receive HSTS header
+publicrea.com: could not connect to host
publicspeakingcamps.com: could not connect to host
publimepa.it: could not connect to host
+publiq.space: could not connect to host
publishingshack.com: did not receive HSTS header
puchunguis.com: did not receive HSTS header
-puentes.info: did not receive HSTS header
-puestifiestas.mx: did not receive HSTS header
-puestosdeferia.mx: did not receive HSTS header
+puentes.info: could not connect to host
+puertasautomaticasgi.com: did not receive HSTS header
puetter.eu: could not connect to host
pugilares.com.pl: could not connect to host
pugliese.fr: could not connect to host
@@ -15108,38 +17796,45 @@ punchr-kamikazee.rhcloud.com: could not connect to host
punkdns.top: could not connect to host
puntacanalink.com: could not connect to host
puppydns.com: did not receive HSTS header
+puq.moe: could not connect to host
purahealthyliving.com: did not receive HSTS header
purbd.com: did not receive HSTS header
-pureessentialoil.biz: max-age too low: 300
pureholisticliving.me: could not connect to host
+purelunch.co.uk: could not connect to host
pureluxemedical.com: did not receive HSTS header
purewebmasters.com: could not connect to host
purikore.com: could not connect to host
purplehippie.in: did not receive HSTS header
+purplez.pw: could not connect to host
purpoz.com.br: could not connect to host
purpspc.com: could not connect to host
-purrfectcams.com: could not connect to host
+purrfect-box.co.uk: did not receive HSTS header
+pusatinkubatorbayi.com: did not receive HSTS header
push.world: did not receive HSTS header
pushapp.org: did not receive HSTS header
-pushers.com.mx: could not connect to host
pushphp.com: could not connect to host
pushstar.com: max-age too low: 0
pusichatka.ddns.net: could not connect to host
+pussr.com: did not receive HSTS header
+puttymonos.club: could not connect to host
puzz.gg: could not connect to host
+puzz.me: could not connect to host
pvagner.tk: did not receive HSTS header
pwd.ovh: could not connect to host
pwfrance.com: could not connect to host
pwi.agency: did not receive HSTS header
pwm.jp: could not connect to host
+pwnedpass.tk: could not connect to host
pwnsdx.pw: did not receive HSTS header
pwntr.com: did not receive HSTS header
pwt.pw: could not connect to host
pxio.de: did not receive HSTS header
+pycycle.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
pyjiaoyi.cf: could not connect to host
pyol.org: could not connect to host
pypi-mirrors.org: could not connect to host
pypi-status.org: could not connect to host
-pyplo.org: could not connect to host
+pyplo.org: did not receive HSTS header
pypt.lt: did not receive HSTS header
pyrrhonism.org: did not receive HSTS header
pythia.nz: could not connect to host
@@ -15150,13 +17845,18 @@ pzme.me: could not connect to host
q-rickroll-u.pw: could not connect to host
q-tr.com: did not receive HSTS header
q123123.com: did not receive HSTS header
+q1q2q3.tk: could not connect to host
q2.si: did not receive HSTS header
+q4profiles-france.com: did not receive HSTS header
q5118.com: could not connect to host
+q6957.com: could not connect to host
q8mp3.me: did not receive HSTS header
+qabalah.jp: could not connect to host
qadmium.tk: could not connect to host
qamrulhaque.com: did not receive HSTS header
qapital.com: did not receive HSTS header
qazcloud.com: could not connect to host
+qbeing.info: did not receive HSTS header
qbik.de: did not receive HSTS header
qbin.io: did not receive HSTS header
qbnt.ca: could not connect to host
@@ -15164,11 +17864,12 @@ qc.immo: 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
+qforum.org: did not receive HSTS header
qi0.de: did not receive HSTS header
-qiannews.net: could not connect to host
+qiannews.net: did not receive HSTS header
+qicomidadeverdade.com.br: could not connect to host
qifu.org.cn: could not connect to host
-qimiao.io: did not receive HSTS header
+qimiao.io: could not connect to host
qingcao.org: could not connect to host
qingpat.com: could not connect to host
qingxuan.info: did not receive HSTS header
@@ -15177,36 +17878,45 @@ qionglu.pw: could not connect to host
qipp.com: did not receive HSTS header
qirinus.com: did not receive HSTS header
qiu521119.host: did not receive HSTS header
+qiukong.com: did not receive HSTS header
qiuxian.ddns.net: could not connect to host
+qiwi.be: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
qixxit.de: did not receive HSTS header
+qklshequ.com: could not connect to host
qkzy.net: did not receive HSTS header
qldconservation.org: could not connect to host
+qledtech.com: did not receive HSTS header
qnatek.org: could not connect to host
+qnq.moe: could not connect to host
qonqa.de: did not receive HSTS header
qoohoot.com: did not receive HSTS header
qop.io: did not receive HSTS header
-qoqo.us: did not receive HSTS header
+qoqo.us: could not connect to host
qorm.co.uk: could not connect to host
-qq52o.me: did not receive HSTS header
+qq6957.com: could not connect to host
+qq885.com: could not connect to host
qqj.net: could not connect to host
qqq.gg: could not connect to host
-qqvips.com: could not connect to host
+qqvips.com: did not receive HSTS header
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: could not connect to host
+qtacairsoft.com: did not receive HSTS header
+qtap.me: could not connect to host
qto.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
+qualityedgarsolutions.com: 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
+quangngaimedia.com: could not connect to host
quanjinlong.cn: could not connect to host
quantacloud.ch: could not connect to host
+quantaloupe.tech: could not connect to host
quantenteranik.eu: could not connect to host
quantor.dk: did not receive HSTS header
quantum-cloud.xyz: could not connect to host
@@ -15214,43 +17924,51 @@ 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
+quantumtelecom.com.br: could not connect to host
quanwuji.com: could not connect to host
quanyin.eu.org: did not receive HSTS header
quarryhillrentals.com: did not receive HSTS header
quarus.net: could not connect to host
quebecmailbox.com: could not connect to host
queenbrownie.com.br: could not connect to host
+queens.lgbt: could not connect to host
queenshaflo.com: could not connect to host
queercinema.ch: could not connect to host
quelmandataire.fr: did not receive HSTS header
+quemeloquitan.com: did not receive HSTS header
+queminventou.com.br: could not connect to host
querkommentar.de: did not receive HSTS header
queroreceitasoberana.com.br: did not receive HSTS header
queryplayground.com: could not connect to host
questionable.host: could not connect to host
questions-admin.com: did not receive HSTS header
-questionyu.com: did not receive HSTS header
questoj.cn: could not connect to host
questsandrewards.com: could not connect to host
quic.fr: did not receive HSTS header
quickandroid.tools: could not connect to host
+quickboysvrouwen2.nl: could not connect to host
quickpayservice.com: could not connect to host
+quickrelations.de: did not receive HSTS header
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]
+quilmo.com: could not connect to host
+quimsertek.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+quisido.com: did not receive HSTS header
quizionic.com: could not connect to host
quizl.io: did not receive HSTS header
quizmemes.org: could not connect to host
-quizstore.net: did not receive HSTS header
+quizogames.com: could not connect to host
+qunzi.la: could not connect to host
+qunzi.org: did not receive HSTS header
quocdesign.ch: could not connect to host
quotehex.com: could not connect to host
quotemaster.co.za: could not connect to host
quranserver.net: could not connect to host
-qvq.cloud: did not receive HSTS header
qwallet.ca: could not connect to host
-qwaser.fr: could not connect to host
qwertyatom100.me: could not connect to host
qwilink.me: did not receive HSTS header
+qxy.ch: could not connect to host
+qxzg.org: could not connect to host
qybot.cc: did not receive HSTS header
r-ay.club: could not connect to host
r-core.org: could not connect to host
@@ -15258,34 +17976,43 @@ r-core.ru: could not connect to host
r-cut.fr: could not connect to host
r-rickroll-u.pw: could not connect to host
r0t.co: could not connect to host
+r0uzic.net: did not receive HSTS header
r10n.com: did not receive HSTS header
r15.me: did not receive HSTS header
-r18.moe: could not connect to host
+r18.moe: did not receive HSTS header
+r3nt3r.com: did not receive HSTS header
+r6957.com: could not connect to host
+r811.de: could not connect to host
raajheshkannaa.com: could not connect to host
rabbit.wales: could not connect to host
-rabbitvcactus.eu: could not connect to host
-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]
+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 :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+rabynska.eu: could not connect to host
racasdecachorro.org: could not connect to host
-racesport.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]
-rachaelrussell.com: did not receive HSTS header
+racdek.net: max-age too low: 604800
+racdek.nl: max-age too low: 604800
+rachaelrussell.com: could not connect to host
+rachelchen.me: could not connect to host
rackblue.com: could not connect to host
racktear.com: did not receive HSTS header
raconteur.net: did not receive HSTS header
+racozo.com: did not receive HSTS header
rad-route.de: could not connect to host
rada-group.eu: could not connect to host
radarnext.com: could not connect to host
-raddavarden.nu: did not receive HSTS header
+raddavarden.nu: could not connect to host
radicaleducation.net: could not connect to host
radioactivenetwork.xyz: could not connect to host
radioafibra.com.br: could not connect to host
+radiopolarniki.spb.ru: could not connect to host
radior9.it: could not connect to host
-radiumtree.com: could not connect to host
-radom-pack.pl: could not connect to host
+radiormi.com: did not receive HSTS header
+radom-pack.pl: did not receive HSTS header
radtke.bayern: did not receive HSTS header
rafaelcz.de: could not connect to host
rafsis.com: did not receive HSTS header
raft.pub: could not connect to host
-raghavdua.in: could not connect to host
+raghavdua.in: 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
@@ -15295,64 +18022,73 @@ raidstone.com: could not connect to host
raidstone.rocks: could not connect to host
railjob.cn: could not connect to host
railyardurgentcare.com: did not receive HSTS header
-raimixmotoparts.com.br: could not connect to host
-rainbin.com: could not connect to host
+raimixmotoparts.com.br: did not receive HSTS header
+rainbin.com: did not receive HSTS header
rainbowbarracuda.com: could not connect to host
+raito.ooo: could not connect to host
raito.win: could not connect to host
raitza.de: could not connect to host
+rajkapoordas.com: could not connect to host
+rakett.org: did not receive HSTS header
rakugaki.cn: could not connect to host
+rallycycling.com: could not connect to host
ralph.bike: did not receive HSTS header
ralphwoessner.com: did not receive HSTS header
-ramatola.uk: did not receive HSTS header
-rambii.de: could not connect to host
ramblingrf.tech: could not connect to host
ramezanloo.com: did not receive HSTS header
ramitmittal.com: could not connect to host
ramon-c.nl: could not connect to host
ramonj.nl: could not connect to host
+randallbollig.com: did not receive HSTS header
randomcage.com: did not receive HSTS header
-randomcloud.net: did not receive HSTS header
+randomcloud.net: could not connect to host
randomhero.cloud: could not connect to host
randomwinpicker.de: could not connect to host
randy.pw: could not connect to host
ranegroup.hosting: could not connect to host
rankthespot.com: could not connect to host
+rannamoisaaiasalong.ee: did not receive HSTS header
rannseier.org: did not receive HSTS header
+ranobe.club: could not connect to host
rantanda.com: could not connect to host
+rante.com: did not receive HSTS header
rany.duckdns.org: could not connect to host
rany.io: did not receive HSTS header
rany.pw: could not connect to host
ranyeh.co: could not connect to host
rapdogg.com: could not connect to host
raphaelmoura.ddns.net: could not connect to host
+raphaelschmid.eu: did not receive HSTS header
rapidemobile.com: did not receive HSTS header
rapidflow.io: could not connect to host
rapidhubs.com: could not connect to host
+rapidminer.com: did not receive HSTS header
rapido.nu: could not connect to host
rapidresearch.me: could not connect to host
rapidthunder.io: could not connect to host
-rappet.de: could not connect to host
-rasing.me: max-age too low: 43200
+rappet.de: did not receive HSTS header
+rareative.com: could not connect to host
+rasing.me: did not receive HSTS header
raspass.me: did not receive HSTS header
raspberry.us: could not connect to host
-raspberryultradrops.com: did not receive HSTS header
+raspberryultradrops.com: could not connect to host
raspitec.ddns.net: could not connect to host
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
+ratelsec.com: could not connect to host
+rathorian.fr: did not receive HSTS header
rationem.nl: did not receive HSTS header
ratuseks.com: could not connect to host
ratuseks.net: could not connect to host
ratuseks.us: could not connect to host
-rauchenwald.net: could not connect to host
-raucris.ro: could not connect to host
raulfraile.net: could not connect to host
+rault.io: did not receive HSTS header
rautermods.net: did not receive HSTS header
-ravage.fm: did not receive HSTS header
+ravada-vdi.com: could not connect to host
+ravage.fm: could not connect to host
raven.lipetsk.ru: could not connect to host
-ravenger.net: did not receive HSTS header
ravengergaming.ga: could not connect to host
ravengergaming.net: could not connect to host
ravenx.me: could not connect to host
@@ -15363,28 +18099,29 @@ rawet.se: could not connect to host
rawoil.com: could not connect to host
rawr.sexy: could not connect to host
rawstorieslondon.com: could not connect to host
-ray-home.de: could not connect to host
-ray-works.de: could not connect to host
+raxion.cf: could not connect to host
+raxion.tk: could not connect to host
rayanitco.com: did not receive HSTS header
raycarruthersphotography.co.uk: could not connect to host
raydan.space: could not connect to host
raydobe.me: could not connect to host
-raymd.de: could not connect to host
raymii.org: did not receive HSTS header
raymondelooff.nl: did not receive HSTS header
raytron.org: could not connect to host
-raywin168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-raywin168.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-raywin88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-rayworks.de: could not connect to host
+raywin168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+raywin168.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+raywin88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+razberry.kr: could not connect to host
+razeen.me: max-age too low: 0
razlaw.name: did not receive HSTS header
+razvodguru.ru: did not receive HSTS header
razzolini.com.br: could not connect to host
rb-china.net: could not connect to host
-rbcservicehub-uat.azurewebsites.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+rbcservicehub-uat.azurewebsites.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
rbhighinc.org: could not connect to host
rbmafrica.co.za: could not connect to host
rbose.org: could not connect to host
-rbqcloud.com: could not connect to host
+rbqcloud.com: did not receive HSTS header
rbti.me: could not connect to host
rbtvshitstorm.is: did not receive HSTS header
rburchell.com: did not receive HSTS header
@@ -15393,12 +18130,15 @@ rc4.io: could not connect to host
rc7.ch: could not connect to host
rcafox.com: could not connect to host
rchavez.site: could not connect to host
+rchrdsn.uk: could not connect to host
+rclsm.net: could not connect to host
+rcmlinx.com: could not connect to host
+rcmpsplib.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
+rcx.io: did not receive HSTS header
rdfz.tech: could not connect to host
rdns.im: did not receive HSTS header
rdplumbingsolutions.com.au: did not receive HSTS header
@@ -15408,52 +18148,59 @@ re-customer.net: could not connect to host
re-wilding.com: could not connect to host
reachr.com: could not connect to host
reactdatepicker.com: did not receive HSTS header
+reactions.studio: did not receive HSTS header
+reactivarte.es: did not receive HSTS header
+reactivelambda.com: could not connect to host
reactor92.com: could not connect to host
reader.ga: could not connect to host
-readheadcopywriting.com: max-age too low: 0
readify.com.au: did not receive HSTS header
readingandmath.org: could not connect to host
readism.io: could not connect to host
-readityourself.net: could not connect to host
readmeeatmedrinkme.com: did not receive HSTS header
readr.pw: could not connect to host
-reads.wang: could not connect to host
readtldr.com: could not connect to host
readydok.com: did not receive HSTS header
readytowear.es: could not connect to host
+readywithresourcestn.gov: could not connect to host
reagir43.fr: did not receive HSTS header
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
+realestateradioshow.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+realfreedom.city: could not connect to host
realgarant-shop.de: did not receive HSTS header
+realhorsegirls.net: could not connect to host
realhost.name: could not connect to host
realincest.tv: could not connect to host
-really.io: could not connect to host
+realitea.co.uk: could not connect to host
+really.io: did not receive HSTS header
reallyreally.io: did not receive HSTS header
realmic.net: could not connect to host
realmofespionage.com: could not connect to host
-realnewhomes.com: could not connect to host
+realnewhomes.com: did not receive HSTS header
realraghavgupta.com: could not connect to host
-realwoo.com: did not receive HSTS header
+realtoraidan.com: could not connect to host
+realwoo.com: could not connect to host
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
-recapp.ch: could not connect to host
+rebootmc.com: did not receive HSTS header
+recapp.ch: did not receive HSTS header
recard.vn: did not receive HSTS header
-recebersms.com: did not receive HSTS header
receitas-de-bolos.pt: could not connect to host
receitasdebacalhau.pt: could not connect to host
receptionsbook.com: could not connect to host
recetasfacilesdehacer.com: did not receive HSTS header
+recettecookeo.net: did not receive HSTS header
rechat.com: did not receive HSTS header
+rechenknaecht.de: could not connect to host
rechenwerk.net: could not connect to host
recht-freundlich.de: did not receive HSTS header
rechtenliteratuurleiden.nl: could not connect to host
reclamebureau-ultrax.nl: did not receive HSTS header
+recordeuropa.com: max-age too low: 86400
recreoviral.com: did not receive HSTS header
recruitsecuritytraining.co.uk: could not connect to host
recruitsecuritytraining.com: could not connect to host
@@ -15462,55 +18209,68 @@ recuerdafilms.com: did not receive HSTS header
red2fred2.com: could not connect to host
redair.es: could not connect to host
redar.xyz: could not connect to host
-redburn.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+redburn.com: did not receive HSTS header
redcomet.org: did not receive HSTS header
-reddiseals.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-reddit.com: did not receive HSTS header
+redcone.net: could not connect to host
+reddingo.at: could not connect to host
+reddiseals.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
rede.ca: did not receive HSTS header
-redeemingbeautyminerals.com: max-age too low: 0
-redespaulista.com: did not receive HSTS header
+redeemingbeautyminerals.com: did not receive HSTS header
+redelectrical.co.uk: did not receive HSTS header
+redessantaluzia.com.br: did not receive HSTS header
redheeler.com.br: could not connect to host
redhorsemountainranch.com: did not receive HSTS header
redicabo.de: could not connect to host
+redicals.com: could not connect to host
redigest.it: max-age too low: 0
redirectman.com: could not connect to host
+rediverge.com: did not receive HSTS header
redizoo.com: did not receive HSTS header
redlatam.org: did not receive HSTS header
redletter.link: could not connect to host
redmbk.com: did not receive HSTS header
-redneck-gaming.de: did not receive HSTS header
+redmondoregon.gov: could not connect to host
+redneck-gaming.de: could not connect to host
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
redprice.by: could not connect to host
redra.ws: could not connect to host
+redshell.pw: could not connect to host
redshield.co: did not receive HSTS header
-redsquirrelcampsite.co.uk: max-age too low: 5184000
+redsquarelasvegas.com: could not connect to host
+redsquirrelcampsite.co.uk: did not receive HSTS header
redstarsurf.com: did not receive HSTS header
+redstoner.com: did not receive HSTS header
reducerin.ro: did not receive HSTS header
+redwhey.com: could not connect to host
+redwoodpaddle.es: did not receive HSTS header
+redwoodpaddle.pt: did not receive HSTS header
redy.host: did not receive HSTS header
-reepay.com: did not receive HSTS header
+redzonedaily.com: could not connect to host
+reensshop.com: could not connect to host
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
referenten.org: did not receive HSTS header
refill-roboter.de: did not receive HSTS header
refitplanner.com: did not receive HSTS header
reflecton.io: could not connect to host
-reflectores.net: did not receive HSTS header
+reflexive-engineering.com: could not connect to host
+reforesttheplanet.com: could not connect to host
reformatreality.com: could not connect to host
refreshingserum.com: could not connect to host
reg.ru: did not receive HSTS header
+regain.us: did not receive HSTS header
regaloaks.com: could not connect to host
regalpaintingfdl.com: could not connect to host
regalpalms.com: did not receive HSTS header
+regasportshop.it: could not connect to host
regenbogenwald.de: did not receive HSTS header
regendevices.eu: could not connect to host
reggae-cdmx.com: could not connect to host
@@ -15522,70 +18282,89 @@ register.gov.uk: did not receive HSTS header
registertovoteflorida.gov: did not receive HSTS header
regoul.com: did not receive HSTS header
regsec.com: could not connect to host
+rehabilitation.network: could not connect to host
rehabmail.com: did not receive HSTS header
+rehabphilippines.com: could not connect to host
rehabthailand.nl: could not connect to host
reher.pro: could not connect to host
-rei.codes: did not receive HSTS header
+rei.codes: could not connect to host
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.me: could not connect to host
reineberthe.ch: could not connect to host
+reinierjonker.nl: could not connect to host
reinoldus.ddns.net: could not connect to host
+reisekosten-gorilla.com: did not receive HSTS header
reismil.ch: could not connect to host
+reisslittle.com: 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
+rejo.in: did not receive HSTS header
rejushiiplotter.ru: could not connect to host
rejuvemedspa.com: did not receive HSTS header
+rekonstrukcestatu.cz: did not receive HSTS header
relatic.net: could not connect to host
relayawards.com: could not connect to host
reldoc.com.mx: did not receive HSTS header
+releasetimes.io: could not connect to host
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
-rem.pe: did not receive HSTS header
-rema.site: did not receive HSTS header
+relocatefeds.gov: could not connect to host
+relojesseiko.es: did not receive HSTS header
+relvan.tech: could not connect to host
+rem.pe: could not connect to host
+rema.site: could not connect to host
remain.london: could not connect to host
remedica.fr: could not connect to host
+remedios-caserospara.com: did not receive HSTS header
remedioscaserosparalacistitis.com: did not receive HSTS header
remedium.de: could not connect to host
-remedyrehab.com: did not receive HSTS header
+remedyrehab.com: could not connect to host
remejeanne.com: could not connect to host
+remembermidi.sytes.net: could not connect to host
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
+remonttitekniikka.fi: did not receive HSTS header
+remote.so: max-age too low: 0
remotestance.com: did not receive HSTS header
+remszeitung.de: did not receive HSTS header
rencaijia.com: did not receive HSTS header
rencontres-erotiques.com: did not receive HSTS header
rene-guitton.fr: did not receive HSTS header
-reneclemens.nl: could not connect to host
-renesauerwein.com: did not receive HSTS header
-renesauerwein.de: did not receive HSTS header
+renedekoeijer.com: max-age too low: 604800
+renedekoeijer.nl: max-age too low: 604800
+renee.today: could not connect to host
+renesauerwein.com: could not connect to host
+renesauerwein.de: could not connect to host
renewed.technology: could not connect to host
+renewgsa.com: could not connect to host
rengarenkblog.com: could not connect to host
-renideo.fr: could not connect to host
+renideo.fr: did not receive HSTS header
renkhosting.com: could not connect to host
renlong.org: did not receive HSTS header
rennfire.org: could not connect to host
renrenss.com: could not connect to host
renscreations.com: did not receive HSTS header
-rentacarcluj.xyz: did not receive HSTS header
+rentacarcluj.xyz: could not connect to host
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
-reo.gov: could not connect to host
+renxinge.cn: could not connect to host
+repaik.com: could not connect to host
reparo.pe: did not receive HSTS header
repex.co.il: could not connect to host
+repkord.com: max-age too low: 7889238
replaceits.me: could not connect to host
replacemychina.com: could not connect to host
+replicaswiss.nl: could not connect to host
repo.ml: did not receive HSTS header
report-incident.de: could not connect to host
report-to.com: did not receive HSTS header
@@ -15602,7 +18381,7 @@ reposaarenkuva.fi: could not connect to host
reprolife.co.uk: could not connect to host
reptilauksjonen.no: could not connect to host
republicmo.gov: did not receive HSTS header
-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]
+repustate.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
reqognize.com: could not connect to host
reqrut.net: did not receive HSTS header
request-trent.com: could not connect to host
@@ -15614,6 +18393,8 @@ reseponline.info: did not receive HSTS header
reserve-online.net: did not receive HSTS header
reservetonshift.com: could not connect to host
reservoirtp.fr: did not receive HSTS header
+resfriatech.com.br: did not receive HSTS header
+residentialmortgageholdings.com: could not connect to host
residentsinsurance.co.uk: did not receive HSTS header
resl20.servehttp.com: could not connect to host
resoundpro.ca: could not connect to host
@@ -15631,11 +18412,14 @@ restioson.me: could not connect to host
restopro.nyc: could not connect to host
restoreresearchstudy.com: could not connect to host
resultsdate.news: could not connect to host
+retcor.net: could not connect to host
+retefrati.it: could not connect to host
retetop95.it: did not receive HSTS header
reth.ch: could not connect to host
retireyourpassword.org: did not receive HSTS header
retogroup.com: could not connect to host
retronet.nl: could not connect to host
+retropack.org: did not receive HSTS header
retropage.co: did not receive HSTS header
retrowave.eu: could not connect to host
rets.org.br: did not receive HSTS header
@@ -15643,35 +18427,46 @@ retube.ga: did not receive HSTS header
returnofwar.com: could not connect to host
reussir-ma-fete.fr: could not connect to host
revapost.ch: could not connect to host
-revealdata.com: did not receive HSTS header
revelaciones.tv: could not connect to host
revello.org: did not receive HSTS header
reverie.pw: could not connect to host
reverse.design: could not connect to host
+revhost-consulting.fr: did not receive HSTS header
review.info: could not connect to host
-reviewbestseller.com: did not receive HSTS header
reviewjust.com: did not receive HSTS header
reviewmed-215418.appspot.com: did not receive HSTS header
-reviewspedia.org: did not receive HSTS header
+reviewspedia.org: could not connect to host
+revision.co.zw: max-age too low: 300
+revisit.date: did not receive HSTS header
revistapequenosolhares.com.br: could not connect to host
+revivalsstores.com: did not receive HSTS header
+revolta-hosting.fr: did not receive HSTS header
revolutionhive.com: could not connect to host
+revthefox.co.uk: did not receive HSTS header
revtut.net: could not connect to host
+rewardingexcellence.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
rewopit.net: could not connect to host
+rewrite3.com: could not connect to host
rex.st: could not connect to host
rexhockingkelpies.com.au: did not receive HSTS header
+reyesfernando.com: max-age too low: 0
reykjavik.guide: could not connect to host
-rezun.cloud: did not receive HSTS header
+rezexpert.com: did not receive HSTS header
+rezosup.net: could not connect to host
+rezosup.org: could not connect to host
rf.tn: could not connect to host
rfeif.org: could not connect to host
+rfitness.dk: did not receive HSTS header
rgavmf.ru: did not receive HSTS header
rgservers.com: did not receive HSTS header
rhapsodhy.hu: could not connect to host
rhdigital.pro: could not connect to host
+rheijmans.nl: could not connect to host
+rhein-liebe.de: did not receive HSTS header
rheinturm.nrw: could not connect to host
+rheocube.com: did not receive HSTS header
rhering.de: could not connect to host
-rhetthenckel.com: max-age too low: 0
rheuma-online.de: could not connect to host
-rhiskiapril.com: could not connect to host
rhnet.at: could not connect to host
rhodes.ml: could not connect to host
rhodesianridgeback.com.br: could not connect to host
@@ -15681,58 +18476,73 @@ ribs.com: did not receive HSTS header
riceglue.com: could not connect to host
richamorindonesia.com: did not receive HSTS header
richardb.me: could not connect to host
-richardcrosby.co.uk: did not receive HSTS header
-richeza.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+richeza.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
richie.link: did not receive HSTS header
+richieheijmans.nl: could not connect to host
richiemail.net: could not connect to host
-richmondsunlight.com: did not receive HSTS header
+richlj.com: did not receive HSTS header
+richmondsunlight.com: could not connect to host
richmtdriver.com: could not connect to host
richonrails.com: did not receive HSTS header
richsiciliano.com: did not receive HSTS header
richterphilipp.com: could not connect to host
-rickmartensen.nl: did not receive HSTS header
+richtoinfinity.com: did not receive HSTS header
+rickmartensen.nl: could not connect to host
ricknox.com: did not receive HSTS header
-ricky.capital: did not receive HSTS header
+ricky.capital: could not connect to host
+rico.ovh: could not connect to host
rid-wan.com: could not connect to host
+riddims.co: did not receive HSTS header
ride-up.com: did not receive HSTS header
-rideaudiscount.com: did not receive HSTS header
+rideaudiscount.com: could not connect to host
rideforwade.com: could not connect to host
rideforwade.net: could not connect to host
rideforwade.org: could not connect to host
-rideworks.com: could not connect to host
+rideworks.com: did not receive HSTS header
+ridgelandchurch.org: did not receive HSTS header
ridingoklahoma.com: could not connect to host
ridwan.co: could not connect to host
riechsteiner.tech: could not connect to host
+riemer.ml: could not connect to host
rienasemettre.fr: did not receive HSTS header
riesenmagnete.de: could not connect to host
riester.pl: did not receive HSTS header
+rifkivalkry.net: could not connect to host
right-to-love.name: did not receive HSTS header
right2.org: could not connect to host
rightcapital.com: did not receive HSTS header
righteousendeavour.com: could not connect to host
righttoknow.ie: did not receive HSTS header
+rigolitch.fr: did not receive HSTS header
+rigsalesaustralia.com: did not receive HSTS header
rijndael.xyz: could not connect to host
rijnmondeg.nl: did not receive HSTS header
rika.me: could not connect to host
-rimediogiusto.com: could not connect to host
+rimediogiusto.com: did not receive HSTS header
rincon-nsn.gov: did not receive HSTS header
+ring.com: did not receive HSTS header
ring0.xyz: did not receive HSTS header
ringh.am: could not connect to host
rinj.se: did not receive HSTS header
+rinprom.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+rinvex.com: could not connect to host
rionewyork.com.br: could not connect to host
rioxmarketing.pt: could not connect to host
-ripa.io: did not receive HSTS header
+ripa.io: could not connect to host
ripple.com: did not receive HSTS header
rippleunion.com: could not connect to host
ris-bad-wurzach.de: did not receive HSTS header
risi-china.com: could not connect to host
risingsun.red: could not connect to host
+riskcategory.com: could not connect to host
riskmgt.com.au: could not connect to host
+riskmitigation.ch: did not receive HSTS header
rissato.com.br: could not connect to host
ristorantefattoamano.eu: could not connect to host
rithm.ch: did not receive HSTS header
rittis.ru: did not receive HSTS header
rivagecare.it: did not receive HSTS header
+riverbendessentialoil.com: did not receive HSTS header
rivercruiseadvisor.com: did not receive HSTS header
rivermendhealthcenters.com: did not receive HSTS header
riversideauto.net: did not receive HSTS header
@@ -15743,36 +18553,39 @@ 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
+rkkhok.hu: did not receive HSTS header
rkmantpur.org: did not receive HSTS header
rkmedia.no: could not connect to host
+rle.me: did not receive HSTS header
rmaqequipamentos.com.br: could not connect to host
rmdlingerie.com.br: did not receive HSTS header
rme.li: did not receive HSTS header
rmf.io: could not connect to host
rmit.me: could not connect to host
rmk.si: could not connect to host
+rmpsolution.de: did not receive HSTS header
rms-digicert.ne.jp: did not receive HSTS header
rmsides.com: did not receive HSTS header
rn29.me: could not connect to host
rnb-storenbau.ch: max-age too low: 0
-rnbjunk.com: did not receive HSTS header
roadfeast.com: could not connect to host
+roadtopgm.com: could not connect to host
roan24.pl: did not receive HSTS header
roave.com: did not receive HSTS header
rob.uk.com: did not receive HSTS header
-robbertt.com: could not connect to host
robert-foster.com: could not connect to host
robertabittle.com: could not connect to host
-robertg.me: did not receive HSTS header
+robertayamashita.com: could not connect to host
+robertayamashita.com.br: could not connect to host
robertglastra.com: could not connect to host
-robertlluberes.com: 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
+robicue.com: could not connect to host
robin-novotny.com: could not connect to host
robinadr.com: did not receive HSTS header
-robinflikkema.nl: could not connect to host
+robinevandenbos.nl: did not receive HSTS header
robinsonstrategy.com: could not connect to host
+roboex.net: could not connect to host
robomonkey.org: could not connect to host
roboth.am: could not connect to host
robotics.plus: did not receive HSTS header
@@ -15783,17 +18596,20 @@ robust.ga: could not connect to host
roc.net.au: could not connect to host
rochman.id: did not receive HSTS header
rockcellar.ch: could not connect to host
+rocket-wars.de: did not receive HSTS header
rocketgnomes.com: could not connect to host
rocketnet.ml: could not connect to host
rockeyscrivo.com: did not receive HSTS header
+rockhounds.co.za: did not receive HSTS header
rocksberg.net: could not connect to host
+rockuse.com.br: did not receive HSTS header
rockz.io: did not receive HSTS header
rodarion.pl: could not connect to host
rodehutskors.net: could not connect to host
rodney.id.au: did not receive HSTS header
rodneybrooksjr.com: did not receive HSTS header
rodosto.com: did not receive HSTS header
-roelbazuin.com: did not receive HSTS header
+roelbazuin.com: could not connect to host
roelf.org: did not receive HSTS header
roeljoyas.com: did not receive HSTS header
roeper.party: could not connect to host
@@ -15805,23 +18621,29 @@ rogeiro.net: could not connect to host
roger101.com: did not receive HSTS header
rogerdat.ovh: could not connect to host
rogue-e.xyz: could not connect to host
+roguenetworks.me: could not connect to host
+roguetechhub.org: 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
roksolana.be: could not connect to host
-rolandkolodziej.com: max-age too low: 86400
+rolandinsh.com: did not receive HSTS header
+rolandlips.com: could not connect to host
rolandslate.com: did not receive HSTS header
rolemaster.net: could not connect to host
roleplayhome.com: could not connect to host
+rolfsbuss.se: did not receive HSTS header
+rollatorweb.nl: did not receive HSTS header
rollercoasteritalia.it: did not receive HSTS header
rolroer.co.za: could not connect to host
romaimperator.com: did not receive HSTS header
romainmuller.xyz: did not receive HSTS header
+romancloud.com: could not connect to host
romans-place.me.uk: could not connect to host
romantic-quotes.co.uk: did not receive HSTS header
romanticschemermovie.com: could not connect to host
+romapa.com: could not connect to host
romar-bos.nl: could not connect to host
romeoferraris.com: did not receive HSTS header
romleg.cf: could not connect to host
@@ -15830,15 +18652,15 @@ romulusapp.com: could not connect to host
ron2k.za.net: did not receive HSTS header
ronanrbr.com: did not receive HSTS header
rondoniatec.com.br: did not receive HSTS header
-rondreis-planner.nl: could not connect to host
+rondreis-planner.nl: did not receive HSTS header
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
ronzertnert.xyz: could not connect to host
-roo.ie: did not receive HSTS header
rool.me: did not receive HSTS header
roolevoi.ru: could not connect to host
-room-checkin24.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+room-checkin24.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+room2d.com: did not receive HSTS header
roomongo.com: did not receive HSTS header
roosterpgplus.nl: could not connect to host
rootbsd.at: could not connect to host
@@ -15847,28 +18669,30 @@ rootrelativity.com: could not connect to host
rootservice.org: did not receive HSTS header
rootwpn.com: could not connect to host
rop.io: did not receive HSTS header
-roquecenter.org: did not receive HSTS header
+roquecenter.org: could not connect to host
roromendut.online: could not connect to host
rorymcdaniel.com: could not connect to host
+rosemariefloydballet.com: could not connect to host
+rosenheimsingles.de: did not receive HSTS header
roseofyork.com: did not receive HSTS header
+roseofyorkbooking.com: could not connect to host
rosetiger.life: could not connect to host
rosewoodranch.com: did not receive HSTS header
roshiya.co.in: could not connect to host
-rosi-royal.com: did not receive HSTS header
rospa100.com: did not receive HSTS header
rossclark.com: did not receive HSTS header
rossen.be: did not receive HSTS header
rossfrancis.co.uk: did not receive HSTS header
-rossiworld.com: did not receive HSTS header
-rosslug.org.uk: could not connect to host
rotex1840.de: did not receive HSTS header
rotter-dam.nl: did not receive HSTS header
rotterdamjazz.info: could not connect to host
-rotzonline.com: could not connect to host
+rottipowah.com: did not receive HSTS header
+rotzonline.com: did not receive HSTS header
rough.nu: could not connect to host
roundaboutweb.info: did not receive HSTS header
rous.se: could not connect to host
-rouvray.org: could not connect to host
+routercncperu.com: did not receive HSTS header
+rouvray.org: did not receive HSTS header
rove3d.com: could not connect to host
rows.io: could not connect to host
royal-forest.org: max-age too low: 0
@@ -15877,6 +18701,7 @@ royal806.com: did not receive HSTS header
royal810.com: did not receive HSTS header
royal811.com: did not receive HSTS header
royal812.com: did not receive HSTS header
+royal813.com: did not receive HSTS header
royal816.com: did not receive HSTS header
royal817.com: did not receive HSTS header
royal818.com: did not receive HSTS header
@@ -15885,9 +18710,7 @@ royal833.com: did not receive HSTS header
royal850.com: did not receive HSTS header
royal851.com: did not receive HSTS header
royal852.com: did not receive HSTS header
-royal853.com: did not receive HSTS header
royal855.com: did not receive HSTS header
-royal856.com: did not receive HSTS header
royal857.com: did not receive HSTS header
royal859.com: did not receive HSTS header
royal86.com: did not receive HSTS header
@@ -15897,7 +18720,6 @@ royal863.com: did not receive HSTS header
royal865.com: did not receive HSTS header
royal867.com: did not receive HSTS header
royal868.com: did not receive HSTS header
-royal869.com: did not receive HSTS header
royal871.com: did not receive HSTS header
royal872.com: did not receive HSTS header
royal873.com: did not receive HSTS header
@@ -15923,18 +18745,19 @@ royal895.com: could not connect to host
royal896.com: did not receive HSTS header
royal898.com: did not receive HSTS header
royal899.com: did not receive HSTS header
-royalcitytaxi.com: could not connect to host
+royalfoxrealtor.com: did not receive HSTS header
royalhop.co: could not connect to host
+royalpalacenogent.fr: did not receive HSTS header
royalsignaturecruise.com: could not connect to host
-royaltube.net: could not connect to host
royalty-market.com: could not connect to host
-royalyule.com: did not receive HSTS header
-roychan.org: max-age too low: 0
+royalyule.com: could not connect to host
royzez.com: could not connect to host
rozalisbengal.ro: could not connect to host
rozeapp.nl: could not connect to host
+rp2018.co.uk: could not connect to host
rpasafrica.com: could not connect to host
-rr.in.th: could not connect to host
+rpgchan.cf: could not connect to host
+rr.in.th: did not receive HSTS header
rr105.de: did not receive HSTS header
rring.me: could not connect to host
rritv.com: could not connect to host
@@ -15943,9 +18766,10 @@ rro.rs: could not connect to host
rrom.me: did not receive HSTS header
rs-devdemo.host: could not connect to host
rsajeey.info: could not connect to host
-rsampaio.info: did not receive HSTS header
+rsampaio.info: could not connect to host
rsauget.fr: could not connect to host
rsf.io: could not connect to host
+rsgcard.com: could not connect to host
rsi.im: could not connect to host
rskuipers.com: did not receive HSTS header
rsldb.com: could not connect to host
@@ -15957,15 +18781,21 @@ rssr.ddns.net: 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
-rtd.uk.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+rtd.uk.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+rtek.se: could not connect to host
+rtenews.eu: could not connect to host
+rtesport.eu: could not connect to host
rtfpessoa.xyz: did not receive HSTS header
rtho.me: did not receive HSTS header
rths.tk: could not connect to host
+rthsoftware.net: could not connect to host
+rtrinflatables.co.uk: did not receive HSTS header
rttss.com: could not connect to host
rtvi.com: did not receive HSTS header
-ru-music.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+rtzoeller.com: could not connect to host
+ru-music.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
rua.cx: could not connect to host
-ruarua.ml: did not receive HSTS header
+ruarua.ml: could not connect to host
rubbereggs.ca: could not connect to host
rubbix.net: could not connect to host
rubecodeberg.com: could not connect to host
@@ -15975,10 +18805,13 @@ rubi-ka.net: max-age too low: 0
ruborr.se: did not receive HSTS header
rubysecurity.org: did not receive HSTS header
rubyshop.nl: could not connect to host
-rudelune.fr: could not connect to host
+rudel-wot.de: did not receive HSTS header
+rudelune.fr: did not receive HSTS header
rudeotter.com: did not receive HSTS header
ruderverein-gelsenkirchen.de: did not receive HSTS header
+rudhaulidirectory.com: did not receive HSTS header
rue-de-la-vieille.fr: did not receive HSTS header
+ruequincampoix.com: did not receive HSTS header
ruflay.ru: could not connect to host
rugby.video: could not connect to host
rugirlfriend.com: could not connect to host
@@ -15987,79 +18820,87 @@ rugstorene.co.uk: did not receive HSTS header
ruhr3.de: did not receive HSTS header
ruig.jp: could not connect to host
ruigomes.me: did not receive HSTS header
+ruimarques.xyz: could not connect to host
+ruiruigeblog.com: could not connect to host
ruja.dk: did not receive HSTS header
rukhaiyar.com: could not connect to host
rullzer.com: did not receive HSTS header
-rummel-platz.de: could not connect to host
rumoterra.com.br: could not connect to host
run-forrest.run: could not connect to host
runawebinar.nl: could not connect to host
runcarina.com: could not connect to host
rundumcolumn.xyz: could not connect to host
-runementors.com: could not connect to host
runhardt.eu: could not connect to host
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
rusl.me: could not connect to host
rusl.net: did not receive HSTS header
russmarshall.com: could not connect to host
+rust.mn: could not connect to host
rustbyexample.com: did not receive HSTS header
rustfanatic.com: did not receive HSTS header
+ruthmontenegro.com: did not receive HSTS header
ruxit.com: did not receive HSTS header
rva.gov: could not connect to host
+rvc-france.com: did not receive HSTS header
rvender.cz: did not receive HSTS header
+rvfu98.com: could not connect to host
rvg.zone: could not connect to host
-rvoigt.eu: could not connect to host
rvolve.net: could not connect to host
rw-solutions.tech: could not connect to host
rwanderlust.com: could not connect to host
rwgamernl.ml: could not connect to host
+rws-cc.com: did not receive HSTS header
rx-contact.com: did not receive HSTS header
+rxcheck.com: did not receive HSTS header
rxprep.com: did not receive HSTS header
rxt.social: could not connect to host
rxv.cc: could not connect to host
ryancarter.co.uk: did not receive HSTS header
ryanroberts.co.uk: could not connect to host
-ryanteck.uk: did not receive HSTS header
-rybox.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+ryanteck.uk: could not connect to host
+rybox.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+rychlikoderi.cz: could not connect to host
+rydermais.tk: could not connect to host
ryejuice.sytes.net: could not connect to host
rylin.net: did not receive HSTS header
rylore.com: could not connect to host
ryssl.com: could not connect to host
ryssland.guide: could not connect to host
-ryyule.com: did not receive HSTS header
-ryzex.de: could not connect to host
-rzegroup.com: did not receive HSTS header
+ryyule.com: could not connect to host
+rzegroup.com: could not connect to host
+s-a.xyz: could not connect to host
s-d-v.ch: could not connect to host
+s-n-unso.com: did not receive HSTS header
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
s1mplescripts.de: could not connect to host
-s1ris.org: did not receive HSTS header
s2p.moe: could not connect to host
s3cases.com: did not receive HSTS header
s3gfault.com: could not connect to host
s3n.se: could not connect to host
s5118.com: could not connect to host
-sa-blog.net: 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
sabtunes.com: could not connect to host
sac-shop.com: did not receive HSTS header
saccounty.gov: could not connect to host
sacharidovejednotky.eu: could not connect to host
-sachk.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
sackers.com: did not receive HSTS header
saco-ceso.com: could not connect to host
sadiejanehair.com: could not connect to host
+sadsu.com: did not receive HSTS header
saenforcement.agency: could not connect to host
safari-afrique.com: did not receive HSTS header
-safe.space: could not connect to host
-safedevice.net: did not receive HSTS header
+safe.moe: did not receive HSTS header
+safe.space: did not receive HSTS header
+safebuyerscheme.co.uk: did not receive HSTS header
+safedevice.net: could not connect to host
+safeex.com: did not receive HSTS header
safelist.eu: did not receive HSTS header
safeme.ga: could not connect to host
safemovescheme.co.uk: could not connect to host
@@ -16069,46 +18910,55 @@ saferedirect.link: could not connect to host
saferedirectlink.com: could not connect to host
saferpost.com: could not connect to host
safesecret.info: did not receive HSTS header
+safetext.me: could not connect to host
safewings-nh.nl: could not connect to host
safing.me: could not connect to host
safnah.com: did not receive HSTS header
-sagarhandicraft.com: could not connect to host
+sagarhandicraft.com: did not receive HSTS header
sagemontchurch.org: did not receive HSTS header
sageth.com: could not connect to host
+sagsmarseille.com: did not receive HSTS header
sah3.net: could not connect to host
sail-nyc.com: did not receive HSTS header
saint-astier-triathlon.com: did not receive HSTS header
saintefoy-tarentaise.com: did not receive HSTS header
saintjohnlutheran.church: did not receive HSTS header
saintmichelqud.com: did not receive HSTS header
+saintsrobotics.com: could not connect to host
+saintw.com: could not connect to host
sairai.bid: could not connect to host
+saitoh-atsuko.com: did not receive HSTS header
saiyasu-search.com: did not receive HSTS header
+sakamichi.moe: could not connect to host
sakaserver.com: did not receive HSTS header
sakib.ninja: did not receive HSTS header
sakurabuff.com: could not connect to host
+sakuracdn.com: could not connect to host
salaervergleich.com: did not receive HSTS header
sale.sh: did not receive HSTS header
saleaks.org: could not connect to host
-salearnership.co.za: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+salearnership.co.za: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
saleslift.pl: could not connect to host
salishseawhalewatching.ca: did not receive HSTS header
-salixcode.com: did not receive HSTS header
+salixcode.com: could not connect to host
sallysubs.com: could not connect to host
salmo23.com.br: could not connect to host
salmos91.com: 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
+saltireconservation.com: did not receive HSTS header
saltra.online: could not connect to host
-saltro.nl: did not receive HSTS header
saludsexualmasculina.org: did not receive HSTS header
+saludsis.mil.co: did not receive HSTS header
+saludyvida.site: could not connect to host
salvaalocombia.com: could not connect to host
salverainha.org: could not connect to host
salzamt.tk: could not connect to host
samanthahumphreysstudio.com: did not receive HSTS header
samanthasicecream.com: could not connect to host
+samariafar.com: did not receive HSTS header
samaritan.tech: could not connect to host
samaritansnet.org: did not receive HSTS header
samba.com.co: did not receive HSTS header
@@ -16118,41 +18968,50 @@ samin.tk: could not connect to host
samitechnic.com: did not receive HSTS header
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
-sammyslimos.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+sammyslimos.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
samp.im: could not connect to host
sampcup.com: could not connect to host
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
+samsungmobile.it: did not receive HSTS header
+samsungphonegenerator.xyz: did not receive HSTS header
samsungxoa.com: could not connect to host
samuel-dumont.be: did not receive HSTS header
+samuirehabcenter.com: could not connect to host
samvanderkris.com: could not connect to host
-samvanderkris.xyz: did not receive HSTS header
+samwu.tw: could not connect to host
samyerkes.com: did not receive HSTS header
san-mian-ka.ml: 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
+sanasalud.org: did not receive HSTS header
+sanatfilan.com: could not connect to host
sanatrans.com: could not connect to host
-sanchez.adv.br: could not connect to host
+sandburner.net: could not connect to host
sanderknape.com: did not receive HSTS header
-sandobygg.se: could not connect to host
-sandogruppen.se: could not connect to host
+sandhaufen.tk: could not connect to host
sandtonvipcompanions.com: did not receive HSTS header
sandviks.com: did not receive HSTS header
sanguoxiu.com: could not connect to host
sanhei.ch: did not receive HSTS header
-sanik.my: could not connect to host
+sanik.my: did not receive HSTS header
+sanilodge.com: did not receive HSTS header
+sanitrak.cz: could not connect to host
+sanmuding.com: could not connect to host
sannesfotklinikk.no: did not receive HSTS header
+sanook69.com: did not receive HSTS header
+sanqinyinshi.com.cn: could not connect to host
sanradon.by: did not receive HSTS header
sansage.com.br: did not receive HSTS header
sansdev.com: could not connect to host
sansemea.com: did not receive HSTS header
+santafemacas.com.br: did not receive HSTS header
+santanderideas.com: did not receive HSTS header
+santenatureetcie.com: did not receive HSTS header
santi.eu: did not receive HSTS header
santing.net: could not connect to host
santmark.com: could not connect to host
@@ -16161,24 +19020,25 @@ santmark.fi: could not connect to host
santmark.info: could not connect to host
santmark.net: could not connect to host
santmark.org: could not connect to host
-santodomingocg.org: did not receive HSTS header
+santodomingocg.org: could not connect to host
+santojuken.co.jp: did not receive HSTS header
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
+sarabara.com: did not receive HSTS header
sarah-beckett-harpist.com: did not receive HSTS header
sarahcheyette.com: did not receive HSTS header
+sarahcorliss.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: did not receive HSTS header
sarangsemutbandung.com: could not connect to host
-sarbash.ee: could not connect to host
+sargeson.it: could not connect to host
sarindia.com: could not connect to host
sarindia.de: could not connect to host
sarisonproductions.com: did not receive HSTS header
@@ -16188,12 +19048,14 @@ sarkisozleri.us: could not connect to host
sarndipity.com: could not connect to host
saronno5stelle.it: did not receive HSTS header
saruwebshop.co.za: could not connect to host
-sasrobotics.xyz: could not connect to host
+sasanika.org: could not connect to host
sat.rent: did not receive HSTS header
+sat7a-riyadh.com: did not receive HSTS header
satanichia.moe: could not connect to host
+satisperfectacollections.com: could not connect to host
sativatunja.com: could not connect to host
satmep.com: did not receive HSTS header
-satoshicrypt.com: did not receive HSTS header
+satoshicrypt.com: could not connect to host
satragreen.com: could not connect to host
satrent.com: did not receive HSTS header
satrent.se: did not receive HSTS header
@@ -16202,76 +19064,94 @@ satsang-uwe.de: did not receive HSTS header
sattamatkadpboss.mobi: could not connect to host
saturne.tk: could not connect to host
saucyfox.net: did not receive HSTS header
+saudavel.com.vc: could not connect to host
saudeeconforto.com.br: did not receive HSTS header
+saudeintimadamulher.com.br: could not connect to host
sauenytt.no: could not connect to host
-saumon.io: did not receive HSTS header
+sauer-systems.net: did not receive HSTS header
saumon.xyz: could not connect to host
+saumondefrance.fr: could not connect to host
+saunahats.eu: 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-me-koeln.de: could not connect to host
+savantic.io: could not connect to host
+save-me-koeln.de: did not receive HSTS header
save.gov: could not connect to host
saveaward.gov: could not connect to host
+savebt.net: 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: did not receive HSTS header
+savingbytes.com: could not connect to host
savinggoliath.com: could not connect to host
savingsstoreonline.ca: did not receive HSTS header
+savisasolutions.co.za: did not receive HSTS header
savvysuit.com: did not receive HSTS header
+savvytime.com: did not receive HSTS header
saxol-group.com: could not connect to host
say-hanabi.com: could not connect to host
sayhanabi.com: could not connect to host
-sazima.ru: did not receive HSTS header
+sayori.pw: could not connect to host
+sbiewald.de: could not connect to host
+sbit.com.br: could not connect to host
sblum.de: did not receive HSTS header
sbm.cloud: could not connect to host
sbobetfun.com: did not receive HSTS header
sbox-archives.com: could not connect to host
-sbsrv.ml: could not connect to host
+sbsrv.ml: did not receive HSTS header
sby.de: did not receive HSTS header
-sc4le.com: could not connect to host
-scaffoldhireeastrand.co.za: did not receive HSTS header
-scaffoldhirefourways.co.za: did not receive HSTS header
-scaffoldhirerandburg.co.za: did not receive HSTS header
-scaffoldhiresandton.co.za: did not receive HSTS header
+sc4le.com: did not receive HSTS header
scala.click: did not receive HSTS header
-scannabi.com: did not receive HSTS header
+scannabi.com: could not connect to host
+scarvespalace.com: could not connect to host
+scenester.tv: did not receive HSTS header
scentofwine.com: did not receive HSTS header
sceptique.eu: did not receive HSTS header
-sch44r0n.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+sch44r0n.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
schaafenstrasse.koeln: could not connect to host
schachburg.de: did not receive HSTS header
schadegarant.net: could not connect to host
schalkoortbv.nl: did not receive HSTS header
schaper-sport.com: did not receive HSTS header
-schatmeester.be: could not connect to host
+schatmeester.be: did not receive HSTS header
schau-rein.co.at: did not receive HSTS header
schauer.so: could not connect to host
schd.io: did not receive HSTS header
+scheidtweiler.de: did not receive HSTS header
+schellevis.net: did not receive HSTS header
schermreparatierotterdam.nl: did not receive HSTS header
-schil.li: could not connect to host
+schimmel-test.info: could not connect to host
schippers-it.nl: did not receive HSTS header
schlabbi.com: did not receive HSTS header
+schlafguru.com: could not connect to host
schmelzle.io: could not connect to host
schmidttulskie.de: could not connect to host
schmitt.ovh: could not connect to host
-schmitt.ws: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+schmitt.ws: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
schmitz.link: could not connect to host
schneider-electric.tg: did not receive HSTS header
schnell-abnehmen.tips: could not connect to host
schnell-gold.com: could not connect to host
+schnellsuche.de: did not receive HSTS header
+scholarly.com.ph: could not connect to host
+scholarly.ph: could not connect to host
+scholierenvervoerzeeland.nl: did not receive HSTS header
scholl.io: could not connect to host
schollbox.de: could not connect to host
+scholledev.com: could not connect to host
school.in.th: could not connect to host
schooli.io: could not connect to host
+schoolsonice.nl: could not connect to host
schooltrends.co.uk: did not receive HSTS header
schoolze.com: did not receive HSTS header
-schoop.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+schoop.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+schopenhauer-institut.de: could not connect to host
schorel.ovh: could not connect to host
schraebanowicz.net: did not receive HSTS header
schreiber-netzwerk.eu: did not receive HSTS header
@@ -16279,62 +19159,67 @@ schreibnacht.de: did not receive HSTS header
schreinerei-wortmann.de: did not receive HSTS header
schrikdraad.net: did not receive HSTS header
schrodinger.io: could not connect to host
-schrodingersscat.com: could not connect to host
-schrodingersscat.org: could not connect to host
schroepfglas-versand.de: did not receive HSTS header
schroettle.com: did not receive HSTS header
+schsrch.org: could not connect to host
schulterglatzen-altenwalde.de: could not connect to host
-schum.world: could not connect to host
-schummar.de: could not connect to host
+schultz.is: max-age too low: 0
schur-it.de: could not connect to host
-schwanke.in: max-age too low: 3600
schwarzkopfforyou.de: did not receive HSTS header
+schwarzwald-flirt.de: did not receive HSTS header
schwarzwaldcon.de: did not receive HSTS header
schwedenhaus.ag: did not receive HSTS header
schweiz.guide: could not connect to host
-schweizerbolzonello.net: did not receive HSTS header
-schwerkraftlabor.de: did not receive HSTS header
+schweizerbolzonello.net: could not connect to host
schwetz.net: could not connect to host
sci-internet.tk: could not connect to host
scib.tk: could not connect to host
-scicasts.com: max-age too low: 7776000
science-anatomie.com: did not receive HSTS header
scienceathome.org: did not receive HSTS header
+sciencehouse.jp: did not receive HSTS header
sciencemonster.co.uk: could not connect to host
+scientific.boston: could not connect to host
+scifi.fyi: did not receive HSTS header
scionasset.com: did not receive HSTS header
sciototownship-oh.gov: did not receive HSTS header
scis.com.ua: did not receive HSTS header
scitopia.me: could not connect to host
scivillage.com: did not receive HSTS header
sckc.stream: could not connect to host
-sclgroup.cc: did not receive HSTS header
+sclgroup.cc: could not connect to host
+sclns.co: did not receive HSTS header
scm-2017.org: could not connect to host
+scontogiusto.com: could not connect to host
+scoolcode.com: did not receive HSTS header
scooshonline.co.uk: did not receive HSTS header
+scootfleet.com: could not connect to host
scopea.fr: max-age too low: 0
score-savers.com: max-age too low: 10540800
scores4schools.com: could not connect to host
scorobudem.ru: could not connect to host
scorocode.ru: did not receive HSTS header
scotbirchfield.com: did not receive HSTS header
-scottah.com: did not receive HSTS header
scottainslie.me.uk: could not connect to host
scottdial.com: did not receive HSTS header
-scottferguson.com.au: did not receive HSTS header
+scottferguson.com.au: could not connect to host
scottgruber.me: did not receive HSTS header
scotthel.me: did not receive HSTS header
scotthelme.com: did not receive HSTS header
scottnicol.co.uk: could not connect to host
scottstorey.co.uk: could not connect to host
-scotttopperproductions.com: did not receive HSTS header
scottynordstrom.org: could not connect to host
-scourt.info: max-age too low: 0
+scourt.info: could not connect to host
scourt.org.ua: could not connect to host
scoutdb.ch: did not receive HSTS header
-scpartyentertainment.co.uk: did not receive HSTS header
+scpartyentertainment.co.uk: could not connect to host
scrambl.is: could not connect to host
scramble.io: could not connect to host
scrambler.in: could not connect to host
scrapings.net: could not connect to host
+scratchandscuffs.co.uk: could not connect to host
+scratchandscuffs.com: could not connect to host
+scratchandscuffs.uk: could not connect to host
+scredible.com: could not connect to host
screencaster.io: could not connect to host
screenresolution.space: could not connect to host
screensaversplanet.com: did not receive HSTS header
@@ -16348,6 +19233,9 @@ scriptict.nl: did not receive HSTS header
scriptjunkie.us: could not connect to host
scrollstory.com: did not receive HSTS header
scruffymen.com: could not connect to host
+scrumbleship.com: did not receive HSTS header
+scrumstack.co.uk: could not connect to host
+scs-simulatoren.de: could not connect to host
sctm.at: could not connect to host
scuters.club: could not connect to host
scw.com: did not receive HSTS header
@@ -16358,34 +19246,39 @@ sdayman.com: 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
+sdmoscow.ru: did not receive HSTS header
+sdrive-gutachter.de: did not receive HSTS header
sdrobs.com: did not receive HSTS header
sdsl-speedtest.de: could not connect to host
+sdsmanagement.me: could not connect to host
+sdvx.net: did not receive HSTS header
se7ensins.com: did not receive HSTS header
sea-godzilla.com: could not connect to host
-seanationals.org: max-age too low: 1
seanchaidh.org: could not connect to host
+seankilgarriff.com: could not connect to host
seans.cc: could not connect to host
-seanstrout.com: did not receive HSTS header
+seanstrout.com: could not connect to host
seansyardservice.com: did not receive HSTS header
+search: could not connect to host
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]
+seareytraining.com: did not receive HSTS header
searx.pw: could not connect to host
+seattleprivacy.org: could not connect to host
seavancouver.com: did not receive HSTS header
sebastian-bair.de: could not connect to host
-sebastian-lutsch.de: could not connect to host
sebastian-schmidt.me: did not receive HSTS header
+sebastian-tobie.de: could not connect to host
sebastianhampl.de: could not connect to host
-sebastianpedersen.com: did not receive HSTS header
+sebastianpedersen.com: could not connect to host
sebi.cf: could not connect to host
-sebster.com: did not receive HSTS header
sec4share.me: did not receive HSTS header
+sec555.com: did not receive HSTS header
secandtech.com: could not connect to host
secanje.nl: did not receive HSTS header
secboom.com: could not connect to host
seccomp.ru: did not receive HSTS header
seceye.cn: could not connect to host
+sechat.one: could not connect to host
secitem.at: could not connect to host
secitem.de: could not connect to host
secitem.eu: could not connect to host
@@ -16398,12 +19291,14 @@ secondarysurvivorportal.com: could not connect to host
secondarysurvivorportal.help: could not connect to host
secondbike.co.uk: did not receive HSTS header
secondbyte.nl: could not connect to host
-secondpay.nl: could not connect to host
+secondnature.bio: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+secondpay.nl: did not receive HSTS header
secondspace.ca: could not connect to host
secpoc.online: could not connect to host
+secretar.is: could not connect to host
secretnation.net: did not receive HSTS header
secretofanah.com: could not connect to host
-secretpanties.com: could not connect to host
+secretpigeon.com: could not connect to host
sectest.ml: could not connect to host
sectia22.ro: could not connect to host
section508.gov: did not receive HSTS header
@@ -16417,39 +19312,42 @@ secure.link: did not receive HSTS header
securechat4.me: could not connect to host
securedevelop.net: could not connect to host
securefuture.nl: did not receive HSTS header
+secureideas.com: did not receive HSTS header
secureindia.co: could not connect to host
+securejabber.me: could not connect to host
+securemy.website: could not connect to host
secureradio.net: could not connect to host
securesuisse.ch: could not connect to host
-securetronic.ch: could not connect to host
+securetasks.net: did not receive HSTS header
+securi-tay.co.uk: could not connect to host
securita.eu: did not receive HSTS header
security-carpet.com: could not connect to host
security-thoughts.org: could not connect to host
security.google.com: did not receive HSTS header (error ignored - included regardless)
-security.love: could not connect to host
security.xn--q9jyb4c: could not connect to host
securityarena.com: could not connect to host
-securityblues.co.uk: could not connect to host
securitybrief.asia: did not receive HSTS header
securitybrief.co.nz: did not receive HSTS header
securitybrief.com.au: did not receive HSTS header
securitybrief.eu: did not receive HSTS header
-securitybsides.pl: did not receive HSTS header
securitycamerasaustin.net: did not receive HSTS header
-securitycamerasjohnsoncity.com: could not connect to host
+securitycamerasjohnsoncity.com: did not receive HSTS header
securityglance.com: could not connect to host
-securityinet.biz: did not receive HSTS header
-securityinet.net: did not receive HSTS header
+securityinet.biz: could not connect to host
+securityinet.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+securityinet.net: could not connect to host
securityinet.org.il: could not connect to host
-securitysense.co.uk: could not connect to host
securitysoapbox.com: could not connect to host
-securitystreak.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
+securityzap.com: could not connect to host
securiviera.ch: did not receive HSTS header
+securocloud.com: could not connect to host
securon.io: could not connect to host
securoswiss.ch: could not connect to host
-secwise.nl: did not receive HSTS header
+secwise.nl: could not connect to host
sedeusquiser.net: did not receive HSTS header
sedoexpert.nl: could not connect to host
sedoexperts.nl: could not connect to host
@@ -16463,53 +19361,72 @@ seefunk.net: did not receive HSTS header
seehimnaked.com: could not connect to host
seehimnude.com: could not connect to host
seehisnudes.com: could not connect to host
+seekersmart.com: could not connect to host
+seeks.ru: could not connect to host
seekthe.net: did not receive HSTS header
seele.ca: could not connect to host
seemeasaperson.com: did not receive HSTS header
-seen.life: did not receive HSTS header
+seen.life: could not connect to host
+seeonce.co: could not connect to host
seesuite.com: could not connect to host
sehenderson.com: did not receive HSTS header
seida.at: could not connect to host
seiko-dojo.com: could not connect to host
seiler-bad.de: did not receive HSTS header
+seiryokuzai-ch.com: could not connect to host
seizoushokoyuubangou.com: did not receive HSTS header
sektor.team: could not connect to host
selco-himejiminami.com: could not connect to host
+selea.se: did not receive HSTS header
selecadm.name: could not connect to host
selectary.com: could not connect to host
selectcertifiedautos.com: did not receive HSTS header
selectruckscalltrackingreports.com: could not connect to host
-selekzo.com: could not connect to host
-selfdefenserx.com: did not receive HSTS header
+self-signed.com: did not receive HSTS header
+self.nu: did not receive HSTS header
+selfdefenserx.com: could not connect to host
selfhosters.com: could not connect to host
selfie-france.fr: could not connect to host
selfoutlet.com: did not receive HSTS header
selfserverx.com: could not connect to host
selitysvideot.fi: did not receive HSTS header
sellercritic.com: did not receive HSTS header
-sellocdn.com: could not connect to host
+sellmoretires.com: did not receive HSTS header
+sello.com: did not receive HSTS header
+sellocdn.com: did not receive HSTS header
sellservs.co.za: could not connect to host
seltendoof.de: could not connect to host
semantheme.fr: could not connect to host
semen3325.xyz: could not connect to host
semenkovich.com: did not receive HSTS header
semianalog.com: could not connect to host
-semirben.de: max-age too low: 172800
semmlers.com: did not receive HSTS header
semps-servers.de: could not connect to host
+semrush.com: did not receive HSTS header
+semyonov.su: could not connect to host
+semyonov.us: could not connect to host
+send4x.com: did not receive HSTS header
sendash.com: did not receive HSTS header
senedirect.com: could not connect to host
senemusique.com: did not receive HSTS header
-senorporno.com: could not connect to host
+seniorhomepurchaseprogram.com: could not connect to host
+senmonsyoku.top: did not receive HSTS header
+sennase.net: did not receive HSTS header
+senorcontento.com: did not receive HSTS header
+sensavi.ua: did not receive HSTS header
+sensebridge.com: did not receive HSTS header
+senseict.com.au: did not receive HSTS header
senseofnumber.co.uk: did not receive HSTS header
senseye.io: did not receive HSTS header
sensiblemn.org: could not connect to host
sensibus.com: did not receive HSTS header
+sensoft-int.com: could not connect to host
sensoft-int.net: could not connect to host
+sensoft-int.org: could not connect to host
sensound.ml: could not connect to host
-sensualism.com: could not connect to host
+sentic.info: did not receive HSTS header
+sentinelsmotorcycleclub.com: could not connect to host
seo-lagniappe.com: did not receive HSTS header
-seo.london: did not receive HSTS header
seoarchive.org: could not connect to host
seobot.com.au: could not connect to host
seocomposer.com: did not receive HSTS header
@@ -16523,27 +19440,30 @@ seolib.org: could not connect to host
seomarketingdeals.com: did not receive HSTS header
seomen.biz: could not connect to host
seomobo.com: could not connect to host
+seoprovider.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
seosanantonioinc.com: did not receive HSTS header
seoscribe.net: could not connect to host
-seostepbysteplab.com: could not connect to host
seotronix.net: did not receive HSTS header
-seowarp.net: could not connect to host
+seouniversity.org: could not connect to host
+seowarp.net: did not receive HSTS header
sep23.ru: did not receive HSTS header
sepakbola.win: could not connect to host
sephr.com: did not receive HSTS header
sepie.gob.es: did not receive HSTS header
-septakkordeon.de: could not connect to host
-seq.tf: did not receive HSTS header
+seppelec.com: did not receive HSTS header
+seq.tf: could not connect to host
sequatchiecountytn.gov: did not receive HSTS header
+ser-it.pl: 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
sergiojimenezequestrian.com: could not connect to host
+sergivb01.me: could not connect to host
+sergos.de: could not connect to host
serized.pw: could not connect to host
serkaneles.com: did not receive HSTS header
-seru.eu: could not connect to host
servdiscount.com: did not receive HSTS header
servecrypt.com: could not connect to host
servecrypt.net: could not connect to host
@@ -16557,12 +19477,13 @@ servercode.ca: did not receive HSTS header
serverdensity.io: did not receive HSTS header
servergno.me: did not receive HSTS header
serverlauget.no: could not connect to host
-serverlog.net: could not connect to host
servermonkey.nl: could not connect to host
+serverping.io: did not receive HSTS header
servfefe.com: could not connect to host
service-wueste-vodafone.tk: could not connect to host
servicevie.com: did not receive HSTS header
-servidoresweb.online: did not receive HSTS header
+servidoresadmin.com: did not receive HSTS header
+servidoresweb.online: could not connect to host
servpanel.de: did not receive HSTS header
servu.de: did not receive HSTS header
servx.ru: did not receive HSTS header
@@ -16570,55 +19491,55 @@ seryo.moe: could not connect to host
seryo.net: could not connect to host
seryovpn.com: could not connect to host
sesha.co.za: could not connect to host
-setfix.de: did not receive HSTS header
+setfix.de: could not connect to host
sethoedjo.com: could not connect to host
setkit.net: could not connect to host
+setphaserstostun.org: did not receive HSTS header
setterirlandes.com.br: could not connect to host
setuid.de: could not connect to host
sevenet.pl: did not receive HSTS header
sevenhearts.online: could not connect to host
+sevenmatches.com: could not connect to host
+severine-trousselard.com: could not connect to host
+sevinci.ch: could not connect to host
sevsopr.ru: could not connect to host
-sex-education.com: could not connect to host
sexaki.com: did not receive HSTS header
-sexgarage.de: could not connect to host
-sexocomgravidas.com: could not connect to host
-sexoyrelax.com: could not connect to host
+sexara.co: could not connect to host
sexpay.net: could not connect to host
sexshopfacil.com.br: could not connect to host
+sexshopnet.com.br: could not connect to host
sexshopsgay.com: did not receive HSTS header
+sextfriend.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
seyr.it: could not connect to host
+sf3223.com: could not connect to host
sfashion.si: did not receive HSTS header
-sfaturiit.ro: could not connect to host
sfcomercio.com.br: could not connect to host
sfhobbies.com.br: could not connect to host
sfsltd.com: could not connect to host
-sgovaard.nl: did not receive HSTS header
+sgovaard.nl: could not connect to host
sgrmreproduccionapp.azurewebsites.net: could not connect to host
sgthotshot.com: could not connect to host
sgtsnookums.net: could not connect to host
-sh0rt.zone: did not receive HSTS header
-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
+shaamrelief.org: could not connect to host
shadiku.com: could not connect to host
shadow-socks.net: 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
+shadowict.net: could not connect to host
shadowmorph.info: did not receive HSTS header
shadowping.com: could not connect to host
shadowplus.net: could not connect to host
shadowrocket.net: could not connect to host
-shadowroket.com: did not receive HSTS header
+shadowroket.com: could not connect to host
shadowshocks.net: could not connect to host
shadowsocks.gift: could not connect to host
+shadowsocks.live: could not connect to host
shadowsocks.net: could not connect to host
shadowsocks.software: could not connect to host
shadowsocks.vc: could not connect to host
@@ -16627,31 +19548,37 @@ shadowsocksvpn.com: could not connect to host
shadowsoks.com: could not connect to host
shadowsu.info: could not connect to host
shadowsu.top: could not connect to host
-shadowsworldonline.co.uk: did not receive HSTS header
+shadowsworldonline.co.uk: could not connect to host
+shafou.com: could not connect to host
+shafou.net: could not connect to host
shag-shag.ru: could not connect to host
shagi29.ru: did not receive HSTS header
shahbeat.com: could not connect to host
+shainessim.com: could not connect to host
shaitan.eu: could not connect to host
+shakes4u.com: did not receive HSTS header
shandonsg.co.uk: could not connect to host
shanekoster.net: did not receive HSTS header
shanesage.com: could not connect to host
-shanewadleigh.com: did not receive HSTS header
shang-yu.cn: could not connect to host
-shangzhen.site: did not receive HSTS header
-shannoneichorn.com: did not receive HSTS header
+shangzhen.site: could not connect to host
+shankangke.com: could not connect to host
+shannoneichorn.com: could not connect to host
shanxiapark.com: could not connect to host
shanyhs.com: could not connect to host
+shaobin.wang: could not connect to host
shapesedinburgh.co.uk: did not receive HSTS header
shardsoft.com: could not connect to host
-share.works: max-age too low: 1209600
sharecc.co: could not connect to host
+sharecrypted.com: did not receive HSTS header
shareeri.com: could not connect to host
shareimg.xyz: could not connect to host
sharemessage.net: could not connect to host
-shareoine.com: did not receive HSTS header
+shareoine.com: could not connect to host
sharepass.pw: could not connect to host
sharepic.xyz: could not connect to host
sharesplitter.com: could not connect to host
+sharevari.com: could not connect to host
shareworx.net: could not connect to host
shariahlawcenter.com: could not connect to host
shariahlawcenter.org: could not connect to host
@@ -16659,7 +19586,10 @@ sharialawcenter.com: could not connect to host
sharialawcenter.org: could not connect to host
sharingcode.com: did not receive HSTS header
sharkie.org.za: did not receive HSTS header
+sharks.football: did not receive HSTS header
sharpe-practice.co.uk: could not connect to host
+sharperedge.pw: could not connect to host
+sharperedgecomputers.com: could not connect to host
shasso.com: did not receive HSTS header
shatorin.com: did not receive HSTS header
shauncrowley.co.uk: could not connect to host
@@ -16671,9 +19601,13 @@ shawnh.net: could not connect to host
shawnstarrcustomhomes.com: did not receive HSTS header
shawnwilson.info: could not connect to host
shazbots.org: could not connect to host
+sheaspire.com.tw: did not receive HSTS header
sheekdeveloper.com: could not connect to host
+shellcode.com.br: did not receive HSTS header
+shellday.cc: could not connect to host
shellot.com: could not connect to host
shellsec.pw: did not receive HSTS header
+shemissed.me: did not receive HSTS header
shemsconseils.ma: could not connect to host
shena.co.uk: could not connect to host
shengrenyu.com: could not connect to host
@@ -16681,41 +19615,49 @@ shentengtu.idv.tw: could not connect to host
shep.co.il: did not receive HSTS header
sheratan.web.id: could not connect to host
shereallyheals.com: did not receive HSTS header
+sheriffmiamicountyks.gov: max-age too low: 2592000
+sheriffpawneecountyne.gov: could not connect to host
shermantank.biz: did not receive HSTS header
shervik.ga: could not connect to host
shethbox.com: could not connect to host
shevronpatriot.ru: did not receive HSTS header
sheying.tm: could not connect to host
-shiatsu-institut.ch: could not connect to host
+shiatsu-institut.ch: did not receive HSTS header
shibainu.com.br: could not connect to host
shibe.club: could not connect to host
-shieldcomputer.com: could not connect to host
-shieldfe.com: did not receive HSTS header
+shieldcomputer.com: did not receive HSTS header
+shieldfe.com: could not connect to host
shieldofachilles.in: could not connect to host
shift.ooo: did not receive HSTS header
shiftins.com: could not connect to host
shiftnrg.org: did not receive HSTS header
shiftplanning.com: did not receive HSTS header
+shiftpsych.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
shiinko.com: could not connect to host
+shiji456.com: max-age too low: 0
shikinobi.com: did not receive HSTS header
shin-inc.jp: did not receive HSTS header
shindorei.fr: could not connect to host
shinebijoux.com.br: could not connect to host
shinju.moe: could not connect to host
shinobi-fansub.ro: could not connect to host
+shinonome-lab.eu.org: could not connect to host
+shiny.gift: 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: could not connect to host
shippingbo.com: did not receive HSTS header
+shirakaba-cc.com: did not receive HSTS header
shiroki-k.net: could not connect to host
shirosaki.org: could not connect to host
+shiseki.top: did not receive HSTS header
shishamania.de: could not connect to host
-shishkabobnc.com: did not receive HSTS header
shishkin.link: did not receive HSTS header
shitfest.info: did not receive HSTS header
shitposting.life: could not connect to host
-shk.im: could not connect to host
+shivammaheshwari.com: could not connect to host
+shiyouqkl.com: could not connect to host
+shk.im: did not receive HSTS header
shlemenkov.by: could not connect to host
shm-forum.org.uk: could not connect to host
shmibbles.me: could not connect to host
@@ -16724,13 +19666,16 @@ sho-tanaka.jp: could not connect to host
shocksrv.com: did not receive HSTS header
shoemuse.com: did not receive HSTS header
sholtowu.com: could not connect to host
-shome.de: did not receive HSTS header
+shome.de: could not connect to host
shooshosha.com: could not connect to host
shootpooloklahoma.com: could not connect to host
-shop.fr: did not receive HSTS header
+shop4d.com: could not connect to host
+shopcord.co.uk: did not receive HSTS header
+shopdongho.com: did not receive HSTS header
shopdopastor.com.br: could not connect to host
shopherbal.co.za: could not connect to host
shophisway.com: could not connect to host
+shopify.com: did not receive HSTS header
shopods.com: did not receive HSTS header
shopontarget.com: did not receive HSTS header
shoppeno5.com: did not receive HSTS header
@@ -16739,9 +19684,12 @@ shoppingreview.org: did not receive HSTS header
shoprose.ru: could not connect to host
shoprsc.com: could not connect to host
shops.neonisi.com: could not connect to host
+shopsouthafrican.com: did not receive HSTS header
shortpath.com: could not connect to host
shortr.li: could not connect to host
shota.party: could not connect to host
+shota.vip: did not receive HSTS header
+shotonwhat.com: max-age too low: 0
shotpixonline.com.br: did not receive HSTS header
show-saratov.ru: did not receive HSTS header
show-stream.tv: could not connect to host
@@ -16750,28 +19698,30 @@ shower.im: did not receive HSTS header
showkeeper.tv: did not receive HSTS header
showroom.de: did not receive HSTS header
showroom113.ru: could not connect to host
-shoxmusic.net: max-age too low: 2592000
-shred.ch: could not connect to host
-shredoptics.ch: could not connect to host
+shoxmusic.net: did not receive HSTS header
shreyansh26.me: could not connect to host
shtorku.com: could not connect to host
shu-kin.net: did not receive HSTS header
+shuai1122.com: max-age too low: 0
shukatsu-note.com: could not connect to host
+shuletime.ml: could not connect to host
shulker.store: could not connect to host
shurita.org: could not connect to host
shuvo.rocks: could not connect to host
+shuvodeep.de: could not connect to host
shuzicai.cn: could not connect to host
shv25.se: could not connect to host
shwongacc.com: could not connect to host
shymeck.pw: could not connect to host
shypp.it: could not connect to host
shyrydan.es: could not connect to host
+siamdevsqua.re: could not connect to host
siamdevsquare.com: could not connect to host
siamega.com: could not connect to host
siammedia.co: could not connect to host
siamojo.com: could not connect to host
sianimacion.com: could not connect to host
-sianjhon.com: did not receive HSTS header
+sianjhon.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
@@ -16779,12 +19729,14 @@ sickfile.com: could not connect to host
sicklepod.com: could not connect to host
siconnect.us: did not receive HSTS header
sictame-tigf.org: did not receive HSTS header
-sideropolisnoticias.com.br: could not connect to host
-siduga.com: could not connect to host
+sideropolisnoticias.com.br: did not receive HSTS header
+sidpod.ru: did not receive HSTS header
siebens.net: could not connect to host
sieh.es: did not receive HSTS header
-siemencaes.tk: max-age too low: 2592000
+siemencaes.tk: could not connect to host
sieulog.com: could not connect to host
+sieuthigomviet.com: did not receive HSTS header
+siewert-kau.de: did not receive HSTS header
sifls.com: could not connect to host
sifreuret.com: could not connect to host
signaltransmitter.de: did not receive HSTS header
@@ -16800,12 +19752,16 @@ sijimi.cn: did not receive HSTS header
sijmenschoon.nl: did not receive HSTS header
sikatehtaat.fi: did not receive HSTS header
siku.pro: could not connect to host
+silent.live: did not receive HSTS header
silentcircle.com: did not receive HSTS header
silentcircle.org: could not connect to host
silentlink.io: could not connect to host
-silentmode.com: max-age too low: 7889238
silicagelpackets.ca: did not receive HSTS header
+silicon-north.com: could not connect to host
+silicon-vision.com: could not connect to host
+siliconchip.me: could not connect to host
silke-hunde.de: did not receive HSTS header
+silkebeckmann.de: did not receive HSTS header
silqueskineyeserum.com: could not connect to host
silvacor-ziegel.de: max-age too low: 604800
silver-drachenkrieger.de: did not receive HSTS header
@@ -16813,16 +19769,23 @@ silverartcollector.com: did not receive HSTS header
silverback.is: did not receive HSTS header
silvergoldbull.ba: could not connect to host
silvergoldbull.bg: could not connect to host
+silvergoldbull.bj: could not connect to host
silvergoldbull.co.tz: could not connect to host
silvergoldbull.com.gh: could not connect to host
silvergoldbull.hr: could not connect to host
+silvergoldbull.id: could not connect to host
silvergoldbull.kg: could not connect to host
silvergoldbull.ky: could not connect to host
silvergoldbull.lk: could not connect to host
+silvergoldbull.lt: could not connect to host
silvergoldbull.md: could not connect to host
silvergoldbull.mk: could not connect to host
silvergoldbull.ml: could not connect to host
+silvergoldbull.my: could not connect to host
silvergoldbull.ph: could not connect to host
+silvergoldbull.sn: could not connect to host
+silvergoldbull.tg: could not connect to host
+silvergoldbull.tj: 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
@@ -16833,40 +19796,37 @@ simbast.com: could not connect to host
simbol.id: could not connect to host
simbolo.co.uk: could not connect to host
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
simhaf.cf: could not connect to host
-simlau.net: could not connect to host
-simnovo.net: did not receive HSTS header
simobilklub.si: could not connect to host
simod.org: could not connect to host
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: could not connect to host
-simonkjellberg.se: did not receive HSTS header
+simon3k.moe: could not connect to host
+simongong.net: did not receive HSTS header
simonsaxon.com: did not receive HSTS header
simonschmitt.ch: could not connect to host
simonsmh.cc: did not receive HSTS header
-simotrescu.ro: could not connect to host
-simpan.id: could not connect to host
+simpan.id: did not receive HSTS header
simpeo.fr: did not receive HSTS header
-simpeo.org: did not receive HSTS header
-simpleai.net: max-age too low: 600
simpleclassiclife.com: could not connect to host
+simplecrypt.io: could not connect to host
simplelearner.com: could not connect to host
simplepractice.com: did not receive HSTS header
simplerses.com: could not connect to host
simplesamlphp.org: did not receive HSTS header
simplexsupport.com: did not receive HSTS header
+simplifyengineering.co.uk: did not receive HSTS header
simplixos.org: could not connect to host
-simplyenak.com: did not receive HSTS header
simplyrara.com: did not receive HSTS header
+simplystudio.com: could not connect to host
sims4hub.ga: could not connect to host
simtin-net.de: could not connect to host
simumiehet.com: could not connect to host
simyo.nl: did not receive HSTS header
+sin-nombre-alleria.de: could not connect to host
sin30.net: could not connect to host
sincai666.com: could not connect to host
sinceschool.com: could not connect to host
@@ -16874,13 +19834,18 @@ sinclairmoving.com: did not receive HSTS header
sincron.org: could not connect to host
sinefili.com: could not connect to host
sinful.pw: could not connect to host
+sinfulforums.net: could not connect to host
singee.site: could not connect to host
+singel.ch: did not receive HSTS header
singerwang.com: did not receive HSTS header
-singles-berlin.de: could not connect to host
+single-in-stuttgart.de: did not receive HSTS header
+singles-aus-hamburg.de: did not receive HSTS header
+singles-berlin.de: did not receive HSTS header
singul4rity.com: could not connect to host
sinkip.com: could not connect to host
sinn.io: did not receive HSTS header
sinneserweiterung.de: could not connect to host
+sinomod.com: 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
@@ -16888,26 +19853,27 @@ sinsojb.me: could not connect to host
sintesysglobal.com: did not receive HSTS header
sinusbot.online: did not receive HSTS header
sion.moe: did not receive HSTS header
-sipc.org: did not receive HSTS header
sipsik.net: did not receive HSTS header
-sipstix.co.za: did not receive HSTS header
siqi.wang: could not connect to host
-sirburton.com: did not receive HSTS header
siriad.com: could not connect to host
sirius-lee.net: could not connect to host
siro.gq: did not receive HSTS header
siroop.ch: did not receive HSTS header
sisgopro.com: could not connect to host
-sisseastumine.ee: could not connect to host
+sisiengineers.gq: 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
+sisver.host: could not connect to host
+sisver.mx: could not connect to host
siteage.net: 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]
+sitecuatui.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+sitedebelezaemoda.com.br: could not connect to host
sitehome.eu: could not connect to host
-sitehost.io: did not receive HSTS header
+sitehost.io: could not connect to host
+sitehoster.org: did not receive HSTS header
sitemaxiphilippe.ch: could not connect to host
sitennisclub.com: did not receive HSTS header
siterip.org: could not connect to host
@@ -16919,10 +19885,11 @@ sitesuccessful.com: did not receive HSTS header
sitsy.ru: did not receive HSTS header
sittinginoblivion.com: did not receive HSTS header
siusto.com: did not receive HSTS header
-sixcorners.info: did not receive HSTS header
+sixcorners.info: could not connect to host
sixcorners.net: could not connect to host
sixtwentyten.com: did not receive HSTS header
sizingservers.be: did not receive HSTS header
+sizzle.co.uk: did not receive HSTS header
sja-se-training.com: could not connect to host
sjdtaxi.com: did not receive HSTS header
sjhyl11.com: could not connect to host
@@ -16932,6 +19899,8 @@ sjv4u.ch: did not receive HSTS header
sjzebs.com: did not receive HSTS header
sjzget.com: could not connect to host
sjzybs.com: did not receive HSTS header
+sk-net.cz: did not receive HSTS header
+skalarwelle.eu: 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
@@ -16939,60 +19908,75 @@ skarox.ee: could not connect to host
skarox.eu: could not connect to host
skarox.net: could not connect to host
skarox.ru: could not connect to host
-skates.guru: did not receive HSTS header
+skates.guru: max-age too low: 2592000
skday.com: did not receive HSTS header
+sketchywebsite.net: did not receive HSTS header
ski-insurance.com.au: did not receive HSTS header
skidstresser.com: could not connect to host
-skigebied.nl: could not connect to host
-skiinstructor.services: did not receive HSTS header
skilldetector.com: could not connect to host
-skillout.org: could not connect to host
-skillproxy.com: could not connect to host
+skilletfood.com: did not receive HSTS header
+skillout.org: did not receive HSTS header
+skillproxy.com: did not receive HSTS header
skillproxy.net: could not connect to host
skillproxy.org: could not connect to host
+skills2serve.org: could not connect to host
+skillseo.com: could not connect to host
skimming.net: did not receive HSTS header
+skinandglamour.com: did not receive HSTS header
skinbet.co: could not connect to host
skinmarket.co: could not connect to host
+skinwhiteningoptions.com: did not receive HSTS header
skischuleulm.de: did not receive HSTS header
skk.io: could not connect to host
+skks.cz: did not receive HSTS header
+sklepsamsung.pl: did not receive HSTS header
+sklepwielobranzowymd.com: could not connect to host
skocia.net: did not receive HSTS header
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
+skoilly.cn: did not receive HSTS header
skolnieks.lv: could not connect to host
skomski.org: did not receive HSTS header
-skorepova.info: could not connect to host
+skou.dk: could not connect to host
skpdev.net: could not connect to host
+skram.de: did not receive HSTS header
skrimix.tk: could not connect to host
skrivande.co: could not connect to host
skullhouse.nyc: could not connect to host
-skutry.cz: could not connect to host
+skullnet.co.uk: could not connect to host
sky-aroma.com: could not connect to host
sky-universe.net: did not receive HSTS header
-skyanchor.com: did not receive HSTS header
skyasker.cn: could not connect to host
skyasker.com: could not connect to host
skybloom.io: could not connect to host
skybound.link: did not receive HSTS header
+skyeeverest.tk: could not connect to host
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: could not connect to host
+skyminds.net: did not receive HSTS header
+skynet800.goip.de: did not receive HSTS header
+skynetz.tk: could not connect to host
skyoy.com: did not receive HSTS header
skypeassets.com: could not connect to host
-skypoker.com: could not connect to host
+skypoker.com: did not receive HSTS header
skyris.co: did not receive HSTS header
skyrunners.ch: could not connect to host
-skytec.host: did not receive HSTS header
skyvault.io: could not connect to host
skyveo.ml: could not connect to host
+skywalkers.cz: did not receive HSTS header
skyway.capital: did not receive HSTS header
skyworldserver.ddns.net: could not connect to host
+sl-informatique.ovh: could not connect to host
sl1pkn07.wtf: could not connect to host
+sl899.com: did not receive HSTS header
+sl998.com: did not receive HSTS header
slaps.be: could not connect to host
-slash-dev.de: did not receive HSTS header
+slash-dev.de: could not connect to host
slash64.co.uk: could not connect to host
slash64.com: did not receive HSTS header
slash64.uk: could not connect to host
@@ -17002,12 +19986,14 @@ slashdesign.it: did not receive HSTS header
slashem.me: did not receive HSTS header
slatemc.fun: could not connect to host
slatko.io: could not connect to host
+slatop.org: did not receive HSTS header
slattery.co: did not receive HSTS header
slauber.de: did not receive HSTS header
-slaughter.com: could not connect to host
+slaws.io: could not connect to host
sld08.com: did not receive HSTS header
sleeklounge.com: did not receive HSTS header
sleep10.com: could not connect to host
+sleeping.town: did not receive HSTS header
sleepstar.com.mt: did not receive HSTS header
sliceone.com: could not connect to host
slicketl.com: did not receive HSTS header
@@ -17017,13 +20003,15 @@ slightfuture.click: could not connect to host
slightfuture.com: did not receive HSTS header
slimk1nd.nl: could not connect to host
slimmerbouwen.be: did not receive HSTS header
+slingo-sta.com: could not connect to host
slingo.com: did not receive HSTS header
slix.io: could not connect to host
sln.cloud: could not connect to host
+slo-net.net: did not receive HSTS header
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]
+slovenskycestovatel.sk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\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
@@ -17031,14 +20019,15 @@ slse.ca: max-age too low: 0
sluitkampzeist.nl: could not connect to host
sluplift.com: could not connect to host
slycurity.de: could not connect to host
-slytech.ch: could not connect to host
+sm2016.ch: could not connect to host
+smaaker.com: did not receive HSTS header
+smablo.com: could not connect to host
smadav.ml: could not connect to host
smallcdn.rocks: could not connect to host
smallchat.nl: could not connect to host
-smallcloudsolutions.co.za: could not connect to host
-smallpath.me: could not connect to host
smallplanet.ch: did not receive HSTS header
smallshopit.com: did not receive HSTS header
+smarntrading.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
@@ -17046,29 +20035,32 @@ smartbiz.vn: could not connect to host
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
+smarterskies.gov: could not connect to host
smartest-trading.com: could not connect to host
smarthomedna.com: did not receive HSTS header
smartietop.com: could not connect to host
smartit.pro: could not connect to host
-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]
+smartlend.se: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
smartmompicks.com: did not receive HSTS header
smartofficesandsmarthomes.com: did not receive HSTS header
-smartofficeusa.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+smartofficeusa.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
smartphone.continental.com: could not connect to host
smartrade.tech: did not receive HSTS header
smartrak.co.nz: did not receive HSTS header
smartviewing.com: did not receive HSTS header
smartwelve.com: could not connect to host
-smartwritingservice.com: could not connect to host
+smash-gg.club: could not connect to host
smcbox.com: could not connect to host
smdev.fr: could not connect to host
smet.us: could not connect to host
smi-a.me: could not connect to host
smileawei.com: could not connect to host
-smimea.com: did not receive HSTS header
+smilenwa.com: did not receive HSTS header
+smimea.com: could not connect to host
smirkingwhorefromhighgarden.pro: could not connect to host
smith.is: could not connect to host
+smithcountytxtaxrates.gov: could not connect to host
+smithfieldbaptist.org: did not receive HSTS header
smittix.co.uk: did not receive HSTS header
smitug.pw: could not connect to host
smkn1lengkong.sch.id: did not receive HSTS header
@@ -17078,14 +20070,18 @@ sml.lc: could not connect to host
smmcab.ru: could not connect to host
smmcab.website: could not connect to host
smmlaba.io: could not connect to host
-smokinghunks.com: could not connect to host
+smol.cat: could not connect to host
+smoothics.mobi: could not connect to host
smove.sg: did not receive HSTS header
+smow.com: did not receive HSTS header
+smow.de: did not receive HSTS header
smplix.com: could not connect to host
smplr.uk: could not connect to host
smries.com: could not connect to host
sms1.ro: could not connect to host
smsben.cn: did not receive HSTS header
-smsben.com: did not receive HSTS header
+smsben.com: could not connect to host
+smsben.net: did not receive HSTS header
smskeywords.co.uk: could not connect to host
smspodmena.ru: could not connect to host
smtp.bz: did not receive HSTS header
@@ -17093,40 +20089,45 @@ smtpdev.com: could not connect to host
smuhelper.cn: could not connect to host
smusg.com: did not receive HSTS header
smutba.se: did not receive HSTS header
+smys.uk: could not connect to host
snafarms.com: did not receive HSTS header
snailing.org: could not connect to host
snake.dog: could not connect to host
snakehosting.dk: did not receive HSTS header
snapappts.com: could not connect to host
+snapfinance.com: did not receive HSTS header
snapnudes.co: could not connect to host
+snaptier.co: did not receive HSTS header
snapworks.net: did not receive HSTS header
snarf.in: could not connect to host
-snazel.co.uk: could not connect to host
sneaker.date: could not connect to host
sneed.company: could not connect to host
+sneeuwhoogtes.eu: did not receive HSTS header
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
+sngallery.co.uk: did not receive HSTS header
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
+snip.run: could not connect to host
+snippet.host: could not connect to host
snod.land: did not receive HSTS header
-snoozedds.com: max-age too low: 600
+snopyta.com: could not connect to host
snoqualmiefiber.org: could not connect to host
snoringhq.com: did not receive HSTS header
snovey.com: could not connect to host
snow-online.de: could not connect to host
snowdy.eu: could not connect to host
snowdy.link: could not connect to host
-snrat.com: did not receive HSTS header
so-healthy.co.uk: did not receive HSTS header
sobabox.ru: could not connect to host
+sobelift.com: could not connect to host
sobinski.pl: did not receive HSTS header
soboleva-pr.com.ua: could not connect to host
soc.net: could not connect to host
-socal-babes.com: could not connect to host
soccergif.com: could not connect to host
soci.ml: could not connect to host
social-journey.com: could not connect to host
@@ -17138,10 +20139,11 @@ socialfacecook.com: did not receive HSTS header
socialgrowing.cl: did not receive HSTS header
socialhead.io: could not connect to host
socialhub.com: did not receive HSTS header
-socializam.com: did not receive HSTS header
socialprize.com: did not receive HSTS header
socialspirit.com.br: did not receive HSTS header
socialstrata.com: did not receive HSTS header
+socialtraderpartner.com: did not receive HSTS header
+socialweblearning.com: 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
@@ -17151,22 +20153,30 @@ sockeye.cc: could not connect to host
socomponents.co.uk: could not connect to host
sodacore.com: could not connect to host
sodamakerclub.com: did not receive HSTS header
+sofort.com: did not receive HSTS header
softballsavings.com: did not receive HSTS header
softbebe.com: did not receive HSTS header
softclean.pt: did not receive HSTS header
+softlan.com.py: could not connect to host
softplaynation.co.uk: did not receive HSTS header
software.rocks: could not connect to host
+softwarehardenberg.nl: did not receive HSTS header
sogeek.me: could not connect to host
sogravatas.net.br: could not connect to host
+sohncloud.my-router.de: did not receive HSTS header
sojingle.net: could not connect to host
soju.fi: did not receive HSTS header
+sokche.com: did not receive HSTS header
sokolka.tv: did not receive HSTS header
sol-3.de: did not receive HSTS header
sol.works: did not receive HSTS header
solarcom.com.br: could not connect to host
+solariiknight.org: did not receive HSTS header
solartrackerapp.com: could not connect to host
soldbygold.net: did not receive HSTS header
+soldecom.com: did not receive HSTS header
solentes.com.br: could not connect to host
+solepurposetest.com: did not receive HSTS header
solidfuelappliancespares.co.uk: did not receive HSTS header
solidimage.com.br: could not connect to host
solidtuesday.com: could not connect to host
@@ -17176,45 +20186,57 @@ 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
-soloshu.co: did not receive HSTS header
+sollevix.ovh: did not receive HSTS header
+soloshu.co: could not connect to host
solosmusic.xyz: could not connect to host
solsystems.ru: did not receive HSTS header
-solus-project.com: did not receive HSTS header
+soltekla.com: did not receive HSTS header
+soluphant.de: max-age too low: 10368000
+solus-project.com: could not connect to host
solutive.fi: did not receive HSTS header
+solve-it.se: did not receive HSTS header
+solve.co.uk: did not receive HSTS header
+solved.tips: could not connect to host
solymar.co: could not connect to host
+somcase.com.br: did not receive HSTS header
some.rip: did not receive HSTS header
somebodycares.org: did not receive HSTS header
-somepills.com: did not receive HSTS header
-somersetscr.nhs.uk: could not connect to host
someshit.xyz: could not connect to host
something-else.cf: could not connect to host
somethingnew.xyz: could not connect to host
-somethingsimilar.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+somethingsimilar.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
somewherein.jp: did not receive HSTS header
-somosnoticia.com.br: did not receive HSTS header
+somosnoticia.com.br: max-age too low: 0
+somoyorkies.com: could not connect to host
sonafe.info: could not connect to host
sonerezh.bzh: did not receive HSTS header
songluck.com: could not connect to host
-songsmp3.net: could not connect to host
+songshuzuoxi.com: could not connect to host
+songsmp3.io: did not receive HSTS header
+songsmp3.net: did not receive HSTS header
sonialive.com: did not receive HSTS header
sonic.network: could not connect to host
sonicrainboom.rocks: could not connect to host
-sonix.dk: could not connect to host
sonja-daniels.com: could not connect to host
sonja-kowa.de: could not connect to host
sonoecoracao.com.br: could not connect to host
sonyforum.no: did not receive HSTS header
soobi.org: did not receive HSTS header
-soodwatthanaphon.net: did not receive HSTS header
+soodwatthanaphon.net: could not connect to host
soondy.com: could not connect to host
+soontm.de: could not connect to host
soothemobilemassage.com.au: did not receive HSTS header
-sopher.io: did not receive HSTS header
+soph.us: could not connect to host
+sophieandtrey.com: did not receive HSTS header
soply.com: could not connect to host
-soporte.cc: could not connect to host
+soporte.cc: did not receive HSTS header
+soquee.net: could not connect to host
+soraiaschneider.com.br: could not connect to host
sorenam.com: did not receive HSTS header
sorensen-online.com: could not connect to host
sorever.online: did not receive HSTS header
sorex.photo: did not receive HSTS header
+sorincocorada.ro: could not connect to host
sorinmuntean.ro: did not receive HSTS header
sortaweird.net: could not connect to host
sortingwizard.com: could not connect to host
@@ -17224,21 +20246,25 @@ sosaka.ml: could not connect to host
sosecu.red: could not connect to host
sosesh.shop: could not connect to host
sosiolog.com: did not receive HSTS header
-sosko.in.rs: could not connect to host
sospromotions.com.au: did not receive HSTS header
+sotai.tk: did not receive HSTS header
sotavasara.net: did not receive HSTS header
+sotayhoctap.com: did not receive HSTS header
sotiran.com: did not receive HSTS header
sotor.de: did not receive HSTS header
+sotthewes.nl: did not receive HSTS header
soucorneteiro.com.br: could not connect to host
+sougi-review.top: did not receive HSTS header
soulcraft.bz: could not connect to host
-soulema.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+soulema.com: could not connect to host
soulfulglamour.uk: could not connect to host
-soulsteer.com: did not receive HSTS header
+souly.cc: could not connect to host
soundedj.com.br: could not connect to host
soundforsound.co.uk: did not receive HSTS header
-soundgasm.net: could not connect to host
+soundhunter.xyz: 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]
+souqtajmeel.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+souravsaha.com: could not connect to host
sourcecode.love: could not connect to host
sourcelair.com: did not receive HSTS header
sourcely.net: could not connect to host
@@ -17247,8 +20273,11 @@ 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
+southernstructuralsolutions.com: did not receive HSTS header
southgale.condos: could not connect to host
southside-crew.club: could not connect to host
+southsidebargaincenter.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+southwesteventhire.co.uk: did not receive HSTS header
southwindsor-ct.gov: could not connect to host
southworcestershiregpservices.co.uk: could not connect to host
soutien-naissance.com: could not connect to host
@@ -17257,6 +20286,7 @@ souyar.de: could not connect to host
souyar.net: could not connect to host
souyar.us: could not connect to host
soved.eu: could not connect to host
+sovereignpcs.com: could not connect to host
sovereignshare.com: could not connect to host
sown.dyndns.org: could not connect to host
sowncloud.de: could not connect to host
@@ -17271,48 +20301,52 @@ spacemo.com: did not receive HSTS header
spacountryexplorer.org.au: did not receive HSTS header
spaggel.nl: did not receive HSTS header
spam.lol: could not connect to host
-spamloco.net: did not receive HSTS header
-spamwc.de: did not receive HSTS header
+spamloco.net: could not connect to host
+spanda.io: could not connect to host
spangehlassociates.com: did not receive HSTS header
spanien.guide: could not connect to host
-sparelib.com: max-age too low: 3650
+spar-ni.co.uk: did not receive HSTS header
spark.team: could not connect to host
+sparkasse.de: did not receive HSTS header
sparkbase.cn: could not connect to host
+sparklatvia.lv: could not connect to host
sparklingsparklers.com: did not receive HSTS header
-sparkresearch.net: could not connect to host
sparkreviewcenter.com: could not connect to host
sparkwood.org: could not connect to host
sparmedo.de: did not receive HSTS header
sparsa.army: could not connect to host
sparta-solutions.de: could not connect to host
-sparta-trade.com: could not connect to host
+sparta-trade.com: did not receive HSTS header
+spartaconsulting.fi: did not receive HSTS header
spartantheatre.org: could not connect to host
+sparxsolutions.be: did not receive HSTS header
spauted.com: could not connect to host
spawn.cz: could not connect to host
+spaziofamiglie.ch: did not receive HSTS header
spcx.eu: could not connect to host
spd-pulheim-mitte.de: did not receive HSTS header
spdysync.com: could not connect to host
specialedesigns.com: could not connect to host
specialistnow.com.au: did not receive HSTS header
+specialized-hosting.eu: could not connect to host
spectreattack.com: did not receive HSTS header
-spectroom.space: could not connect to host
+spectroom.space: did not receive HSTS header
spectrosoftware.de: could not connect to host
speculor.net: could not connect to host
spedition-transport-umzug.de: could not connect to host
spedplus.com.br: did not receive HSTS header
speed-mailer.com: could not connect to host
speedcounter.net: could not connect to host
+speeder.cf: 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
-spha.info: could not connect to host
+sperohub.lt: could not connect to host
sphereblur.com: could not connect to host
sphinx.network: could not connect to host
spicydog.tk: could not connect to host
@@ -17320,12 +20354,14 @@ spicywombat.com: could not connect to host
spiegels.nl: did not receive HSTS header
spiel-teppich.de: could not connect to host
spielcasinos.com: did not receive HSTS header
+spiellawine.de: could not connect to host
spikeykc.me: could not connect to host
spillersfamily.net: could not connect to host
spilsbury.io: could not connect to host
spineandscoliosis.com: did not receive HSTS header
spinner.dnshome.de: could not connect to host
spinor.im: could not connect to host
+spira-group.eu: could not connect to host
spiralschneiderkaufen.de: could not connect to host
spirit-dev.net: max-age too low: 0
spiritbionic.ro: could not connect to host
@@ -17334,19 +20370,16 @@ 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
-splendidspoon.com: max-age too low: 0
split.is: could not connect to host
splunk.zone: could not connect to host
spoketwist.com: did not receive HSTS header
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
-sport247.bet: max-age too low: 2592000
+sporara.com: could not connect to host
sportchirp-internal.azurewebsites.net: did not receive HSTS header
sportflash.info: did not receive HSTS header
sporthit.ru: could not connect to host
@@ -17362,12 +20395,16 @@ spotlightsrule.ddns.net: could not connect to host
spotteredu.com: did not receive HSTS header
spr.id.au: could not connect to host
spreadsheets.google.com: did not receive HSTS header (error ignored - included regardless)
+spreadthenews.eu: could not connect to host
+spree.co.za: did not receive HSTS header
spresso.me: did not receive HSTS header
sprigings.com: did not receive HSTS header
+springfieldbricks.com: could not connect to host
springreizen.nl: did not receive HSTS header
springsoffthegrid.com: could not connect to host
+sprinklermanohio.com: did not receive HSTS header
sprint.ml: did not receive HSTS header
-sprk.fitness: did not receive HSTS header
+sprk.fitness: could not connect to host
sproing.ca: max-age too low: 0
sproutconnections.com: could not connect to host
sprueche-zum-valentinstag.de: could not connect to host
@@ -17375,17 +20412,18 @@ sprueche-zur-geburt.info: could not connect to host
sprueche-zur-hochzeit.de: did not receive HSTS header
sprueche-zur-konfirmation.de: did not receive HSTS header
sprutech.de: could not connect to host
-sputnik1net.org: could not connect to host
+spunkt.fr: did not receive HSTS header
spykedigital.com: could not connect to host
sqetsa.com: did not receive HSTS header
sqkaccountancy.co.uk: did not receive HSTS header
-sqshq.de: did not receive HSTS header
+sqshq.de: could not connect to host
squaddraft.com: did not receive HSTS header
-squadlinx.com: did not receive HSTS header
+squadlinx.com: could not connect to host
square.gs: could not connect to host
squarelab.it: could not connect to host
squareonebgc.com.ph: could not connect to host
squatldf.org: could not connect to host
+squawk.cc: could not connect to host
squeakql.online: could not connect to host
squids.space: could not connect to host
squirtlesbians.net: could not connect to host
@@ -17400,40 +20438,55 @@ srmaximo.com: could not connect to host
srna.sk: did not receive HSTS header
srpdb.com: did not receive HSTS header
srrr.ca: could not connect to host
+srun.in: did not receive HSTS header
+srv.solutions: did not receive HSTS header
srvonfire.com: could not connect to host
ss-free.net: could not connect to host
ss-x.ru: could not connect to host
ss.wtf: could not connect to host
-ssc8689.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-ssc8689.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-ssco.xyz: did not receive HSTS header
+ss6957.com: could not connect to host
+ssc8689.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+ssc8689.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+ssc8809.com: max-age too low: 0
+ssco.xyz: could not connect to host
ssconn.com: could not connect to host
-ssdservers.co.uk: could not connect to host
+ssdservers.co.uk: did not receive HSTS header
+ssh-keys.online: did not receive HSTS header
ssh.nu: did not receive HSTS header
sshool.at: could not connect to host
ssl.panoramio.com: could not connect to host
ssl.rip: could not connect to host
sslcertificateshop.com: did not receive HSTS header
+ssld.de: could not connect to host
+ssldev.net: could not connect to host
sslzilla.de: did not receive HSTS header
+ssmato.me: could not connect to host
ssn1.ru: did not receive HSTS header
+sso.to: could not connect to host
sspanda.com: could not connect to host
ssrvpn.tech: could not connect to host
sss3s.com: could not connect to host
+ssuc.net: could not connect to host
ssworld.ga: could not connect to host
+st-li.com: could not connect to host
staack.com: could not connect to host
stabletoken.com: could not connect to host
staceyhankeinc.com: did not receive HSTS header
stackfiles.io: could not connect to host
stackhub.cc: could not connect to host
+stacktile.io: could not connect to host
stadionmanager.com: could not connect to host
stadjerspasonline.nl: could not connect to host
+stadt-apotheke-muensingen.de: did not receive HSTS header
stadtgartenla.com: could not connect to host
+stadtpapa.de: could not connect to host
staffjoy.com: did not receive HSTS header
staffjoystaging.com: could not connect to host
+stagend.com: did not receive HSTS header
stagingjobshq.com: could not connect to host
-stahl.xyz: did not receive HSTS header
+stahl.xyz: could not connect to host
stahlfors.com: could not connect to host
-stair.ch: could not connect to host
+stakeshare.org: did not receive HSTS header
stakestrategy.com: could not connect to host
stalkerhispano.com: max-age too low: 0
stalkthe.net: could not connect to host
@@ -17441,8 +20494,10 @@ 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
+stameystreet.com: could not connect to host
stamonicatourandtravel.com: could not connect to host
stampederadon.com: could not connect to host
+stampsbar.co.uk: 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
@@ -17450,31 +20505,36 @@ standuppaddlesports.com.au: did not receive HSTS header
stang.moe: 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-one.co.uk: could not connect to host
star-stuff.de: did not receive HSTS header
star.do: did not receive HSTS header
+star.garden: 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.com: could not connect to host
+starease.net: could not connect to host
starfeeling.net: could not connect to host
+stargarder-jungs.de: did not receive HSTS header
stargatepartners.com: did not receive HSTS header
-starinvestors.in: could not connect to host
+starinvestors.in: did not receive HSTS header
starking.net.cn: 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
+starphotoboothsni.co.uk: could not connect to host
starplatinum.jp: could not connect to host
+starport.com.au: did not receive HSTS header
starquake.nl: did not receive HSTS header
starsbattle.net: could not connect to host
starskim.cn: could not connect to host
starteesforsale.co.za: did not receive HSTS header
-startsamenvitaal.nu: did not receive HSTS header
+startsamenvitaal.nu: could not connect to host
startup.melbourne: could not connect to host
+startupgenius.org: did not receive HSTS header
startuplevel.com: could not connect to host
startuponcloud.com: max-age too low: 2678400
-startuppeople.co.uk: could not connect to host
+startuppeople.co.uk: did not receive HSTS header
startupum.ru: could not connect to host
starwatches.eu: could not connect to host
stash.ai: did not receive HSTS header
@@ -17487,10 +20547,13 @@ static-692b8c32.de: could not connect to host
static-assets.io: could not connect to host
static.hosting: could not connect to host
static.or.at: did not receive HSTS header
+static.today: could not connect to host
staticisnoise.com: could not connect to host
+stationary-traveller.eu: could not connect to host
stationaryjourney.com: did not receive HSTS header
-stationcharlie.com: could not connect to host
-stationnementdenuit.ca: could not connect to host
+stationatwillowgrove.com: did not receive HSTS header
+stationcharlie.com: did not receive HSTS header
+stationnementdenuit.ca: 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
@@ -17499,20 +20562,29 @@ stavebnice.net: could not connect to host
staxflax.tk: could not connect to host
stayokhotelscdc-mailing.com: could not connect to host
stcable.net: did not receive HSTS header
-stcomex.com: did not receive HSTS header
+stcomex.com: could not connect to host
+stcu.org: did not receive HSTS header
+stdemianabookstore.org: did not receive HSTS header
stdev.org: could not connect to host
+stdev.top: could not connect to host
+steakhaus-zumdorfbrunnen.de: did not receive HSTS header
steamhours.com: could not connect to host
steampunkrobot.com: did not receive HSTS header
-steckel.cc: did not receive HSTS header
+steamscore.info: could not connect to host
+steckel.cc: could not connect to host
steelbea.ms: could not connect to host
steelrhino.co: could not connect to host
steem.io: did not receive HSTS header
steenackers.be: did not receive HSTS header
+stefanovski.io: could not connect to host
stefanweiser.de: did not receive HSTS header
steffi-in-australien.com: could not connect to host
-stellarvale.net: could not connect to host
+steigerplank.com: did not receive HSTS header
+stellarvale.net: did not receive HSTS header
stellen.ch: did not receive HSTS header
stem.is: did not receive HSTS header
+stemapp.io: did not receive HSTS header
+stepbymestudios.co.uk: did not receive HSTS header
stepbystep3d.com: did not receive HSTS header
steph-autoecole.ch: did not receive HSTS header
steph3n.me: could not connect to host
@@ -17524,36 +20596,42 @@ stephensolis.net: could not connect to host
stephensolisrey.es: could not connect to host
steplogictalent.com: could not connect to host
sterjoski.com: did not receive HSTS header
-stesti.cz: could not connect to host
+sterlingheights.gov: could not connect to host
+stetspa.it: could not connect to host
+steuer-voss.de: could not connect to host
+steuerberater-essen-steele.com: could not connect to host
steuerkanzlei-und-wirtschaftsberater-manke.de: could not connect to host
+steuerseminare-graf.de: did not receive HSTS header
steve.kiwi: could not connect to host
stevechekblain.win: could not connect to host
+stevemonteyne.be: could not connect to host
stevengoodpaster.com: could not connect to host
-stevenkwan.me: could not connect to host
+stevenhumphrey.uk: did not receive HSTS header
+stevenkwan.me: did not receive HSTS header
+stevenlepen.fr: did not receive HSTS header
stevensheffey.me: could not connect to host
stevensononthe.net: did not receive HSTS header
-stevenz.net: did not receive HSTS header
-stevenz.xyz: 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
+stichtingscholierenvervoerzeeland.nl: could not connect to host
+stickerparadise.me: could not connect to host
sticklerjs.org: could not connect to host
stickmy.cn: could not connect to host
stickswag.cf: could not connect to host
stickswag.eu: could not connect to host
+stiebelservice.com.au: did not receive HSTS header
stiens.de: did not receive HSTS header
stiffordacademy.org.uk: could not connect to host
stig.io: did not receive HSTS header
stiger.me: could not connect to host
stigroom.com: could not connect to host
-stijnbelmans.be: max-age too low: 604800
stikkie.me: could not connect to host
stilettomoda.com.br: could not connect to host
stillblackhat.id: could not connect to host
stillnessproject.com: did not receive HSTS header
stillyarts.com: did not receive HSTS header
stinkytrashhound.com: could not connect to host
-stinsky.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
stirlingpoon.net: could not connect to host
stirlingpoon.xyz: could not connect to host
stisaac.org: did not receive HSTS header
@@ -17562,9 +20640,9 @@ 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: max-age too low: 0
+stl.news: max-age too low: 2592000
stlucasmuseum.org: did not receive HSTS header
-stm32f4.jp: could not connect to host
+stmarkcharlotte.org: did not receive HSTS header
stmbgr.com: could not connect to host
stn.me.uk: did not receive HSTS header
stnl.de: could not connect to host
@@ -17572,55 +20650,55 @@ stockseyeserum.com: could not connect to host
stocktrade.de: could not connect to host
stoffe-monster.de: did not receive HSTS header
stoffelen.nl: did not receive HSTS header
-stogiesandmash.com: max-age too low: 0
stoianlawfirm.com: could not connect to host
stoick.me: could not connect to host
-stoinov.com: did not receive HSTS header
stolbart.com: could not connect to host
stole-my.bike: could not connect to host
stole-my.tv: could not connect to host
stolkschepen.nl: did not receive HSTS header
stomadental.com: did not receive HSTS header
stonecutterscommunity.com: could not connect to host
+stonedworms.de: could not connect to host
stonefusion.org.uk: could not connect to host
stonemain.eu: could not connect to host
stonemanbrasil.com.br: could not connect to host
stopakwardhandshakes.org: could not connect to host
stopbreakupnow.org: could not connect to host
stopwoodfin.org: could not connect to host
-storageshedsnc.com: did not receive HSTS header
storbritannien.guide: could not connect to host
store-host.com: did not receive HSTS header
store10.de: could not connect to host
storecove.com: did not receive HSTS header
storeden.com: did not receive HSTS header
storefrontify.com: could not connect to host
+storeprice.co.uk: did not receive HSTS header
storeprijs.nl: did not receive HSTS header
-storiesofhealth.org: could not connect to host
+storiesofhealth.org: did not receive HSTS header
stormhub.org: could not connect to host
stormwatcher.org: could not connect to host
-stormyyd.com: max-age too low: 0
+stormyyd.com: could not connect to host
+storytea.top: could not connect to host
stpatricksguild.com: did not receive HSTS header
stqry.com: did not receive HSTS header
str0.at: did not receive HSTS header
straightedgebarbers.ca: did not receive HSTS header
-strangemusicinc.com: did not receive HSTS header
+strajnar.si: could not connect to host
+stralingsonzin.com: could not connect to host
strangeplace.net: did not receive HSTS header
strangescout.me: could not connect to host
strasweb.fr: did not receive HSTS header
-stratuscloud.co.za: did not receive HSTS header
stratuscloudconsulting.cn: did not receive HSTS header
stratuscloudconsulting.co.uk: did not receive HSTS header
stratuscloudconsulting.co.za: did not receive HSTS header
stratuscloudconsulting.com: did not receive HSTS header
stratuscloudconsulting.in: did not receive HSTS header
stratuscloudconsulting.info: did not receive HSTS header
-stratuscloudconsulting.net: did not receive HSTS header
stratuscloudconsulting.org: did not receive HSTS header
strbt.de: could not connect to host
strchr.com: did not receive HSTS header
stream-ing.xyz: could not connect to host
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
@@ -17634,19 +20712,24 @@ strehl.tk: could not connect to host
streklhof.at: did not receive HSTS header
strelitzia02.com: could not connect to host
stressfreehousehold.com: could not connect to host
+stretchpc.com: could not connect to host
strictlynormal.com: could not connect to host
strictlysudo.com: could not connect to host
-strife.tk: did not receive HSTS header
+strife.tk: could not connect to host
strila.me: could not connect to host
+stringbeanstudio.com: did not receive HSTS header
striptizer.tk: could not connect to host
strming.com: could not connect to host
stroeercrm.de: could not connect to host
+strom.family: could not connect to host
+stromberger.org: max-age too low: 172800
strongest-privacy.com: could not connect to host
strongtowerpc.com: could not connect to host
+strutta.me: max-age too low: 2592000
struxureon.com: did not receive HSTS header
stuartbaxter.co: could not connect to host
+stuarts.xyz: 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
@@ -17655,38 +20738,45 @@ studentskydenik.cz: could not connect to host
studenttravel.cz: could not connect to host
studer.su: could not connect to host
studiemeter.nl: did not receive HSTS header
+studienportal.eu: could not connect to host
studienservice.de: did not receive HSTS header
studiereader.nl: did not receive HSTS header
studinf.xyz: could not connect to host
-studio-art.pro: did not receive HSTS header
studio-panic.com: could not connect to host
studio-webdigi.com: did not receive HSTS header
+studio44.fit: did not receive HSTS header
studiocn.cn: could not connect to host
+studiodentisticosanmarco.it: could not connect to host
studiodoprazer.com.br: could not connect to host
-studiopop.com.br: did not receive HSTS header
+studiotrece.com: did not receive HSTS header
studiozelden.com: did not receive HSTS header
studport.rv.ua: could not connect to host
studyabroadstation.com: could not connect to host
-studybay.com: could not connect to host
+studybay.com: did not receive HSTS header
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
-stuermer.me: did not receive HSTS header
stuff-fibre.co.nz: did not receive HSTS header
+stuffie.org: did not receive HSTS header
+stuffiwouldbuy.com: could not connect to host
stugb.de: did not receive HSTS header
stumeta2018.de: could not connect to host
+stumf.si: could not connect to host
stupidstatetricks.com: could not connect to host
sturbi.de: did not receive HSTS header
sturbock.me: did not receive HSTS header
sturdio.com.br: could not connect to host
sturge.co.uk: did not receive HSTS header
stutsmancounty.gov: could not connect to host
-stuttgart-gablenberg.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+stuttgart-gablenberg.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
stuudium.cloud: could not connect to host
stuudium.life: could not connect to host
+stylaq.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
stylenda.com: could not connect to host
+styles.pm: could not connect to host
stylle.me: could not connect to host
+styloeart.com: could not connect to host
stytt.com: could not connect to host
suaraangin.com: could not connect to host
suareforma.com: could not connect to host
@@ -17698,28 +20788,37 @@ 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
-subsistence.wiki: could not connect to host
+subrosr.com: could not connect to host
subsys.no: did not receive HSTS header
subterfuge.io: did not receive HSTS header
subtitle.rip: could not connect to host
subwayz.de: did not receive HSTS header
subzerolosangeles.com: did not receive HSTS header
+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
suchprogrammer.net: did not receive HSTS header
+sud66.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
sudo.im: could not connect to host
sudo.org.au: did not receive HSTS header
+sudokian.io: could not connect to host
sudosu.fr: could not connect to host
+sudya-dredd.ru: did not receive HSTS header
suempresa.cloud: could not connect to host
suffts.de: could not connect to host
sugarcitycon.com: could not connect to host
+sugarfactory.cz: did not receive HSTS header
+sugarhillsfarm.com: could not connect to host
sugarsweetorsour.com: did not receive HSTS header
sugartownfarm.com: could not connect to host
-suian.or.jp: max-age too low: 86400
suite73.org: could not connect to host
suited21.com: could not connect to host
suitocracy.com: could not connect to host
+sujatadev.in: could not connect to host
+suki.moe: could not connect to host
+sukoyakapp.com: could not connect to host
+sulian.me: could not connect to host
summa-prefis.com: did not receive HSTS header
summer.ga: could not connect to host
summermc.cc: could not connect to host
@@ -17728,27 +20827,32 @@ summitmasters.net: did not receive HSTS header
sumoscout.de: did not receive HSTS header
sumthing.com: could not connect to host
sun-leo.co.jp: did not receive HSTS header
+sun-wellness-online.com.vn: did not receive HSTS header
sun.re: did not receive HSTS header
sunboxstore.jp: did not receive HSTS header
suncountrymarine.com: did not receive HSTS header
sundaycooks.com: max-age too low: 2592000
+sundayrest.com: max-age too low: 7889238
suneilpatel.com: could not connect to host
sunfeathers.net: could not connect to host
sunfireshop.com.br: could not connect to host
-sunfulong.blog: could not connect to host
-sunfulong.me: could not connect to host
+sunjaydhama.com: could not connect to host
sunlandsg.vn: did not receive HSTS header
sunnyfruit.ru: could not connect to host
-sunriseafricarelief.com: did not receive HSTS header
-sunset.im: could not connect to host
+sunnylyx.com: could not connect to host
+sunnysidechurchofchrist.org: did not receive HSTS header
+sunriseafricarelief.com: could not connect to host
+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
+suool.net: did not receive HSTS header
suos.io: could not connect to host
+suourl.com: did not receive HSTS header
+supcoronado.com: did not receive HSTS header
supcro.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
@@ -17763,7 +20867,6 @@ supercreepsvideo.com: did not receive HSTS header
superiorfloridavacation.com: could not connect to host
superklima.ro: did not receive HSTS header
superlentes.com.br: could not connect to host
-supermil.ch: could not connect to host
supernovabrasil.com.br: did not receive HSTS header
superpase.com: could not connect to host
supersahnetorten.de: could not connect to host
@@ -17771,48 +20874,58 @@ supersalescontest.nl: did not receive HSTS header
superschnappchen.de: could not connect to host
supersec.es: could not connect to host
supersecurefancydomain.com: could not connect to host
+supertechcrew.com: did not receive HSTS header
supertramp-dafonseca.com: did not receive HSTS header
superuser.fi: could not connect to host
superwally.org: could not connect to host
-superway.es: did not receive HSTS header
supes.io: did not receive HSTS header
-supperclub.es: could not connect to host
-supplementswatch.com: did not receive HSTS header
+supperclub.es: did not receive HSTS header
+supplementswatch.com: could not connect to host
support4server.de: could not connect to host
supportfan.gov: could not connect to host
supportme123.com: did not receive HSTS header
-suppwatch.com: did not receive HSTS header
+suppwatch.com: could not connect to host
suprlink.net: could not connect to host
supweb.ovh: could not connect to host
+surao.cz: max-age too low: 60
+surasak.io: could not connect to host
+surasak.net: could not connect to host
+surasak.org: 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
+surfpacific.com: max-age too low: 300
+surgenet.nl: could not connect to host
surgiclinic.gr: did not receive HSTS header
surkatty.org: did not receive HSTS header
+surrealcoder.com: could not connect to host
suruifu.tk: could not connect to host
-surveillance104.com: could not connect to host
survivalistplanet.com: could not connect to host
+survivalmonkey.com: did not receive HSTS header
+susanbpilates.co: could not connect to host
susanvelez.com: did not receive HSTS header
susastudentenjobs.de: could not connect to host
susconam.org: could not connect to host
-suseasky.com: did not receive HSTS header
+suseasky.com: could not connect to host
sushifrick.de: could not connect to host
sushiwereld.be: did not receive HSTS header
-susoccm.org: did not receive HSTS header
suspiciousdarknet.xyz: could not connect to host
sussexwebdesigns.com: could not connect to host
sussexwebsites.info: could not connect to host
-sustainability.gov: did not receive HSTS header
suttonbouncycastles.co.uk: could not connect to host
suvidhaapay.com: could not connect to host
+suwalls.com: could not connect to host
suzukikazuki.com: could not connect to host
suzukikenichi.com: did not receive HSTS header
svadobkajuvi.sk: did not receive HSTS header
+svallee.fr: did not receive HSTS header
svarovani.tk: could not connect to host
svatba-frantovi.cz: could not connect to host
+svdreamcatcher.com: did not receive HSTS header
sve-hosting.nl: could not connect to host
svenbacia.me: could not connect to host
+svenrath.de: could not connect to host
svenskacasino.com: could not connect to host
svenskaservern.se: could not connect to host
svetdrzaku.cz: did not receive HSTS header
@@ -17823,78 +20936,96 @@ 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
-swaleacademiestrust.org.uk: max-age too low: 2592000
+swagsocial.net: could not connect to host
+swaleacademiestrust.org.uk: did not receive HSTS header
swallsoft.co.uk: could not connect to host
swallsoft.com: could not connect to host
swanseapartyhire.co.uk: could not connect to host
-swarfarm.com: did not receive HSTS header
-swarmation.com: did not receive HSTS header
+swarovski-lov.cz: max-age too low: 0
sway.com: did not receive HSTS header
swdatlantico.pt: could not connect to host
-sweak.net: could not connect to host
+swe77.com: could not connect to host
+swe777.com: could not connect to host
sweep.cards: did not receive HSTS header
+sweetenedcondensed.com: 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
swehack.org: could not connect to host
+swey.net: 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
+swimbee.nl: did not receive HSTS header
swimming.ca: did not receive HSTS header
swimmingpoolaccidentattorney.net: could not connect to host
-swingular.com: could not connect to host
+swimready.net: could not connect to host
+swingerclub.in: could not connect to host
swisscannabis.club: could not connect to host
swissentreprises.ch: could not connect to host
+swissfreshaircan.com: could not connect to host
+swissmadesecurity.net: did not receive HSTS header
swisstechtalks.ch: did not receive HSTS header
swisstranslate.ch: did not receive HSTS header
swisstranslate.fr: did not receive HSTS header
swisswebhelp.ch: could not connect to host
swissxperts.ch: could not connect to host
+switch.moe: did not receive HSTS header
swite.com: did not receive HSTS header
switzerland-family-office.com: did not receive HSTS header
swmd5c.org: could not connect to host
swordfighting.net: could not connect to host
+swqa.hu: could not connect to host
swu.party: could not connect to host
swuosa.org: did not receive HSTS header
sx3.no: could not connect to host
+sx6957.com: could not connect to host
sxbk.pw: could not connect to host
+sxwancai18.com: max-age too low: 0
syam.cc: could not connect to host
syamutodon.xyz: could not connect to host
-syamuwatching.xyz: could not connect to host
+syamuwatching.xyz: did not receive HSTS header
sydgrabber.tk: could not connect to host
syhost.at: did not receive HSTS header
syhost.ch: did not receive HSTS header
syhost.de: did not receive HSTS header
sykl.us: could not connect to host
-sylvaincombe.net: could not connect to host
-sylvangarden.net: could not connect to host
+sylvaincombe.net: did not receive HSTS header
sylvangarden.org: could not connect to host
sylvanorder.com: did not receive HSTS header
+symbiose-bien-etre.ch: did not receive HSTS header
+symetria.io: could not connect to host
synackr.com: could not connect to host
synapticconsulting.co.uk: could not connect to host
+synaptickz.me: 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
synchronicity.cz: could not connect to host
syncmylife.net: could not connect to host
-syncserve.net: did not receive HSTS header
+syncserve.net: could not connect to host
syneic.com: did not receive HSTS header
synergisticsoccer.com: could not connect to host
+synfin.org: could not connect to host
syno.gq: could not connect to host
+syntaxnightmare.com: could not connect to host
syntaxoff.com: could not connect to host
syntheticmotoroil.org: did not receive HSTS header
+syntheticurinereview.com: did not receive HSTS header
syobon.org: could not connect to host
syoier.com: could not connect to host
-syracuseut.gov: could not connect to host
+syracuseut.gov: did not receive HSTS header
+syriatalk.biz: could not connect to host
+syriatalk.org: did not receive HSTS header
syrocon.ch: could not connect to host
sys.tf: could not connect to host
-sysadmins.ro: could not connect to host
+sysadmin.xyz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
sysadminstory.com: could not connect to host
+sysdot.blog: did not receive HSTS header
sysert.tv: could not connect to host
sysgeek.cn: could not connect to host
syso.name: could not connect to host
@@ -17902,23 +21033,28 @@ 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
+system-online.cz: could not connect to host
systemchile.com: could not connect to host
systemd.me: could not connect to host
+systemreboot.net: did not receive HSTS header
+systemzeit.info: could not connect to host
sytk.me: could not connect to host
syukatsu-net.jp: did not receive HSTS header
+syunpay.cn: could not connect to host
syy.hk: did not receive HSTS header
szagun.net: did not receive HSTS header
szaszm.tk: could not connect to host
+szc.me: could not connect to host
szczot3k.pl: did not receive HSTS header
+szepsegbennedrejlik.hu: could not connect to host
szerbnyelvkonyv.hu: could not connect to host
szerelem.love: could not connect to host
+szeretekvajpolni.hu: did not receive HSTS header
szetowah.org.hk: 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
-szzsivf.com: did not receive HSTS header
+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
@@ -17926,19 +21062,26 @@ t-tz.com: could not connect to host
t0dd.eu: could not connect to host
t2000headphones.com: could not connect to host
t2000laserpointers.com: could not connect to host
+t23m-navi.jp: did not receive HSTS header
t4c-rebirth.com: could not connect to host
t4x.org: could not connect to host
t5118.com: could not connect to host
+t9i.in: did not receive HSTS header
+ta-sports.net: did not receive HSTS header
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: did not receive HSTS header
+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
+tacklog.com: could not connect to host
+tacoma-games.com: could not connect to host
tacostea.net: could not connect to host
tacotown.tk: could not connect to host
+tacticalsquare.com: did not receive HSTS header
tadata.me: could not connect to host
tadcastercircuit.org.uk: did not receive HSTS header
tadigitalstore.com: could not connect to host
@@ -17946,21 +21089,28 @@ 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: did not receive HSTS header
+tagpay.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
tahakomat.cz: could not connect to host
+taherian.me: did not receive HSTS header
tahf.net: could not connect to host
-tai-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-tai-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-taichi-jade.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+tahosalodge.org: did not receive HSTS header
+tai-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+tai-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+taichi-jade.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
taidu.news: could not connect to host
tailandfur.com: did not receive HSTS header
tailify.com: did not receive HSTS header
tails.com.ar: could not connect to host
taim.io: could not connect to host
+taiphanmem.net: did not receive HSTS header
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]
+takebonus.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+taki.sh: could not connect to host
+taki.to: could not connect to host
takinet.kr: could not connect to host
+tako-miyabi.xyz: could not connect to host
takusan.ru: could not connect to host
talenthero.io: did not receive HSTS header
talentuar.com: could not connect to host
@@ -17969,6 +21119,7 @@ talheim-records.ca: could not connect to host
talk.google.com: did not receive HSTS header (error ignored - included regardless)
talk.xyz: could not connect to host
talkgadget.google.com: did not receive HSTS header (error ignored - included regardless)
+talkingmoose.net: did not receive HSTS header
talkitup.mx: could not connect to host
talkitup.online: could not connect to host
talklifestyle.nl: could not connect to host
@@ -17977,22 +21128,24 @@ talktwincities.com: could not connect to host
tallr.se: could not connect to host
tallshoe.com: could not connect to host
talsi.eu: could not connect to host
+tam-moon.com: could not connect to host
tam7t.com: did not receive HSTS header
+tamasszabo.net: did not receive HSTS header
tamex.xyz: could not connect to host
tamirson.com: did not receive HSTS header
tandarts-haarlem.nl: did not receive HSTS header
tandblekningidag.com: could not connect to host
+tandem-trade.ru: could not connect to host
tandilmap.com.ar: did not receive HSTS header
-tandk.com.vn: did not receive HSTS header
tangerine.ga: could not connect to host
tangibilizing.com: could not connect to host
tangiblesecurity.com: did not receive HSTS header
tango-cats.de: could not connect to host
tangsisi.com: could not connect to host
-tangyue.date: could not connect to host
tangzhao.net: could not connect to host
taniesianie.pl: did not receive HSTS header
tankfreunde.de: did not receive HSTS header
+tanner.sh: could not connect to host
tante-bugil.net: could not connect to host
tantotiempo.de: did not receive HSTS header
tanze-jetzt.de: could not connect to host
@@ -18002,9 +21155,11 @@ 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
+taplamvan.net: did not receive HSTS header
tappublisher.com: did not receive HSTS header
tapsnapp.co: did not receive HSTS header
taqun.club: could not connect to host
+taranis.re: could not connect to host
tarantul.org.ua: could not connect to host
taravancil.com: did not receive HSTS header
tarek.link: could not connect to host
@@ -18019,21 +21174,25 @@ taskstats.com: did not receive HSTS header
tasmansecurity.com: could not connect to host
tassup.com: could not connect to host
tasta.ro: could not connect to host
-tasticfilm.com: did not receive HSTS header
+tastenewwines.com: could not connect to host
+tasticfilm.com: could not connect to host
tastyyy.co: could not connect to host
tasyacherry-anal.com: could not connect to host
+tateesq.com: did not receive HSTS header
tatilbus.com: could not connect to host
+tatildukkani.com: did not receive HSTS header
tatilmix.com: could not connect to host
tatiloley.com: did not receive HSTS header
tatort-fanpage.de: could not connect to host
tatt.io: could not connect to host
tauchkater.de: could not connect to host
-tauschen.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+tauschen.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
tavoittaja.fi: did not receive HSTS header
tavopica.lt: did not receive HSTS header
taxbench.com: could not connect to host
taxi-24std.de: did not receive HSTS header
taxiindenbosch.nl: did not receive HSTS header
+taxisafmatosinhos.pt: could not connect to host
taxmadras.com: could not connect to host
taxsnaps.co.nz: did not receive HSTS header
taxspeaker.com: did not receive HSTS header
@@ -18042,15 +21201,18 @@ 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]
+tbpixel.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
tbrss.com: did not receive HSTS header
tbys.us: could not connect to host
tc-bonito.de: did not receive HSTS header
tcacademy.co.uk: could not connect to host
+tcade.co: could not connect to host
tcao.info: could not connect to host
tcby45.xyz: could not connect to host
tcdww.cn: could not connect to host
+tcg-digital.com: did not receive HSTS header
tchaka.top: could not connect to host
+tchnics.de: could not connect to host
tcl.ath.cx: did not receive HSTS header
tcp.expert: did not receive HSTS header
tcptun.com: could not connect to host
@@ -18067,13 +21229,16 @@ tdsbhack.ga: could not connect to host
tdsbhack.gq: could not connect to host
tdsbhack.ml: could not connect to host
tdsbhack.tk: could not connect to host
+tdsf.io: could not connect to host
tea.codes: did not receive HSTS header
teabagdesign.co.uk: could not connect to host
-teacherph.net: did not receive HSTS header
+teacherph.net: could not connect to host
+teachertool.io: 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
+team.house: did not receive HSTS header
team2fou.cf: did not receive HSTS header
teamassists.com: did not receive HSTS header
teambeoplay.co.uk: did not receive HSTS header
@@ -18083,20 +21248,21 @@ 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
+teamtmgb.fr: did not receive HSTS header
teamtravel.co: did not receive HSTS header
+teamusec.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
-teasenetwork.com: could not connect to host
+tearoy.faith: did not receive HSTS header
+teb-akademia.pl: could not connect to host
tebieer.com: could not connect to host
-tech-blog.fr: did not receive HSTS header
+tech-blog.fr: could not connect to host
tech-finder.fr: could not connect to host
tech55i.com: could not connect to host
+techableme.com: did not receive HSTS header
techandtux.de: could not connect to host
techask.it: could not connect to host
-techassist.io: did not receive HSTS header
techbrawl.org: could not connect to host
techcavern.ml: could not connect to host
techcentric.com: did not receive HSTS header
@@ -18113,56 +21279,62 @@ techllage.com: could not connect to host
techloaner.com: did not receive HSTS header
techmasters.andover.edu: could not connect to host
techmatehq.com: could not connect to host
+technicalbrothers.cf: could not connect to host
technicalforensic.com: could not connect to host
technicalpenguins.com: did not receive HSTS header
+techniclab.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
technifocal.com: could not connect to host
+technikrom.org: did not receive HSTS header
technogroup.cz: did not receive HSTS header
-technologyand.me: did not receive HSTS header
+technoinfogroup.it: could not connect to host
technosavvyport.com: did not receive HSTS header
technosuport.com: did not receive HSTS header
technoswag.ca: could not connect to host
-technotonic.co.uk: could not connect to host
+technotonic.co.uk: did not receive HSTS header
technotonic.com.au: did not receive HSTS header
-techold.ru: could not connect to host
techpointed.com: could not connect to host
techpro.net.br: could not connect to host
techproud.com: did not receive HSTS header
techreview.link: could not connect to host
+techsharetx.gov: could not connect to host
+techsocial.nl: could not connect to host
techtoy.store: did not receive HSTS header
techtrackerpro.com: could not connect to host
techtraveller.com.au: did not receive HSTS header
techtuts.info: could not connect to host
techunit.org: could not connect to host
-techvalue.gr: did not receive HSTS header
techwithcromulent.com: could not connect to host
+techzjc.com: could not connect to host
tecit.ch: could not connect to host
+tecmarkdig.com: could not connect to host
tecnimotos.com: did not receive HSTS header
-tecnologino.com: could not connect to host
+tecnologino.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
tedxodense.com: did not receive HSTS header
tee-idf.net: could not connect to host
-teebeedee.org: did not receive HSTS header
-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
+teehaus-shila.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+teencounseling.com: did not receive HSTS header
teeplelaw.com: did not receive HSTS header
teesypeesy.com: max-age too low: 2592000
tefl.io: did not receive HSTS header
-tegelsensanitaironline.nl: did not receive HSTS header
-tehcrayz.com: could not connect to host
+tegelsensanitaironline.nl: could not connect to host
+tehcrayz.com: did not receive HSTS header
tehotuotanto.net: did not receive HSTS header
tehplace.club: could not connect to host
tehrankey.ir: did not receive HSTS header
+tekanswer.com: max-age too low: 0
tekiro.com: did not receive HSTS header
teknogeek.id: could not connect to host
+teknolit.com: could not connect to host
teknologi.or.id: max-age too low: 36000
teknotes.co.uk: could not connect to host
tekshrek.com: did not receive HSTS header
teksuperior.com: could not connect to host
tektoria.de: did not receive HSTS header
tektuts.com: could not connect to host
+tekuteku.jp: did not receive HSTS header
tel-dithmarschen.de: did not receive HSTS header
tele-alarme.ch: could not connect to host
tele-assistance.ch: could not connect to host
@@ -18175,6 +21347,7 @@ telefisk.org: did not receive HSTS header
telefonnummer.online: could not connect to host
telefonogratuito.com: did not receive HSTS header
telefoonnummerinfo.nl: could not connect to host
+telegramdr.com: did not receive HSTS header
telekollektiv.org: could not connect to host
telepons.com: could not connect to host
telescam.com: could not connect to host
@@ -18182,12 +21355,12 @@ teleshop.be: could not connect to host
telesto.online: could not connect to host
teletra.ru: could not connect to host
telfordwhitehouse.co.uk: did not receive HSTS header
-teltonica.com: did not receive HSTS header
+tellcorpassessoria.com.br: did not receive HSTS header
telugu4u.net: could not connect to host
-temasa.net: could not connect to host
temehu.com: did not receive HSTS header
tempcraft.net: could not connect to host
tempflix.com: could not connect to host
+templates-office.com: did not receive HSTS header
tempo.co: did not receive HSTS header
tempodecolheita.com.br: could not connect to host
tempus-aquilae.de: could not connect to host
@@ -18197,6 +21370,7 @@ tendertool.nl: could not connect to host
tenerife-villas.com: max-age too low: 2592000
tengu.cloud: could not connect to host
tenispopular.com: could not connect to host
+tenkdigitalt.no: did not receive HSTS header
tenma.pro: could not connect to host
tenni.xyz: could not connect to host
tennisadmin.com: could not connect to host
@@ -18206,20 +21380,22 @@ tensei-slime.com: did not receive HSTS header
tensionup.com: could not connect to host
tent.io: could not connect to host
tentabrowser.com: could not connect to host
+tenthousandbottoms.com: did not receive HSTS header
+tenthpin.com: did not receive HSTS header
tentins.com: could not connect to host
-teodio.cl: did not receive HSTS header
+teodio.cl: could not connect to host
teos.online: could not connect to host
teoskanta.fi: could not connect to host
-tepid.org: could not connect to host
+teplomash24.ru: could not connect to host
terabyteharddrive.net: could not connect to host
-teranga.ch: did not receive HSTS header
tercerapuertoaysen.cl: could not connect to host
+teriiphotography.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
termax.me: did not receive HSTS header
-terpotiz.net: could not connect to host
+terpotiz.net: did not receive HSTS header
terra-x.net: could not connect to host
terra.by: did not receive HSTS header
terrace.co.jp: did not receive HSTS header
-terrafinanz.de: did not receive HSTS header
+terranova-nutrition.dk: 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
@@ -18229,6 +21405,7 @@ test-aankoop.be: did not receive HSTS header
test-achats.be: did not receive HSTS header
test-dns.eu: could not connect to host
test02.dk: did not receive HSTS header
+test1websiteboost.nl: did not receive HSTS header
testadren.com: could not connect to host
testadron.com: could not connect to host
testandroid.xyz: could not connect to host
@@ -18236,12 +21413,10 @@ testbawks.com: did not receive HSTS header
testbirds.cz: could not connect to host
testbirds.sk: could not connect to host
testdomain.ovh: could not connect to host
-testi.info: max-age too low: 10518975
testnode.xyz: could not connect to host
testosterone-complex.com: could not connect to host
testosteronedetective.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: could not connect to host
tetrafinancial-energy-mining-equipment-financing.com: could not connect to host
tetrafinancial-healthcare-medical-equipment-financing.com: could not connect to host
@@ -18252,8 +21427,10 @@ tetramax.eu: did not receive HSTS header
tetsai.com: could not connect to host
teufelsystem.de: could not connect to host
teuniz.nl: did not receive HSTS header
+teva-li.com: did not receive HSTS header
texte-zur-taufe.de: did not receive HSTS header
textoplano.xyz: could not connect to host
+textpedia.org: did not receive HSTS header
textracer.dk: could not connect to host
tezcam.tk: could not connect to host
tf-network.de: did not receive HSTS header
@@ -18261,7 +21438,7 @@ tf2stadium.com: did not receive HSTS header
tf7879.com: could not connect to host
tfcoms-sp-tracker-client.azurewebsites.net: could not connect to host
tffans.com: could not connect to host
-tfl.lu: did not receive HSTS header
+tfl.lu: could not connect to host
tgbyte.com: did not receive HSTS header
tgmkanis.com: did not receive HSTS header
tgod.co: could not connect to host
@@ -18270,44 +21447,53 @@ th-bl.de: did not receive HSTS header
th3nd.com: did not receive HSTS header
thackert.myfirewall.org: could not connect to host
thagki9.com: did not receive HSTS header
-thaianthro.com: max-age too low: 0
-thaigirls.xyz: could not connect to host
+thaianthro.com: did not receive HSTS header
+thaigirls.xyz: did not receive HSTS header
thaihostcool.com: did not receive HSTS header
thailandpropertylistings.com: did not receive HSTS header
+thairehabassociation.com: could not connect to host
+thala.fr: max-age too low: 157690
thallinger.me: could not connect to host
thalmann.fr: did not receive HSTS header
thalskarth.com: did not receive HSTS header
-thatgudstuff.com: could not connect to host
+thanabh.at: could not connect to host
+thatgudstuff.com: did not receive HSTS header
thatpodcast.io: did not receive HSTS header
thatvizsla.life: could not connect to host
the-construct.com: could not connect to host
the-delta.net.eu.org: could not connect to host
the-earth-yui.net: could not connect to host
the-finance-blog.com: could not connect to host
+the-gdn.net: did not receive HSTS header
the-gist.io: could not connect to host
the-paddies.de: did not receive HSTS header
the-sky-of-valkyries.com: could not connect to host
-the.ie: max-age too low: 0
+the.ie: could not connect to host
the420vape.org: could not connect to host
+theafleo.gq: could not connect to host
theamateurs.net: did not receive HSTS header
theamp.com: did not receive HSTS header
-theankhlife.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+theankhlife.com: could not connect to host
thearcheryguide.com: did not receive HSTS header
+theasianshooters.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
theater.cf: could not connect to host
theavenuegallery.com: did not receive HSTS header
thebakingclass.com: max-age too low: 60
+thebarbdemariateam.com: did not receive HSTS header
thebarneystyle.com: did not receive HSTS header
thebasementguys.com: could not connect to host
thebeautifulmusic.net: did not receive HSTS header
thebeginningisnye.com: could not connect to host
theberkshirescompany.com: could not connect to host
thebest.ch: could not connect to host
-thebigfail.net: could not connect to host
+thebestofthesprings.com: did not receive HSTS header
+thebestsavingsplan.com: did not receive HSTS header
+thebigfail.net: did not receive HSTS header
+thebluub.com: 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
@@ -18320,32 +21506,38 @@ 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
-thecoffeesuperstore.com: max-age too low: 7889238
+thecolumnist.net: did not receive HSTS header
+theconcordbridge.azurewebsites.net: could not connect to host
+thecookiejar.me: did not receive HSTS header
thecozycastle.com: did not receive HSTS header
thecrochetcottage.net: could not connect to host
+thecstick.com: could not connect to host
thecsw.com: did not receive HSTS header
+thecuppacakery.co.uk: did not receive HSTS header
thecuriouscat.net: could not connect to host
-thedailyprosper.com: did not receive HSTS header
thedailyupvote.com: could not connect to host
thedarkartsandcrafts.com: could not connect to host
thedebug.life: could not connect to host
thedevilwearswibra.nl: did not receive HSTS header
-thediaryofadam.com: did not receive HSTS header
thedoctorsorders.pub: did not receive HSTS header
thedominatorsclan.com: could not connect to host
+thedreamtravelgroup.co.uk: could not connect to host
thedrinks.co: did not receive HSTS header
thedrop.pw: did not receive HSTS header
thedrunkencabbage.com: could not connect to host
+thedutchmarketers.com: did not receive HSTS header
thedystance.com: could not connect to host
+theebookkeepers.co.za: did not receive HSTS header
theelitebuzz.com: could not connect to host
theendofzion.com: could not connect to host
theepankar.com: could not connect to host
theescapistswiki.com: could not connect to host
theevergreen.me: could not connect to host
theexpatriate.de: could not connect to host
-theeyeopener.com: did not receive HSTS header
thefarbeyond.com: could not connect to host
-thefilmcolor.com: max-age too low: 0
+thefashionpolos.com: could not connect to host
+thefbstalker.com: could not connect to host
+thefilmcolor.com: could not connect to host
thefootballanalyst.com: did not receive HSTS header
thefourthmoira.com: did not receive HSTS header
thefox.co: did not receive HSTS header
@@ -18360,22 +21552,26 @@ thego2swatking.com: could not connect to host
thegoldregister.co.uk: could not connect to host
thegospelforgeeks.org: did not receive HSTS header
thegraciousgourmet.com: did not receive HSTS header
+thegreenfields.se: could not connect to host
+thegreenmanpottery.com: could not connect to host
thegreens.us: could not connect to host
thegreenvpn.com: could not connect to host
thegym.org: did not receive HSTS header
thehiddenbay.cc: could not connect to host
thehiddenbay.eu: could not connect to host
-thehiddenbay.fi: did not receive HSTS header
+thehiddenbay.fi: could not connect to host
thehiddenbay.info: could not connect to host
-thehiddenbay.me: could not connect to host
+thehiddenbay.me: did not receive HSTS header
thehiddenbay.net: could not connect to host
thehiddenbay.ws: could not connect to host
thehighersideclothing.com: did not receive HSTS header
thehistory.me: could not connect to host
+thehivedesign.org: could not connect to host
thehoopsarchive.com: could not connect to host
thehoryzon.com: did not receive HSTS header
+thehotness.tech: could not connect to host
+thehouseofgod.org.nz: could not connect to host
thehowtohome.com: did not receive HSTS header
-theimagesalon.com: max-age too low: 43200
theinvisibletrailer.com: could not connect to host
thej0lt.com: did not receive HSTS header
thejobauction.com: did not receive HSTS header
@@ -18386,18 +21582,19 @@ thelastsurprise.com: could not connect to host
thelefthand.org: could not connect to host
thelinuxspace.com: could not connect to host
thelostyankee.com: could not connect to host
-themadlabengineer.co.uk: did not receive HSTS header
+themacoaching.nl: did not receive HSTS header
+themadlabengineer.co.uk: could not connect to host
themadmechanic.net: could not connect to host
themanufacturingmarketingagency.com: could not connect to host
themarble.co: could not connect to host
-themaster.site: could not connect to host
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: did not receive HSTS header
themesurgeons.net: could not connect to host
themicrocapital.com: could not connect to host
-themobilestuffs.com: did not receive HSTS header
+themilanlife.com: could not connect to host
+themobilestuffs.com: could not connect to host
themoderate.xyz: could not connect to host
thenanfang.com: could not connect to host
thenarcissisticlife.com: did not receive HSTS header
@@ -18405,21 +21602,25 @@ 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
+theo.me: could not connect to host
theodorejones.info: could not connect to host
theojones.name: could not connect to host
-theokonst.tk: did not receive HSTS header
+theokonst.tk: could not connect to host
+theokouzelis.com: could not connect to host
theoldbrewhouse.info: could not connect to host
-theosblog.de: did not receive HSTS header
+theosblog.de: could not connect to host
theosophie-afrique.org: could not connect to host
theoverfly.co: could not connect to host
thepartywarehouse.co.uk: did not receive HSTS header
thepcweb.tk: could not connect to host
+thepeninsulaires.com: did not receive HSTS header
thepiabo.ovh: could not connect to host
-thepiratebay.al: could not connect to host
+thepiratebay.al: did not receive HSTS header
thepiratebay.poker: could not connect to host
thepiratebay.tech: could not connect to host
theplaidpoodle.com: did not receive HSTS header
theplaydaysbus.co.uk: could not connect to host
+theploughharborne.co.uk: did not receive HSTS header
theposhfudgecompany.co.uk: could not connect to host
thepostoffice.ro: did not receive HSTS header
theprincegame.com: could not connect to host
@@ -18427,40 +21628,52 @@ theprivacysolution.com: could not connect to host
thepurem.com: did not receive HSTS header
thepythianseed.com: did not receive HSTS header
thequillmagazine.org: could not connect to host
+theragran.co.id: 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
thermo-recetas.com: did not receive HSTS header
theroamingnotary.com: did not receive HSTS header
therockawaysny.com: did not receive HSTS header
+theropes.nyc: could not connect to host
thesassynut.com: did not receive HSTS header
-thesearchenginepros.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
+theseoplatform.co.uk: did not receive HSTS header
theserver201.tk: could not connect to host
theshadestore.com: max-age too low: 10368000
thesharepointfarm.com: did not receive HSTS header
+theshield.in: could not connect to host
thesled.net: could not connect to host
+thesocialmediacentral.com: 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
+thestyle.city: did not receive HSTS header
thetapirsmouth.com: could not connect to host
+theteacherscorner.net: max-age too low: 0
+thetechnical.me: did not receive HSTS header
+thetenscrolls.com: did not receive HSTS header
thethirdroad.com: did not receive HSTS header
+thetorlock.com: could not connect to host
+thetorrentfunk.com: could not connect to host
thetradinghall.com: could not connect to host
thetruthhurvitz.com: could not connect to host
theunitedstates.io: did not receive HSTS header
theurbanyoga.com: did not receive HSTS header
theuucc.org: did not receive HSTS header
+thevgg.com: could not connect to host
+theviewat55th.com: could not connect to host
thevintagenews.com: did not receive HSTS header
thevoid.one: could not connect to host
thevyra.com: did not receive HSTS header
thewallset.com: could not connect to host
+thewarrencenter.org: did not receive HSTS header
thewaxhouse.shop: did not receive HSTS header
+theway2u.com: could not connect to host
thewebdexter.com: could not connect to host
thewebfellas.com: did not receive HSTS header
thewego.com: could not connect to host
@@ -18468,21 +21681,22 @@ theweilai.com: could not connect to host
thewhiterabbit.space: could not connect to host
thewindow.com: could not connect to host
thewoolroom.com.au: did not receive HSTS header
-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]
+theworld.tk: could not connect to host
thewp.pro: max-age too low: 0
theyachtteam.com: could not connect to host
+theyarnhookup.com: could not connect to host
+theyourbittorrent.com: could not connect to host
thezonders.com: did not receive HSTS header
thgros.fr: could not connect to host
thibaultwalle.com: could not connect to host
thibautcharles.net: did not receive HSTS header
-thienteakee.com: did not receive HSTS header
thierfreund.de: did not receive HSTS header
thierryhayoz.ch: could not connect to host
thinkcash.nl: could not connect to host
thinkcoding.de: could not connect to host
thinkcoding.org: could not connect to host
thinkdo.jp: could not connect to host
-thinkforwardmedia.com: max-age too low: 0
+thinkingplanet.net: 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
@@ -18492,56 +21706,65 @@ thirty5.net: did not receive HSTS header
thirtyspot.com: could not connect to host
thisisacompletetest.ga: could not connect to host
thisisforager.com: could not connect to host
+thisisthefinalact.com: did not receive HSTS header
+thisistranquility.life: did not receive HSTS header
thismumdoesntknowbest.com: could not connect to host
-thisoldearth.com: did not receive HSTS header
+thisserver.dontexist.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
thiswasalreadymyusername.tk: could not connect to host
-thiswebhost.com: did not receive HSTS header
thkb.net: could not connect to host
+thm.vn: did not receive HSTS header
thomas-bertran.com: 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
-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]
+thomasgriffin.io: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
thomasharvey.me: did not receive HSTS header
thomaskliszowski.fr: did not receive HSTS header
-thomasmeester.nl: could not connect to host
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
thoroquel.org: could not connect to host
-thot.space: did not receive HSTS header
+thorshammare.com: did not receive HSTS header
+thorshammare.org: did not receive HSTS header
+thorshammare.se: did not receive HSTS header
+thosci.com: could not connect to host
+thot.space: could not connect to host
thoughtlessleaders.online: could not connect to host
+thousandgreens.com: did not receive HSTS header
threatcentral.io: could not connect to host
threebrothersbrewing.com: could not connect to host
threebulls.be: did not receive HSTS header
+threefantasy.com: could not connect to host
thriveapproach.co.uk: did not receive HSTS header
+thrivesummit.com: max-age too low: 0
thrivewellnesshub.co.za: did not receive HSTS header
throughthelookingglasslens.co.uk: could not connect to host
+thrx.net: did not receive HSTS header
+thumbsupcandy.com: could not connect to host
thumbtack.com: did not receive HSTS header
thundercampaign.com: could not connect to host
thuviensoft.net: could not connect to host
+thynx.io: could not connect to host
thyrex.fr: could not connect to host
-thzone.net: did not receive HSTS header
+thzone.net: could not connect to host
ti-js.com: could not connect to host
ti.blog.br: did not receive HSTS header
tiacollection.com: did not receive HSTS header
-tianshili.me: could not connect to host
+tiantangbt.com: could not connect to host
tianxicaipiao.com: could not connect to host
tianxicaipiao.win: could not connect to host
tianxicp.com: could not connect to host
tianxing.pro: did not receive HSTS header
tianxingvpn.pro: could not connect to host
-tib1.com: could not connect to host
tibbitshall.ca: could not connect to host
tibovanheule.site: could not connect to host
-ticfleet.com: could not connect to host
+tichieru.pw: could not connect to host
ticketluck.com: did not receive HSTS header
ticketmates.com.au: did not receive HSTS header
ticketoplichting.nl: did not receive HSTS header
@@ -18551,19 +21774,28 @@ ticktock.today: could not connect to host
tictactux.de: could not connect to host
tidmore.us: could not connect to host
tie-online.org: could not connect to host
-tiendafetichista.com: could not connect to host
+tielectric.ch: did not receive HSTS header
tiendavertigo.com: did not receive HSTS header
tiendschuurstraat.nl: could not connect to host
tiensnet.com: could not connect to host
+tier-1-entrepreneur.com: could not connect to host
tiernanx.com: could not connect to host
tierrarp.com: could not connect to host
-tiggi.pw: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-tightlineproductions.com: did not receive HSTS header
+tiffanytravels.com: did not receive HSTS header
+tiggi.pw: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+tightlineproductions.com: could not connect to host
tigit.co.nz: could not connect to host
+tijo.ch: could not connect to host
+tiki-god.co.uk: could not connect to host
tikutiku.pl: could not connect to host
tildebot.com: could not connect to host
tiledailyshop.com: did not receive HSTS header
-tilient.eu: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+tiliaze.be: did not receive HSTS header
+tiliaze.biz: did not receive HSTS header
+tiliaze.eu: could not connect to host
+tiliaze.info: did not receive HSTS header
+tiliaze.net: did not receive HSTS header
+tilient.eu: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
tilkah.com.au: could not connect to host
tillcraft.com: could not connect to host
timbeilby.com: could not connect to host
@@ -18572,7 +21804,7 @@ timcamara.com: did not receive HSTS header
timchanhxe.com: did not receive HSTS header
timdebruijn.nl: did not receive HSTS header
time-river.xyz: could not connect to host
-timeatlas.com: did not receive HSTS header
+timeauction.hk: could not connect to host
timer.fit: could not connect to host
timersuite.com: could not connect to host
timesavingplugins.com: could not connect to host
@@ -18584,67 +21816,76 @@ 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
+timhieubenh.net: did not receive HSTS header
timhieuthuoc.com: could not connect to host
timhjalpen.se: could not connect to host
timklefisch.de: did not receive HSTS header
-timmy.im: could not connect to host
timmy.ws: could not connect to host
+timothybjacobs.com: did not receive HSTS header
timotrans.de: could not connect to host
timotrans.eu: could not connect to host
timowi.net: could not connect to host
-timroes.de: did not receive HSTS header
-timschubert.net: max-age too low: 172800
timvandekamp.nl: did not receive HSTS header
timwhite.io: did not receive HSTS header
timwittenberg.com: could not connect to host
tinchbear.xyz: could not connect to host
tindewen.net: could not connect to host
+tinf15b4.de: could not connect to host
tink.network: could not connect to host
tinker.career: could not connect to host
tinkerboard.org: could not connect to host
-tinkerers-trunk.co.za: did not receive HSTS header
-tinkererstrunk.co.za: could not connect to host
+tinyvpn.net: could not connect to host
+tioat.net: could not connect to host
+tipbox.is: could not connect to host
tipiakers.club: could not connect to host
+tipocloud.cf: could not connect to host
tipps-fuer-den-haushalt.de: could not connect to host
tippspiel.cc: could not connect to host
-tipsport.cz: could not connect to host
tipsyk.ru: could not connect to host
tiredofeating.com: could not connect to host
-tiremoni.ch: did not receive HSTS header
+tiremoni.ch: could not connect to host
tirex.media: did not receive HSTS header
-tism.in: could not connect to host
-tiste.org: could not connect to host
+tiste.org: did not receive HSTS header
titanlab.de: could not connect to host
-titanleaf.com: could not connect to host
-titanpointe.org: did not receive HSTS header
+titanleaf.com: did not receive HSTS header
+titli.fr: could not connect to host
tittarpuls.se: could not connect to host
titties.ml: could not connect to host
tivido.nl: could not connect to host
-tjandpals.com: could not connect to host
+tjandpals.com: did not receive HSTS header
tjc.wiki: could not connect to host
tjeckien.guide: could not connect to host
+tjkcastles.uk: did not receive HSTS header
tjs.me: could not connect to host
+tjsbouncycastles.co.uk: did not receive HSTS header
tju.me: could not connect to host
+tjxxzy.com: did not receive HSTS header
tkappertjedemetamorfose.nl: did not receive HSTS header
tkarstens.de: did not receive HSTS header
tkeycoin.com: did not receive HSTS header
tkhw.tk: could not connect to host
+tkn.me: could not connect to host
+tkn.tokyo: did not receive HSTS header
tkonstantopoulos.tk: could not connect to host
tkts.cl: could not connect to host
+tlach.cz: could not connect to host
tlcdn.net: could not connect to host
+tlcnet.info: could not connect to host
tlo.hosting: could not connect to host
tlo.link: could not connect to host
tlo.network: could not connect to host
tls.builders: could not connect to host
tls.li: could not connect to host
-tls1914.org: could not connect to host
+tls1914.org: did not receive HSTS header
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
+tmcpromotions.co.uk: did not receive HSTS header
+tmd.cool: could not connect to host
+tmdc.ddns.net: did not receive HSTS header
tmhlive.com: could not connect to host
tmhr.moe: could not connect to host
tmi.news: did not receive HSTS header
@@ -18655,7 +21896,10 @@ tmtradingmorocco.ma: did not receive HSTS header
tnb-plattform.de: could not connect to host
tncnanet.com.br: could not connect to host
tno.io: could not connect to host
+tnosha.gov: could not connect to host
+tnrealid.gov: could not connect to host
tnwioa.gov: could not connect to host
+tny.link: could not connect to host
to2mbn.org: could not connect to host
toabsentfamily.com: did not receive HSTS header
tobaby.com.br: could not connect to host
@@ -18669,82 +21913,98 @@ 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: did not receive HSTS header
tobiassachs.tk: could not connect to host
-tobis-webservice.de: did not receive HSTS header
+tobis-webservice.de: could not connect to host
toddmissiontx.gov: did not receive HSTS header
todesschaf.org: could not connect to host
todo.is: could not connect to host
todobazar.es: could not connect to host
todocracy.com: could not connect to host
todokete.ga: could not connect to host
-todoscomciro.com: did not receive HSTS header
todosrv.com: could not connect to host
+toerclub-ing-arnhem.nl: did not receive HSTS header
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
+togelonlinecommunity.com: could not connect to host
tohokufd.com: could not connect to host
+toihoctiengtrung.com: max-age too low: 0
tojeto.eu: did not receive HSTS header
toka.sg: could not connect to host
tokage.me: could not connect to host
tokbijouxs.com.br: did not receive HSTS header
-tokenloan.com: could not connect to host
+tokenloan.com: did not receive HSTS header
+tokfun.com: could not connect to host
tokintu.com: could not connect to host
tokobungaasryflorist.com: did not receive HSTS header
-tokobungadijambi.com: did not receive HSTS header
+tokobungadijambi.com: could not connect to host
tokobungadilampung.com: could not connect to host
-tokobungadipadangflorist.com: did not receive HSTS header
+tokobungadipadangflorist.com: could not connect to host
tokoindo.top: could not connect to host
tokoone.com: did not receive HSTS header
+tokoplugin.com: could not connect to host
tokotamz.net: could not connect to host
-tokotimbangandigitalmurah.web.id: did not receive HSTS header
+tokotimbangandigitalmurah.web.id: max-age too low: 36000
tokoyo.biz: could not connect to host
-tokumei.co: could not connect to host
+tokumei.co: did not receive HSTS header
+toldositajuba.com: could not connect to host
tollfreeproxy.com: could not connect to host
-tollmanz.com: did not receive HSTS header
tollsjekk.no: could not connect to host
tolud.com: could not connect to host
tom-maxwell.com: did not receive HSTS header
tom.run: did not receive HSTS header
tomandshirley.com: could not connect to host
+tomarns.nl: did not receive HSTS header
tomaspialek.cz: did not receive HSTS header
+tomaw.net: did not receive HSTS header
+tomaz.eu: could not connect to host
+tombroker.org: did not receive HSTS header
tomcort.com: did not receive HSTS header
tomdudfield.com: did not receive HSTS header
tomeara.net: could not connect to host
tomevans.io: did not receive HSTS header
+tomfisher.eu: could not connect to host
tomharling.co.uk: could not connect to host
+tomharris.tech: could not connect to host
tomiler.com: could not connect to host
tomkwok.com: could not connect to host
tomlankhorst.nl: did not receive HSTS header
tomli.me: could not connect to host
tommounsey.com: did not receive HSTS header
-tommsy.com: did not receive HSTS header
+tommsy.com: could not connect to host
tommyads.com: could not connect to host
-tommyweber.de: could not connect to host
+tommyweber.de: did not receive HSTS header
tomoyaf.com: could not connect to host
-tomphill.co.uk: did not receive HSTS header
-tomudding.com: did not receive HSTS header
+toms.ovh: could not connect to host
+tomsdevsn.me: could not connect to host
+tomudding.com: could not connect to host
+tomwellington.design: 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]
-tone.tw: could not connect to host
+tomyork.net: could not connect to host
+tonburi.jp: could not connect to host
tongmu.me: could not connect to host
tonguetechnology.com: could not connect to host
-toni-dis.ch: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+toni-dis.ch: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+tonifarres.net: could not connect to host
toniharant.de: could not connect to host
toomanypillows.com: could not connect to host
toomy.ddns.net: could not connect to host
-top-esb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+toontown.team: could not connect to host
+top-esb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
top-solar-info.de: could not connect to host
top-stage.net: could not connect to host
top10mountainbikes.info: could not connect to host
+top9.fr: did not receive HSTS header
topanlage.de: could not connect to host
topbargains.com.au: did not receive HSTS header
-topbestsellerproduct.com: did not receive HSTS header
topbilan.com: did not receive HSTS header
+topbouncycastles.co.uk: could not connect to host
+topbrakes.com: could not connect to host
topdeskdev.net: could not connect to host
topdetoxcleanse.com: could not connect to host
topdevbox.net: could not connect to host
-topesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+topesb.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
topkek.ml: could not connect to host
topmarine.se: did not receive HSTS header
topnewstoday.org: could not connect to host
@@ -18754,63 +22014,77 @@ toppik.com.br: could not connect to host
toppointrea.com: could not connect to host
topsailtechnologies.com: could not connect to host
topservercccam.com: did not receive HSTS header
+topservercccam.tv: 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
topvertimai.lt: could not connect to host
topwin.la: could not connect to host
+topworktops.co.uk: did not receive HSTS header
+topyachts.com.ua: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
topyx.com: did not receive HSTS header
+tor.us: did not receive HSTS header
tor2web.org: could not connect to host
torahanytime.com: did not receive HSTS header
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
torfbahn.de: did not receive HSTS header
+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
-torrentfunk.com: could not connect to host
-torrentgamesps2.info: could not connect to host
-torrenttop100.net: could not connect to host
-torrentz.website: did not receive HSTS header
+torrentgamesps2.info: did not receive HSTS header
+torrentpier.me: could not connect to host
+torrentz.website: could not connect to host
torrentz2.al: could not connect to host
-torrentz2.eu: did not receive HSTS header
+torsquad.com: could not connect to host
tortocan.com: could not connect to host
tortugalife.de: could not connect to host
torv.rocks: did not receive HSTS header
tosainu.com.br: could not connect to host
+tosamja.net: did not receive HSTS header
tosecure.link: could not connect to host
toshnix.com: could not connect to host
toshub.com: could not connect to host
toskana-appartement.de: did not receive HSTS header
-totalbeauty.co.uk: could not connect to host
+totalaccess.com.ua: could not connect to host
+totalbeauty.co.uk: did not receive HSTS header
totaldragonshop.com.br: could not connect to host
+totalhomecareinc.com: could not connect to host
totalle.com.br: could not connect to host
totallynotaserver.com: could not connect to host
+totalpackers.com: did not receive HSTS header
totalsystemcare.com: did not receive HSTS header
totalwebmedia.nl: did not receive HSTS header
totalworkout.fitness: did not receive HSTS header
totch.de: could not connect to host
totem-eshop.cz: could not connect to host
+totolabs.com: could not connect to host
totoro.pub: could not connect to host
totot.net: could not connect to host
-toucedo.de: 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
+touchsupport.com: did not receive HSTS header
tougetu.com: could not connect to host
+touhou.ac.cn: could not connect to host
touhou.cc: did not receive HSTS header
+touhou.tw: did not receive HSTS header
+tounyou-raku.com: did not receive HSTS header
touray-enterprise.ch: could not connect to host
+tourify.me: did not receive HSTS header
tourispo.com: could not connect to host
tourpeer.com: did not receive HSTS header
-toursandtransfers.it: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+toursandtransfers.it: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+toursthatmatter.com: did not receive HSTS header
tousproducteurs.fr: could not connect to host
+toutenmusic.fr: could not connect to host
towaway.ru: could not connect to host
townhousedevelopments.com.au: did not receive HSTS header
townofruthnc.gov: did not receive HSTS header
@@ -18818,40 +22092,48 @@ tox.im: did not receive HSTS header
toxicboot.com: could not connect to host
toxicip.com: could not connect to host
toxme.se: could not connect to host
+toycu.de: did not receive HSTS header
toymania.de: could not connect to host
toyotamotala.se: could not connect to host
-tpansino.com: could not connect to host
+toysale.by: did not receive HSTS header
tpbcdn.com: could not connect to host
tpblist.xyz: could not connect to host
tpbunblocked.org: could not connect to host
+tpci.biz: could not connect to host
tpe-edu.com: could not connect to host
tpms4u.at: could not connect to host
tppdebate.org: did not receive HSTS header
+tql.plus: could not connect to host
trabajarenperu.com: did not receive HSTS header
tracalada.cl: did not receive HSTS header
+trace.guru: could not connect to host
tracelight.io: did not receive HSTS header
+tracemyplace.com: could not connect to host
+traceroute.guru: could not connect to host
+traceroute.link: could not connect to host
+traceroute.network: could not connect to host
traces.ml: could not connect to host
tracetracker.com: did not receive HSTS header
-tracewind.top: could not connect to host
-trackdays4fun.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+track.plus: could not connect to host
+trackdays4fun.com: did not receive HSTS header
tracker-gps.ch: could not connect to host
trackfeed.tokyo: could not connect to host
trackingstream.com: could not connect to host
trackmeet.io: did not receive HSTS header
-tracksa.com.ar: could not connect to host
-tracktivity.com.au: did not receive HSTS header
+tracktivity.com.au: could not connect to host
trade-smart.ru: could not connect to host
tradedesk.co.za: could not connect to host
-tradernet.com: could not connect to host
+trademan.ky: 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
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: could not connect to host
+tradingrooms.com: could not connect to host
+traditional-knowledge.tk: did not receive HSTS header
traeningsprojekt.dk: did not receive HSTS header
traffic.az: did not receive HSTS header
+trafficologyblueprint.com: could not connect to host
trafficquality.org: could not connect to host
traffictigers.com: did not receive HSTS header
traforet.win: could not connect to host
@@ -18866,19 +22148,27 @@ trainline.dk: could not connect to host
trainline.io: could not connect to host
trainline.se: could not connect to host
trainut.com: could not connect to host
+trajano.net: could not connect to host
trakfusion.com: could not connect to host
+trakkr.tk: could not connect to host
+trance-heal.com: could not connect to host
+trance-heal.de: could not connect to host
trance-heal.me: could not connect to host
+tranceheal.com: could not connect to host
+tranceheal.de: did not receive HSTS header
tranceheal.me: could not connect to host
trancendances.fr: could not connect to host
trangcongnghe.com: max-age too low: 5184000
+tranglenull.xyz: did not receive HSTS header
tranos.de: did not receive HSTS header
+tranquillapp.com: could not connect to host
transbike.es: did not receive HSTS header
transcendmotor.sg: could not connect to host
transcricentro.pt: could not connect to host
transcriptionwave.com: did not receive HSTS header
transdirect.com.au: did not receive HSTS header
transferio.nl: did not receive HSTS header
-transfers.mx: could not connect to host
+transfile.fr: could not connect to host
transformify.org: did not receive HSTS header
transgendernetwerk.nl: did not receive HSTS header
transl8.eu: did not receive HSTS header
@@ -18886,58 +22176,61 @@ translate.googleapis.com: did not receive HSTS header (error ignored - included
translateblender.ru: could not connect to host
translatoruk.co.uk: did not receive HSTS header
transmithe.net: could not connect to host
-transport.eu: max-age too low: 0
transportal.sk: did not receive HSTS header
transsexualpantyhose.com: could not connect to host
+trastornoevitacion.com: did not receive HSTS header
+trastornolimite.com: did not receive HSTS header
tratamentoparacelulite.biz: could not connect to host
trauertexte.info: could not connect to host
traumhuetten.de: did not receive HSTS header
travality.ru: could not connect to host
travel-kuban.ru: did not receive HSTS header
travel-to-nature.ch: did not receive HSTS header
-travel.co.za: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+travel.co.za: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
travel1x1.com: did not receive HSTS header
traveling-thailand.info: could not connect to host
travelinsightswriter.com: could not connect to host
travelling.expert: could not connect to host
-travellsell.com: did not receive HSTS header
+travellsell.com: could not connect to host
travelmyth.ie: did not receive HSTS header
travelpricecheck.com: max-age too low: 0
+travisec.com: could not connect to host
travotion.com: could not connect to host
trazosdearte.com: did not receive HSTS header
treasuredinheritanceministry.com: did not receive HSTS header
treatment.org: could not connect to host
treatprostatewithhifu.com: could not connect to host
-tree0.xyz: could not connect to host
treeby.net: could not connect to host
treehousebydesign.com: did not receive HSTS header
treeremovaljohannesburg.co.za: could not connect to host
-treeworkbyjtec.com: could not connect to host
+treeremovalsboksburg.co.za: did not receive HSTS header
treino.blog.br: could not connect to host
treker.us: could not connect to host
-trekkinglife.de: did not receive HSTS header
trell.co.in: did not receive HSTS header
-tremlor.com: max-age too low: 300
tremolosoftware.com: did not receive HSTS header
tremoureux.fr: could not connect to host
trendberry.ru: could not connect to host
trendingpulse.com: could not connect to host
trendisland.de: did not receive HSTS header
+trendkraft.de: did not receive HSTS header
trendydips.com: could not connect to host
trentmaydew.com: could not connect to host
trenztec.ml: could not connect to host
-tretkowski.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
trewe.eu: did not receive HSTS header
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]
+trialmock.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
trianon.xyz: could not connect to host
+tributh.cf: could not connect to host
+tributh.ga: could not connect to host
+tributh.gq: could not connect to host
+tributh.ml: could not connect to host
+trichdanhay.com: did not receive HSTS header
trickedguys.com: could not connect to host
tricks.clothing: did not receive HSTS header
triddi.com: could not connect to host
tridentflood.com: could not connect to host
tridimage.com: did not receive HSTS header
-trigular.de: could not connect to host
trik.es: could not connect to host
trileg.net: could not connect to host
trilithsolutions.com: did not receive HSTS header
@@ -18947,7 +22240,8 @@ trinity.fr.eu.org: could not connect to host
trinityaffirmations.com: max-age too low: 0
trinitycore.org: max-age too low: 2592000
trinitytechdev.com: did not receive HSTS header
-trior.net: could not connect to host
+trink-und-partyspiele.de: could not connect to host
+trior.net: 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
@@ -18958,44 +22252,56 @@ tristanfarkas.one: could not connect to host
triticeaetoolbox.org: did not receive HSTS header
trixies-wish.nz: could not connect to host
trixy.com.br: could not connect to host
+triz.co.uk: could not connect to host
trizone.com.au: did not receive HSTS header
troisdorf-gestalten.de: did not receive HSTS header
trollme.me: could not connect to host
-trollscave.xyz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-trondelan.no: did not receive HSTS header
+trollscave.xyz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
tronflix.com: did not receive HSTS header
troo.ly: could not connect to host
+troplo.com: did not receive HSTS header
+trosell.net: did not receive HSTS header
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]
+trouver-son-chemin.com: could not connect to host
troykelly.com: did not receive HSTS header
trpg.wiki: could not connect to host
+trtltravel.com: max-age too low: 7889238
+trucchibellezza.com: could not connect to host
truckgpsreviews.com: did not receive HSTS header
+truckstop-magazin.de: could not connect to host
+true-itk.de: could not connect to host
true.ink: did not receive HSTS header
-truebred-labradors.com: did not receive HSTS header
+truebred-labradors.com: could not connect to host
trueessayhelp.co.uk: did not receive HSTS header
truejob.com: did not receive HSTS header
truessl.shop: could not connect to host
+trulance.com: did not receive HSTS header
trumeet.top: did not receive HSTS header
+truncus-encephali.co.uk: could not connect to host
trunkjunk.co: could not connect to host
-trush.in: could not connect to host
+trush.in: did not receive HSTS header
+trustedbody.com: did not receive HSTS header
trustedinnovators.com: could not connect to host
trustednewssites.com: could not connect to host
trusteecar.com: did not receive HSTS header
+trustees.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
trustmeimfancy.com: could not connect to host
trustocean.com: did not receive HSTS header
trybabyschoice.com: could not connect to host
trybind.com: could not connect to host
tryfabulousdiet.com: could not connect to host
+tryfabulousskincream.com: could not connect to host
+tryfabulousskinserum.com: could not connect to host
tryfm.net: did not receive HSTS header
+trygarciniaslimdiet.com: could not connect to host
trynowrinkleseyeserum.com: could not connect to host
tryoneday.co: did not receive HSTS header
trypineapple.com: could not connect to host
tryti.me: could not connect to host
+trywesayyes.com: could not connect to host
ts-publishers.com: could not connect to host
ts2.se: could not connect to host
-ts3-dns.com: could not connect to host
ts3-dns.me: could not connect to host
-ts3-dns.net: could not connect to host
ts3-legenda.tech: could not connect to host
ts3.consulting: could not connect to host
tsaro.io: could not connect to host
@@ -19014,7 +22320,11 @@ 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
+tt6957.com: could not connect to host
ttackmedical.com.br: could not connect to host
+ttchan.org: could not connect to host
+ttfin.ch: could not connect to host
+ttrade.ga: could not connect to host
tts.co.nz: did not receive HSTS header
ttspttsp.com: could not connect to host
tty.space: could not connect to host
@@ -19022,7 +22332,6 @@ ttz.im: could not connect to host
tu6.pm: could not connect to host
tuamoronline.com: could not connect to host
tuang-tuang.com: could not connect to host
-tubbutec.de: did not receive HSTS header
tubeju.com: could not connect to host
tubetoon.com: could not connect to host
tubetooncartoons.com: could not connect to host
@@ -19031,19 +22340,20 @@ 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
-tudulinna.ee: max-age too low: 43200
+tudorproject.org: could not connect to host
tueche.com.ar: did not receive HSTS header
+tufashionista.com: did not receive HSTS header
tufilo.com: could not connect to host
tugers.com: did not receive HSTS header
-tulenceria.es: could not connect to host
tulsameetingroom.com: could not connect to host
tumutanzi.com: did not receive HSTS header
tunca.it: did not receive HSTS header
tunebitfm.de: could not connect to host
tungstenroyce.com: did not receive HSTS header
tunity.be: did not receive HSTS header
-tupizm.com: could not connect to host
-turismo.cl: could not connect to host
+tuou.xyz: could not connect to host
+turingmind.com: did not receive HSTS header
+turismo.cl: did not receive HSTS header
turkiet.guide: could not connect to host
turn-sticks.com: could not connect to host
turnik-67.ru: could not connect to host
@@ -19053,27 +22363,34 @@ turtle.ai: did not receive HSTS header
turtlementors.com: could not connect to host
turtles.ga: could not connect to host
tusb.ml: did not receive HSTS header
+tusi.co: did not receive HSTS header
tussengelegenwoningverkopen.nl: could not connect to host
tuthowto.com: could not connect to host
tutiendaroja.com: could not connect to host
tutiendarosa.com: could not connect to host
+tutoref.com: did not receive HSTS header
tutorio.ga: could not connect to host
+tuttoandroid.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
tutu.ro: could not connect to host
tuturulianda.com: could not connect to host
-tuvalie.com: did not receive HSTS header
+tuvalie.com: could not connect to host
tuxhound.org: could not connect to host
tuxone.ch: did not receive HSTS header
+tuxpeliculas.com: could not connect to host
tuxrtfm.com: could not connect to host
tv.search.yahoo.com: could not connect to host
tvc.red: could not connect to host
-tverdohleb.com: could not connect to host
+tvcal.net: could not connect to host
+tverdohleb.com: did not receive HSTS header
+tverskaya-outlet.ru: could not connect to host
tvoru.com.ua: did not receive HSTS header
tvqc.com: did not receive HSTS header
+tvsheerenhoek.nl: did not receive HSTS header
tvtubeflix.com: did not receive HSTS header
tvz-materijali.com: could not connect to host
+tw-hosting.de: did not receive HSTS header
tw2-tools.ga: could not connect to host
twarog.cc: could not connect to host
-twatspot.com: could not connect to host
tweakersbadge.nl: could not connect to host
twee-onder-een-kap-woning-in-alphen-aan-den-rijn-kopen.nl: could not connect to host
twee-onder-een-kap-woning-in-brielle-kopen.nl: could not connect to host
@@ -19086,8 +22403,11 @@ twee-onder-een-kap-woning-in-sudwest-fryslan-kopen.nl: could not connect to host
twee-onder-een-kap-woning-in-veendam-kopen.nl: could not connect to host
twee-onder-een-kap-woning-in-zuidplas-kopen.nl: could not connect to host
twee-onder-een-kap-woning-in-zwartewaterland-kopen.nl: could not connect to host
+tweedehandslaptophardenberg.nl: did not receive HSTS header
tweeondereenkapverkopen.nl: could not connect to host
tweeondereenkapwoningverkopen.nl: could not connect to host
+tweetfinity.com: could not connect to host
+tweetfinityapp.com: 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
@@ -19104,36 +22424,41 @@ 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
+twistopay.com: did not receive HSTS header
twittelzie.nl: could not connect to host
twitter.ax: could not connect to host
-twocornertiming.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+twocornertiming.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
twogo.com: did not receive HSTS header
twojfaktum.pl: could not connect to host
twolanedesign.com: could not connect to host
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
+twtremind.com: could not connect to host
twun.io: could not connect to host
twuni.org: did not receive HSTS header
tx041cap.org: could not connect to host
txbi.de: could not connect to host
txclimbers.com: could not connect to host
-txcp01.com: could not connect to host
+txcp01.com: did not receive HSTS header
txcp02.com: could not connect to host
txf.pw: could not connect to host
+txpi.nsupdate.info: could not connect to host
ty2u.com: did not receive HSTS header
tycjt.vip: could not connect to host
tyil.nl: did not receive HSTS header
-tyil.work: could not connect to host
+tyil.work: did not receive HSTS header
tykoon.com: could not connect to host
tyl.io: did not receive HSTS header
tyler.coach: could not connect to host
tylercoach.com: could not connect to host
+tylerharcourt.ca: did not receive HSTS header
+tylerharcourt.com: did not receive HSTS header
tylerharcourt.net: could not connect to host
tylerharcourt.xyz: could not connect to host
tylerjharcourt.com: could not connect to host
tylian.net: max-age too low: 0
+tylyjj.com: 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
@@ -19142,27 +22467,44 @@ 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
+tyree.tech: could not connect to host
tyreis.com: could not connect to host
tyrelius.com: could not connect to host
tyroproducts.eu: did not receive HSTS header
tyskland.guide: could not connect to host
tz56789.com: did not receive HSTS header
tzappa.net: could not connect to host
+tzifas.com: could not connect to host
tzwe.com: could not connect to host
u-master.net: did not receive HSTS header
u-metals.com: did not receive HSTS header
+u-tokyo.club: did not receive HSTS header
+u0010.com: could not connect to host
+u0020.com: could not connect to host
+u0050.com: could not connect to host
+u0060.com: could not connect to host
+u0070.com: could not connect to host
+u0080.com: could not connect to host
+u0090.com: could not connect to host
u175.com: could not connect to host
-u5eu.com: did not receive HSTS header
+u17go.com: max-age too low: 2592000
+u6957.com: could not connect to host
+uachemlabs.com: could not connect to host
uadp.pw: could not connect to host
uahs.org.uk: did not receive HSTS header
ubalert.com: could not connect to host
-uber.com.au: did not receive HSTS header
-uberbkk.com: could not connect to host
+uber.com.au: could not connect to host
+uberactivist.com: could not connect to host
+uberbkk.com: did not receive HSTS header
ubercalculator.com: did not receive HSTS header
uberfunction.com: did not receive HSTS header
+uberifix.ca: could not connect to host
ubertt.org: could not connect to host
-ubicloud.de: did not receive HSTS header
+ubi.gg: could not connect to host
+ubicloud.de: could not connect to host
ubicv.com: could not connect to host
+ubis.group: could not connect to host
+ubiurbe.com: did not receive HSTS header
ublox.com: did not receive HSTS header
ubtce.com: could not connect to host
ubun.net: could not connect to host
@@ -19170,101 +22512,105 @@ ubuntuhot.com: did not receive HSTS header
uc.ac.id: did not receive HSTS header
uchiha.ml: could not connect to host
uclanmasterplan.co.uk: did not receive HSTS header
-uddi.ng: did not receive HSTS header
+uclip.club: could not connect to host
+uddhabhaldar.com: did not receive HSTS header
+udsocial.com: could not connect to host
+ueba1085.jp: could not connect to host
uefeng.com: did not receive HSTS header
uega.net: did not receive HSTS header
uel-thompson-okanagan.ca: could not connect to host
uerdingen.info: did not receive HSTS header
uesociedadlimitada.com: could not connect to host
-ueu.me: could not connect to host
+ueu.me: did not receive HSTS header
+uex.im: could not connect to host
ufgaming.com: did not receive HSTS header
uflixit.com: did not receive HSTS header
-ufo.moe: could not connect to host
ufotable.uk: could not connect to host
ugcdn.com: could not connect to host
ugisgutless.com: could not connect to host
ugo.ninja: could not connect to host
-ugosadventures.com: could not connect to host
-uhappy1.com: could not connect to host
+ugosadventures.com: did not receive HSTS header
+uhappy1.com: did not receive HSTS header
uhappy11.com: did not receive HSTS header
-uhappy2.com: could not connect to host
-uhappy21.com: did not receive HSTS header
-uhappy22.com: could not connect to host
-uhappy23.com: did not receive HSTS header
-uhappy24.com: did not receive HSTS header
-uhappy25.com: did not receive HSTS header
-uhappy26.com: did not receive HSTS header
-uhappy27.com: did not receive HSTS header
-uhappy28.com: did not receive HSTS header
-uhappy29.com: did not receive HSTS header
+uhappy2.com: did not receive HSTS header
+uhappy21.com: could not connect to host
+uhappy22.com: did not receive HSTS header
+uhappy23.com: could not connect to host
+uhappy24.com: could not connect to host
+uhappy25.com: could not connect to host
+uhappy26.com: could not connect to host
+uhappy27.com: could not connect to host
+uhappy28.com: could not connect to host
+uhappy29.com: could not connect to host
uhappy3.com: did not receive HSTS header
-uhappy30.com: did not receive HSTS header
-uhappy31.com: did not receive HSTS header
+uhappy30.com: could not connect to host
+uhappy31.com: could not connect to host
uhappy33.com: did not receive HSTS header
uhappy50.com: could not connect to host
uhappy55.com: did not receive HSTS header
uhappy56.com: did not receive HSTS header
-uhappy57.com: could not connect to host
+uhappy57.com: did not receive HSTS header
uhappy58.com: did not receive HSTS header
uhappy59.com: did not receive HSTS header
-uhappy6.com: could not connect to host
-uhappy60.com: did not receive HSTS header
-uhappy61.com: did not receive HSTS header
-uhappy62.com: did not receive HSTS header
+uhappy6.com: did not receive HSTS header
+uhappy60.com: could not connect to host
+uhappy61.com: could not connect to host
+uhappy62.com: could not connect to host
uhappy66.com: did not receive HSTS header
uhappy67.com: did not receive HSTS header
uhappy69.com: did not receive HSTS header
uhappy70.com: did not receive HSTS header
uhappy71.com: did not receive HSTS header
-uhappy72.com: did not receive HSTS header
+uhappy72.com: could not connect to host
uhappy73.com: did not receive HSTS header
uhappy74.com: did not receive HSTS header
uhappy75.com: did not receive HSTS header
-uhappy76.com: could not connect to host
+uhappy76.com: did not receive HSTS header
uhappy77.com: did not receive HSTS header
-uhappy78.com: could not connect to host
+uhappy78.com: did not receive HSTS header
uhappy79.com: did not receive HSTS header
-uhappy8.com: could not connect to host
+uhappy8.com: did not receive HSTS header
uhappy80.com: did not receive HSTS header
-uhappy81.com: did not receive HSTS header
-uhappy82.com: did not receive HSTS header
-uhappy83.com: could not connect to host
-uhappy85.com: could not connect to host
+uhappy81.com: could not connect to host
+uhappy82.com: could not connect to host
+uhappy83.com: did not receive HSTS header
+uhappy85.com: did not receive HSTS header
uhappy86.com: did not receive HSTS header
uhappy88.com: did not receive HSTS header
-uhappy9.com: could not connect to host
+uhappy9.com: did not receive HSTS header
uhappy90.com: did not receive HSTS header
uhappy99.com: did not receive HSTS header
+uhasseltctf.be: could not connect to host
uhasseltctf.ga: could not connect to host
-uhasseltodin.be: did not receive HSTS header
+uhasseltodin.be: could not connect to host
uhm.io: did not receive HSTS header
uhssl.com: could not connect to host
+uhurl.net: could not connect to host
uhuru-market.com: did not receive HSTS header
+uicchy.com: could not connect to host
uitslagensoftware.nl: did not receive HSTS header
-ukas.com: could not connect to host
ukbc.london: did not receive HSTS header
ukdropshipment.co.uk: did not receive HSTS header
ukdropshipment.com: did not receive HSTS header
ukk.dk: did not receive HSTS header
ukkeyholdingcompany.co.uk: could not connect to host
+ukmortgagecompare.co.uk: could not connect to host
ukrgadget.com: could not connect to host
-ukunlocks.com: did not receive HSTS header
ulabox.cat: did not receive HSTS header
ulabox.es: did not receive HSTS header
ulalau.com: did not receive HSTS header
ullamodaintima.com.br: could not connect to host
ulmo.dk: could not connect to host
-ulrik.moe: could not connect to host
+ulotnefoto.pl: did not receive HSTS header
ulti.gq: could not connect to host
+ultieme.be: could not connect to host
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
-ultraseopro.com: could not connect to host
ultrasite.tk: could not connect to host
ultrasteam.net: could not connect to host
+ultratech.software: 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
@@ -19275,29 +22621,30 @@ umidev.com: could not connect to host
umie.cc: did not receive HSTS header
umkmjogja.com: did not receive HSTS header
ump45.moe: could not connect to host
+umsapi.com: could not connect to host
umsolugar.com.br: could not connect to host
umwandeln-online.de: could not connect to host
-umzugsunternehmenberlin.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]
+umzug-berlin24.de: did not receive HSTS header
unapolegetic.co: did not receive HSTS header
unart.info: could not connect to host
unbanthe.net: could not connect to host
+unbelievableplaces.de: could not connect to host
+unblockall.xyz: could not connect to host
unblockat.tk: did not receive HSTS header
unblocked-networks.org: could not connect to host
unblocked.blue: did not receive HSTS header
+unblocked.cx: could not connect to host
unblocked.date: could not connect to host
unblocked.faith: could not connect to host
unblocked.host: could not connect to host
unblocked.lat: could not connect to host
unblocked.party: could not connect to host
-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: did not receive HSTS header
+unblocked.world: could not connect to host
unblockedall.site: could not connect to host
-unblockedbay.info: could not connect to host
+unblockedbay.info: did not receive HSTS header
unblockerproxy.site: did not receive HSTS header
unblockerproxy.top: did not receive HSTS header
unblockmy.party: could not connect to host
@@ -19308,49 +22655,54 @@ unblockthe.site: did not receive HSTS header
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
+undeadbrains.de: could not connect to host
under30stravelinsurance.com.au: did not receive HSTS header
-undercovercondoms.com: could not connect to host
+undercovercondoms.co.uk: could not connect to host
underkin.com: could not connect to host
-undone.me: could not connect to host
-unefuite.ch: could not connect to host
+underskatten.tk: could not connect to host
+undo.co.il: could not connect to host
+undone.me: did not receive HSTS header
unfiltered.nyc: could not connect to host
unfuddle.cn: could not connect to host
ungeek.eu: did not receive HSTS header
+ungeek.fr: max-age too low: 2592000
ungern.guide: could not connect to host
-unhu.fr: did not receive HSTS header
+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
unicefcards.gr: could not connect to host
unicefkaarten.be: did not receive HSTS header
unicefkort.dk: did not receive HSTS header
+unicioushop.com: could not connect to host
+unicmotos.com: 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
+uniformehope.com.br: could not connect to host
uniformehumboldt.com.br: did not receive HSTS header
-uniformespousoalegre.com.br: did not receive HSTS header
+uniformespousoalegre.com.br: could not connect to host
+unik.bg: did not receive HSTS header
unikitty-on-tour.com: could not connect to host
-unikrn.com: could not connect to host
uninet.cf: could not connect to host
-unioils.la: max-age too low: 7889238
uniojeda.ml: could not connect to host
unionstationapp.com: could not connect to host
-unionstreetskateboards.com: could not connect to host
-unirenter.ru: did not receive HSTS header
+unique-bouncy-castles.co.uk: did not receive HSTS header
+unirenter.ru: could not connect to host
unison.com: did not receive HSTS header
-unisyssecurity.com: could not connect to host
-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]
-unitedstreamers.de: did not receive HSTS header
+unisyssecurity.com: did not receive HSTS header
+unitedcyberdevelopment.com: could not connect to host
+unitedprovinces.nl: did not receive HSTS header
unitlabs.net: could not connect to host
unitrade-425.co.za: did not receive HSTS header
univerpack.net: could not connect to host
+universal-happiness.com: could not connect to host
+universalpaymentgateway.com: could not connect to host
+universidadvg.edu.mx: could not connect to host
university4industry.com: did not receive HSTS header
-universogay.com: could not connect to host
univstore.win: could not connect to host
univz.com: could not connect to host
unixapp.ml: could not connect to host
@@ -19360,59 +22712,72 @@ unknownphenomena.net: could not connect to host
unleash.pw: could not connect to host
unlogis.ch: could not connect to host
unmanaged.space: did not receive HSTS header
+unobrindes.com.br: did not receive HSTS header
unplugg3r.dk: could not connect to host
unravel.ie: could not connect to host
unripple.com: could not connect to host
unruh.fr: did not receive HSTS header
unschoolrules.com: did not receive HSTS header
-unsereins.me: did not receive HSTS header
+unstable.network: could not connect to host
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
unwiredbrain.com: could not connect to host
unwomen.is: did not receive HSTS header
unworthy.ml: could not connect to host
-unyq.me: could not connect to host
+unyq.me: did not receive HSTS header
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
upandclear.org: max-age too low: 0
upboard.jp: could not connect to host
updatehub.io: did not receive HSTS header
-upgauged.com: could not connect to host
upldr.pw: could not connect to host
uploadbro.com: could not connect to host
+uplr.it: could not connect to host
upmchealthsecurity.us: could not connect to host
+upnorthproperty.com: did not receive HSTS header
uporoops.com: could not connect to host
upr-info.org: did not receive HSTS header
uprotect.it: could not connect to host
+upsettunnel.com: could not connect to host
upstats.eu: could not connect to host
uptakedigital.com.au: max-age too low: 2592000
uptic.net: did not receive HSTS header
+uptimed.com: did not receive HSTS header
+uptimenotguaranteed.com: could not connect to host
uptogood.org: could not connect to host
-uptrex.co.uk: did not receive HSTS header
upupming.site: did not receive HSTS header
-upwardtraining.co.uk: could not connect to host
ur-lauber.de: did not receive HSTS header
+urban-culture.fr: could not connect to host
urban-garden.lt: could not connect to host
urban-garden.lv: could not connect to host
-urban-karuizawa.co.jp: max-age too low: 0
-urbane-london.com: did not receive HSTS header
-urbanfi.sh: did not receive HSTS header
urbanmic.com: could not connect to host
urbanstylestaging.com: could not connect to host
+urbansurvival.com: max-age too low: 2592000
+urbanxhome.com: did not receive HSTS header
+urbexdk.nl: could not connect to host
urbpic.com: could not connect to host
urcentral.org: could not connect to host
urgences-valais.ch: could not connect to host
+urinedrugtesthq.com: did not receive HSTS header
+uriport.com: could not connect to host
url.cab: did not receive HSTS header
urlachershop.com.br: did not receive HSTS header
urlchomp.com: did not receive HSTS header
+urlsimple.tk: could not connect to host
urology.wiki: did not receive HSTS header
-urphp.com: did not receive HSTS header
+uronlinestreams.ga: did not receive HSTS header
+urphp.com: could not connect to host
us-immigration.com: did not receive HSTS header
+usa-10.com: could not connect to host
+usa250.gov: could not connect to host
usaab.org: could not connect to host
+usacitygames.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
@@ -19420,28 +22785,35 @@ usbtypeccompliant.com: 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
+usdfc.gov: could not connect to host
+usdoscloud.gov: could not connect to host
use.ci: could not connect to host
used-in.jp: could not connect to host
usedesk.ru: did not receive HSTS header
usedoor.jp: did not receive HSTS header
-usedu.us: could not connect to host
useevlo.com.br: could not connect to host
+usemusic.com.br: did not receive HSTS header
user-new.com: did not receive HSTS header
usercare.com: could not connect to host
useresponse.com: did not receive HSTS header
userify.com: did not receive HSTS header
uslab.io: could not connect to host
usleep.net: could not connect to host
+usmint.gov: max-age too low: 120
usparklodging.com: did not receive HSTS header
usportsgo.com: could not connect to host
+uspsoig.gov: did not receive HSTS header
usr.nz: did not receive HSTS header
+ussemiquincentennial.gov: could not connect to host
+usu.org.ua: could not connect to host
usuluddin.ga: did not receive HSTS header
+ut-addicted.com: did not receive HSTS header
utahfireinfo.gov: did not receive HSTS header
-utdscanner.com: could not connect to host
+utdscanner.com: did not receive HSTS header
utdsgda.com: could not connect to host
uteam.it: could not connect to host
-utilio.nl: max-age too low: 2592000
utilitronium-shockwave.com: could not connect to host
+utilityreport.eu: did not receive HSTS header
utitreatment.com: did not receive HSTS header
utleieplassen.no: did not receive HSTS header
utopiagalaxy.space: could not connect to host
@@ -19450,35 +22822,38 @@ 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
+utopians.dk: could not connect to host
+uttnetgroup.fr: 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]
+utvbloggen.se: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+uu6957.com: could not connect to host
uuid.cf: did not receive HSTS header
uvarov.pw: could not connect to host
uvolejniku.cz: did not receive HSTS header
-uw1008.com: could not connect to host
uwekoetter.com: did not receive HSTS header
-uwesander.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+uwesander.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
uwfreelanceopticien.nl: could not connect to host
-uwimonacs.org.jm: could not connect to host
+uwimonacs.org.jm: did not receive HSTS header
uwstartups.com: could not connect to host
uxtechnologist.com: did not receive HSTS header
uxux.pl: could not connect to host
uygindir.ml: could not connect to host
+uyku-apnesi.com: did not receive HSTS header
uyym.com: could not connect to host
-uzmandroid.com: could not connect to host
+uzmandroid.com: did not receive HSTS header
uzmandroid.net: could not connect to host
uzmandroid.top: could not connect to host
v-desk.ga: could not connect to host
v0rtex.xyz: could not connect to host
v0tti.com: did not receive HSTS header
v12.co.uk: did not receive HSTS header
+v1sit0r.ru: could not connect to host
v2.pw: did not receive HSTS header
v2ex.us: could not connect to host
v4s.ro: could not connect to host
v4veedu.com: could not connect to host
+v5ray.top: could not connect to host
v5wz.com: did not receive HSTS header
v5xp.com: did not receive HSTS header
v7.cl: could not connect to host
@@ -19488,44 +22863,54 @@ vaalmarketplace.co.za: did not receive HSTS header
vacationality.com: could not connect to host
vacationfund.co: could not connect to host
vacationscostarica.com: did not receive HSTS header
+vaccines.gov: did not receive HSTS header
vackerbetong.se: could not connect to host
vaclavambroz.cz: did not receive HSTS header
vaclavambroz.eu: could not connect to host
-vacuumreviewcenter.com: did not receive HSTS header
+vacuumreviewcenter.com: could not connect to host
vaddder.com: could not connect to host
vadennissanofhinesvilleparts.com: did not receive HSTS header
vadik.me: could not connect to host
-vadodesign.nl: did not receive HSTS header
+vadodesign.nl: could not connect to host
vagrantbits.com: could not connect to host
vaibhavchatarkar.com: could not connect to host
val-sec.com: could not connect to host
-valaeris.de: did not receive HSTS header
+valaeris.de: could not connect to host
valbonne-consulting.com: could not connect to host
+valcano-krd.ru: could not connect to host
+valcano.ru: 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
valentin-dederer.de: could not connect to host
valentin-ochs.de: could not connect to host
-valentin.ml: could not connect to host
-valesdev.com: max-age too low: 0
+valentin-sundermann.de: did not receive HSTS header
+valentinera.in: did not receive HSTS header
+vales.io: did not receive HSTS header
+valesdigital.com: did not receive HSTS header
valethound.com: could not connect to host
valhallacostarica.com: could not connect to host
valhallamovement.com: did not receive HSTS header
+validatis.com: could not connect to host
valitron.se: did not receive HSTS header
valkor.pro: could not connect to host
valkyrja.xyz: could not connect to host
+valleycode.net: could not connect to host
valleyridgepta.org: could not connect to host
valleyshop.ca: could not connect to host
vallis.net: could not connect to host
valmagus.com: could not connect to host
valopv.be: could not connect to host
+valorizofficial.com: did not receive HSTS header
valshamar.is: could not connect to host
+valtoaho.com: could not connect to host
valuechain.me: could not connect to host
+valueofblog.com: could not connect to host
vamoaeturismo.com.br: could not connect to host
vamosfalardesaude.pt: could not connect to host
-vampirism.eu: could not connect to host
-vanacht.co.za: did not receive HSTS header
+vampirism.eu: did not receive HSTS header
+vanacht.co.za: could not connect to host
vanajahosting.com: did not receive HSTS header
vanderkley.it: could not connect to host
vanderstraeten.dynv6.net: could not connect to host
@@ -19533,32 +22918,35 @@ vanessabalibridal.com: could not connect to host
vanestack.com: could not connect to host
vanetv.com: could not connect to host
vangeluwedeberlaere.be: did not receive HSTS header
-vanhaos.com: could not connect to host
vanitas.xyz: could not connect to host
vanitynailworkz.com: could not connect to host
-vanlent.net: could not connect to host
-vanohaker.ru: could not connect to host
vansieleghem.com: could not connect to host
vantaio.com: did not receive HSTS header
vanvoro.us: did not receive HSTS header
+vanwoensel.xyz: could not connect to host
vapecom-shop.com: could not connect to host
vapecraftinc.com: did not receive HSTS header
vapehour.com: could not connect to host
+vapeking.co.za: could not connect to host
vapemania.eu: could not connect to host
-vapeshopsupply.com: max-age too low: 7889238
+vapesense.co.uk: could not connect to host
+vapordepot.jp: could not connect to host
vaporpunk.space: did not receive HSTS header
varela-electricite.fr: could not connect to host
-varghese.de: could not connect to host
+variable.agency: could not connect to host
variablyconstant.com: could not connect to host
+varicoseveinssolution.com: did not receive HSTS header
+varshasookt.com: did not receive HSTS header
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
+vatelecom.dk: did not receive HSTS header
+vati.pw: could not connect to host
vatsalyagoel.com: did not receive HSTS header
vatsim-uk.co.uk: did not receive HSTS header
vatsim.uk: did not receive HSTS header
+vaud-fleurs.ch: did not receive HSTS header
vavai.net: did not receive HSTS header
vavouchers.com: could not connect to host
vawltstorage.com: could not connect to host
@@ -19566,32 +22954,38 @@ vayaport.com: could not connect to host
vb-oa.co.uk: did not receive HSTS header
vbest.net: could not connect to host
vbestreviews.com: did not receive HSTS header
+vbh2o.com: did not receive HSTS header
vbhelp.org: did not receive HSTS header
vbulletin-russia.com: could not connect to host
vbulletinrussia.com: could not connect to host
+vc.gg: did not receive HSTS header
vcdn.xyz: could not connect to host
vcdove.com: could not connect to host
vconcept.ch: could not connect to host
vconcept.me: could not connect to host
vcr.re: could not connect to host
+vcraftaudio.com: could not connect to host
vctor.net: did not receive HSTS header
+vczk.me: could not connect to host
+vdemuzere.be: 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
-vea.re: max-age too low: 0
+vdzn.net: could not connect to host
veblen.com: did not receive HSTS header
-vechkasov.ru: could not connect to host
+vechkasov.ru: did not receive HSTS header
vectro.me: could not connect to host
-vedatkamer.com: did not receive HSTS header
+vedatkamer.com: could not connect to host
vega-motor.com.ua: did not receive HSTS header
-vega-rumia.com.pl: max-age too low: 2592000
vega.dyndns.info: could not connect to host
vegalayer.com: could not connect to host
vegalengd.com: could not connect to host
vegane-proteine.com: could not connect to host
+veganforum.org: did not receive HSTS header
vegangaymer.blog: could not connect to host
veganosonline.com: could not connect to host
vegasdocs.com: did not receive HSTS header
+vegetabio.com: max-age too low: 300
+veggie-treff.de: 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
@@ -19601,6 +22995,7 @@ vehicletransportservices.co: did not receive HSTS header
vehicleuplift.co.uk: did not receive HSTS header
vekenz.com: could not connect to host
velasense.com: could not connect to host
+velocom.com.ar: did not receive HSTS header
velonustraduction.com: could not connect to host
velotyretz.fr: did not receive HSTS header
vemokin.net: could not connect to host
@@ -19608,73 +23003,78 @@ venicecomputerrepair.com: could not connect to host
venicefloridawebsitedesign.com: could not connect to host
venicerealdeal.com: could not connect to host
venirextra.com: did not receive HSTS header
-venirideal.com: did not receive HSTS header
+venirideal.com: could not connect to host
venixplays-stream.ml: could not connect to host
venmos.com: could not connect to host
-venninvestorplatform.com: did not receive HSTS header
+venninvestorplatform.com: could not connect to host
venoom.eu: did not receive HSTS header
vensl.org: could not connect to host
-venturedisplay.co.uk: did not receive HSTS header
+venturebanners.co.uk: did not receive HSTS header
venturepro.com: did not receive HSTS header
-ventzke.com: could not connect to host
+ventzke.com: did not receive HSTS header
venusbymariatash.com: did not receive HSTS header
venzocrm.com: did not receive HSTS header
-ver-ooginoog.nl: max-age too low: 2592000
veraandsteve.date: could not connect to host
+veracix.ca: max-age too low: 86400
verdeandco.co.uk: could not connect to host
-vereinscheck.de: could not connect to host
+verein-zur-pflege-der-geselligkeit.de: could not connect to host
vergeaccessories.com: could not connect to host
vergessen.cn: could not connect to host
verificaprezzi.it: did not receive HSTS header
verifiedinvesting.com: could not connect to host
verifikatorindonesia.com: could not connect to host
-veriny.tf: did not receive HSTS header
-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]
+veriomed.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+verios.com.br: did not receive HSTS header
veristor.com: did not receive HSTS header
-verliefde-jongens.nl: could not connect to host
+verliebt-in-bw.de: did not receive HSTS header
+verliebt-in-niedersachsen.de: did not receive HSTS header
vermogeninkaart.nl: could not connect to host
vermontcareergateway.org: could not connect to host
+vermuetje.nl: did not receive HSTS header
vernonfishandgame.ca: did not receive HSTS header
vernonhouseofhope.com: did not receive HSTS header
-verry.org: could not connect to host
-versbeton.nl: max-age too low: 864000
versfin.net: could not connect to host
versia.ru: did not receive HSTS header
+versicherungskontor.net: did not receive HSTS header
+versolslapeyre.fr: did not receive HSTS header
+vertigo.com.br: did not receive HSTS header
veryhax.de: could not connect to host
veryimportantusers.com: could not connect to host
veryyounglesbians.com: could not connect to host
-ves.vn.ua: could not connect to host
vestacp.top: could not connect to host
vetdnacenter.com: did not receive HSTS header
+veteransonline.us: did not receive HSTS header
veterinaire-cazeres-foucault.fr: could not connect to host
+veterinarian-hospital.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
vethouse.com.ua: did not receive HSTS header
vetmgmt.com: could not connect to host
veto.fish: could not connect to host
+vetofish.com: could not connect to host
vexsoluciones.com: did not receive HSTS header
-vforvendetta.science: did not receive HSTS header
+vextraz.co: 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
+vgchat.us: could not connect to host
vglimg.com: could not connect to host
vhost.co.id: could not connect to host
vhs-bad-wurzach.de: did not receive HSTS header
viabemestar.com.br: could not connect to host
viadeux.com: did not receive HSTS header
-viagraonlinebestellen.org: max-age too low: 3600
-vialibido.com.br: could not connect to host
viato.fr: could not connect to host
vibrashop.com.br: did not receive HSTS header
vicenage.com: could not connect to host
viceversa.xyz: did not receive HSTS header
-vicianovi.cz: did not receive HSTS header
viciousflora.com: could not connect to host
-viciousviscosity.xyz: could not connect to host
+viciousviscosity.xyz: did not receive HSTS header
vickshomes.com: did not receive HSTS header
+victordiaz.me: did not receive HSTS header
victorenxovais.com.br: could not connect to host
-victoriapemberton.com: did not receive HSTS header
+victoreriksson.ch: could not connect to host
victoriaville.ca: did not receive HSTS header
victornilsson.pw: did not receive HSTS header
-vid.me: did not receive HSTS header
vida.es: could not connect to host
+vidarity.com: did not receive HSTS header
vidb.me: could not connect to host
vidbuchanan.co.uk: did not receive HSTS header
vidcloud.xyz: did not receive HSTS header
@@ -19683,22 +23083,25 @@ videnskabsklubben.dk: did not receive HSTS header
videobola.win: could not connect to host
videoload.co: could not connect to host
videomuz.com: could not connect to host
-videorullen.se: did not receive HSTS header
-videosxgays.com: could not connect to host
+videorullen.se: 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: did not receive HSTS header
+vierdaagsehotel.nl: could not connect to host
vietnam-lifer.com: could not connect to host
-vietnamchevrolet.net: could not connect to host
+vietnamchevrolet.net: did not receive HSTS header
+vietnamguide.co.kr: did not receive HSTS header
+vietnamhost.vn: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
vietnamphotographytours.com: could not connect to host
+vietplan.vn: could not connect to host
vieux.pro: could not connect to host
viewmyrecords.com: did not receive HSTS header
viewsea.com: max-age too low: 0
@@ -19708,12 +23111,13 @@ vigilo.ga: could not connect to host
vigour.us: 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
+vikasbabyworld.de: did not receive HSTS header
vikodek.com: did not receive HSTS header
viktor-machnik.de: could not connect to host
viktorsvantesson.net: did not receive HSTS header
vilabiamodas.com.br: could not connect to host
-viladochurrasco.com.br: could not connect to host
+viladochurrasco.com.br: did not receive HSTS header
+vilaydin.com: could not connect to host
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
@@ -19722,6 +23126,7 @@ villainsclothing.com.au: could not connect to host
villalaskowa.pl: did not receive HSTS header
villasenor.online: could not connect to host
vilog.me: could not connect to host
+vim.ge: did not receive HSTS header
vimeosucks.nyc: could not connect to host
vinasec.se: could not connect to host
vinbet.org: could not connect to host
@@ -19737,49 +23142,65 @@ vincentiliano.tk: could not connect to host
vincentkooijman.at: did not receive HSTS header
vincentkooijman.nl: did not receive HSTS header
vincentoshana.com: did not receive HSTS header
+vinciconps4.it: could not connect to host
vineright.com: did not receive HSTS header
vinesauce.info: could not connect to host
vinetalk.net: could not connect to host
-vinicius.sl: could not connect to host
viniferawineclub.com: did not receive HSTS header
-vinigas.com: did not receive HSTS header
vinihk.com: did not receive HSTS header
+vinilosdecorativos.net: could not connect to host
vinnie.gq: could not connect to host
-vinogradovka.com: did not receive HSTS header
-vintock.com: could not connect to host
+vinogradovka.com: could not connect to host
+vintazh.net: could not connect to host
+vintock.com: did not receive HSTS header
+vinyculture.com: did not receive HSTS header
vio.no: did not receive HSTS header
-violenceinterrupted.org: could not connect to host
+violenceinterrupted.org: did not receive HSTS header
violet-letter.delivery: could not connect to host
-violetraven.co.uk: did not receive HSTS header
+violetraven.co.uk: could not connect to host
viosey.com: could not connect to host
vioye.com: could not connect to host
vip-9649.com: could not connect to host
+vip380.vip: max-age too low: 0
vip4553.com: could not connect to host
vip9649.com: could not connect to host
+vipam8.com: could not connect to host
viperdns.com: could not connect to host
-vipesball.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-vipesball.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-vipesball.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+vipesball.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+vipesball.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+vipesball.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
vipesball.net: could not connect to host
-viphospitality.se: could not connect to host
+viphospitality.se: did not receive HSTS header
vipi.es: could not connect to host
viplentes.com.br: did not receive HSTS header
vipmusic.ga: could not connect to host
vipnettikasinoklubi.com: did not receive HSTS header
+viqo.pl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+viral32111.com: max-age too low: 0
viral8.jp: could not connect to host
viralboombox.xyz: could not connect to host
+viralsouls.in: did not receive HSTS header
viralsv.com: could not connect to host
+virgiliocervantes.co.uk: max-age too low: 300
virginiacrimeanalysisnetwork.org: did not receive HSTS header
virial.de: did not receive HSTS header
viris.si: max-age too low: 536000
+virtual.hk: did not receive HSTS header
+virtualcloud.ddns.net: could not connect to host
virtualhealth.com: did not receive HSTS header
+virtualizy.de: did not receive HSTS header
virtualstrongbox.ca: could not connect to host
visa-shinsei.com: did not receive HSTS header
+visadaifu.com: could not connect to host
+visaexpert.co.za: did not receive HSTS header
visanhigia.com: could not connect to host
+visaop.com: could not connect to host
viserproject.com: did not receive HSTS header
visioflux-premium.com: could not connect to host
vision-painting.com: did not receive HSTS header
+visionarymedia.nl: could not connect to host
visiondigitalsog.com: could not connect to host
+visiondirectionaldrilling.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
visiongamestudios.com: could not connect to host
visionthroughknowledge.com: could not connect to host
visiontree-beta.eu: could not connect to host
@@ -19790,79 +23211,104 @@ vispaleistexel.nl: did not receive HSTS header
vissanum.com: did not receive HSTS header
vissersgrootboek.nl: did not receive HSTS header
vistarait.com: could not connect to host
+visualdrone.co: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+visualgrafix.com.mx: could not connect to host
visualvotes.co.uk: could not connect to host
vitagenda.nl: could not connect to host
+vital-tel.co.uk: did not receive HSTS header
vitalamin.at: could not connect to host
vitalamin.ch: could not connect to host
vitalamin.com: could not connect to host
vitalamin.de: did not receive HSTS header
vitalita.cz: did not receive HSTS header
+vitalityscience.com: did not receive HSTS header
vitalium-therme.de: 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
+vitamina.com: could not connect to host
vitamineproteine.com: did not receive HSTS header
vitapingu.de: could not connect to host
+vitavie.nl: did not receive HSTS header
+vitkutny.cz: 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
-vivamusic.es: did not receive HSTS header
vivasports.com.br: could not connect to host
viveconsalud.club: could not connect to host
+viviendy.com: did not receive HSTS header
+viviennevandenbos.nl: did not receive HSTS header
vivocloud.com: could not connect to host
-vivoregularizafacil.com.br: 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
vizards.cc: could not connect to host
vizeat.com: did not receive HSTS header
+vizional.com: could not connect to host
vk4wip.org.au: did not receive HSTS header
+vkb-remont.ru: could not connect to host
+vkikaku.com: did not receive HSTS header
+vkirichenko.name: could not connect to host
vkulagin.ru: could not connect to host
+vlakjebak.nl: did not receive HSTS header
+vlastimilburian.cz: did not receive HSTS header
vldkn.net: could not connect to host
vleij.family: could not connect to host
-vlogge.com: did not receive HSTS header
+vlogge.com: could not connect to host
+vlora.city: could not connect to host
vlsk.eu: did not receive HSTS header
+vlsm.se: could not connect to host
vlzbazar.ru: could not connect to host
vmem.jp: did not receive HSTS header
vmrdev.com: could not connect to host
vmstan.com: did not receive HSTS header
vmzone.de: could not connect to host
-vndb.org: could not connect to host
+vncg.org: did not receive HSTS header
vnfs-team.com: did not receive HSTS header
vnpem.org: did not receive HSTS header
vocab.guru: could not connect to host
vocalik.com: could not connect to host
-vocalsynth.space: could not connect to host
+vocalsynth.space: did not receive HSTS header
voceinveste.com: did not receive HSTS header
vodpay.com: could not connect to host
vodpay.net: could not connect to host
vodpay.org: could not connect to host
vogt.tech: could not connect to host
voicesuk.co.uk: did not receive HSTS header
-void-it.nl: did not receive HSTS header
+void-it.nl: could not connect to host
voidark.com: could not connect to host
+voidbot.tk: could not connect to host
voidi.ca: could not connect to host
voidpay.net: could not connect to host
voidpay.org: could not connect to host
voids.org: could not connect to host
voidserv.net: could not connect to host
-voidshift.com: could not connect to host
+voidzehn.com: did not receive HSTS header
voilo.club: could not connect to host
voilodaisuki.club: could not connect to host
voipkb.com: did not receive HSTS header
voiro.club: could not connect to host
voirodaisuki.club: could not connect to host
+vojtekpince.hu: did not receive HSTS header
vokalsystem.com: did not receive HSTS header
-volatimer.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-volbyzive.cz: did not receive HSTS header
+vokurka.net: did not receive HSTS header
+volatimer.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+volbyzive.cz: could not connect to host
volcain.io: could not connect to host
+volcanconcretos.com: could not connect to host
+volcano-kazan.ru: could not connect to host
+volcano-spb.ru: could not connect to host
+volcano-vts.ru: could not connect to host
+volcano24.ru: could not connect to host
+volcanov.ru: could not connect to host
volcrado.com: could not connect to host
volkden.com: could not connect to host
volkerwesselswave.nl: did not receive HSTS header
volkswurst.de: did not receive HSTS header
vollmondstollen.de: could not connect to host
-voltimax.com: did not receive HSTS header
-voltotc.com: did not receive HSTS header
+volta.io: could not connect to host
+voltimax.com: could not connect to host
+voltotc.com: could not connect to host
voluptueuse.com: did not receive HSTS header
volvipress.gr: did not receive HSTS header
von-lien-aluprofile.de: did not receive HSTS header
@@ -19873,26 +23319,25 @@ 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
-vooreenveiligthuis.nl: 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
vorlif.org: did not receive HSTS header
+vorm2.com: did not receive HSTS header
vorte.ga: could not connect to host
vortexhobbies.com: did not receive HSTS header
-vos-fleurs.ch: could not connect to host
vos-fleurs.com: could not connect to host
vosjesweb.nl: could not connect to host
votercircle.com: did not receive HSTS header
voterstartingpoint.uk: did not receive HSTS header
-votewa.gov: could not connect to host
+votewa.gov: max-age too low: 2592000
+votocek.cz: could not connect to host
+votockova.cz: could not connect to host
votre-site-internet.ch: did not receive HSTS header
votresiteweb.ch: could not connect to host
vow.vn: could not connect to host
vowsy.club: could not connect to host
-vox.vg: did not receive HSTS header
-vozami.com: could not connect to host
+vox.vg: 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
@@ -19900,10 +23345,11 @@ vpn.pics: could not connect to host
vpnhot.com: could not connect to host
vpnzoom.com: did not receive HSTS header
vps-szerver-berles.hu: could not connect to host
+vpsao.org: could not connect to host
vpsmojo.com: could not connect to host
vpsvz.cloud: could not connect to host
-vqporn.com: could not connect to host
-vranjske.co.rs: did not receive HSTS header
+vqporn.com: did not receive HSTS header
+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
@@ -19918,7 +23364,6 @@ vrijstaandhuis-in-zuid-holland-kopen.nl: could not connect to host
vrijstaandhuis-in-zuidplas-kopen.nl: could not connect to host
vrijstaandhuis-in-zwartewaterland-kopen.nl: could not connect to host
vrijstaandhuisverkopen.nl: could not connect to host
-vrlaid.com: could not connect to host
vrobert.fr: could not connect to host
vrsgames.com.mx: did not receive HSTS header
vrtouring.org: could not connect to host
@@ -19926,19 +23371,25 @@ vrzl.pro: could not connect to host
vsamsonov.com: could not connect to host
vsc-don-stocksport.de: did not receive HSTS header
vsestiralnie.com: did not receive HSTS header
+vsund.de: did not receive HSTS header
+vsx.ch: did not receive HSTS header
vtuber-schedule.info: could not connect to host
+vuatruyen.com: could not connect to host
vucdn.com: could not connect to host
vulndetect.org: did not receive HSTS header
vulnerabilities.io: could not connect to host
+vumetric.com: did not receive HSTS header
vuosaarenmontessoritalo.fi: did not receive HSTS header
-vvl.me: did not receive HSTS header
+vvw-8522.com: could not connect to host
vw-touranclub.cz: could not connect to host
+vwhcare.com: did not receive HSTS header
vwoforangeparts.com: could not connect to host
-vwt-event.nl: could not connect to host
vww-8522.com: could not connect to host
vxapps.com: could not connect to host
vxml.club: could not connect to host
vxst.org: max-age too low: 2592000
+vxstream-sandbox.com: did not receive HSTS header
+vxz.me: could not connect to host
vykup-car.ru: did not receive HSTS header
vynedmusic.com: could not connect to host
vyshivanochka.in.ua: could not connect to host
@@ -19946,8 +23397,9 @@ 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
+vzce.cn: could not connect to host
vzk.io: could not connect to host
-w-p-k.de: did not receive HSTS header
+vztekloun.cz: could not connect to host
w10club.com: could not connect to host
w1221.com: could not connect to host
w2gshop.com.br: could not connect to host
@@ -19961,40 +23413,53 @@ w9rld.com: did not receive HSTS header
wabifoggynuts.com: could not connect to host
wachter.biz: could not connect to host
wachtwoordencheck.nl: could not connect to host
-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: could not connect to host
+wage-feeg.gc.ca: could not connect to host
+waggs.link: could not connect to host
+wahhoi.net: did not receive HSTS header
wahlen-bad-wurzach.de: did not receive HSTS header
+wahlman.org: did not receive HSTS header
wai-in.com: could not connect to host
-wai-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-waidu.de: did not receive HSTS header
+wai-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+waidu.de: could not connect to host
wains.be: did not receive HSTS header
+wait.jp: could not connect to host
wait.moe: could not connect to host
waiterwheels.com: did not receive HSTS header
waixingrenfuli7.vip: could not connect to host
-waka168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-waka168.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-waka88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-waka88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-wakandasun.com: did not receive HSTS header
+waka168.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+waka168.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+waka88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+waka88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+wakandasun.com: 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
+waldkinder-ilmenau.de: could not connect to host
+walentin.co: could not connect to host
+waligorska.pl: could not connect to host
walkeryoung.ca: could not connect to host
walkingforhealth.org.uk: did not receive HSTS header
wallabag.it: did not receive HSTS header
wallabag.org: did not receive HSTS header
wallacequinn.co.uk: did not receive HSTS header
wallet.google.com: did not receive HSTS header (error ignored - included regardless)
+wallethub.com: did not receive HSTS header
+wallis-inside.ch: could not connect to host
wallpapers.pub: could not connect to host
wallsblog.dk: could not connect to host
walnutgaming.co.uk: could not connect to host
-waltellis.com: could not connect to host
walterlynnmosley.com: did not receive HSTS header
wanashi.com: could not connect to host
wanban.io: could not connect to host
+wancai666.com: max-age too low: 0
+wancai880.com: max-age too low: 0
+wancai886.com: max-age too low: 0
+wancaibbin.com: max-age too low: 0
+wancaip66.com: max-age too low: 0
+wancaiqe.com: max-age too low: 0
+wancaiqwe5967.com: max-age too low: 0
+wancaiwang8.com: max-age too low: 0
wanda76.com: could not connect to host
wanda78.com: could not connect to host
wanda79.com: could not connect to host
@@ -20002,81 +23467,115 @@ 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
+wangbin1023.com: max-age too low: 0
+wangejiba.com: did not receive HSTS header
+wangfuhe.com: max-age too low: 0
wangjiatun.com.tw: could not connect to host
wangkezun.com: could not connect to host
wangler-internet.de: did not receive HSTS header
+wangqiliang.org: could not connect to host
wangqiliang.xn--fiqs8s: could not connect to host
wangql.cn: could not connect to host
+wangql.net: could not connect to host
+wangwenbo.cn: did not receive HSTS header
+wangyubao.cn: could not connect to host
wantshow.com.br: did not receive HSTS header
-wanvi.net: could not connect to host
-wanybug.cn: did not receive HSTS header
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
warekon.com: could not connect to host
warekon.dk: could not connect to host
-warezaddict.com: did not receive HSTS header
+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
warmservers.com: could not connect to host
warnings.xyz: could not connect to host
+warp-radio.tv: could not connect to host
warped.com: did not receive HSTS header
warren.sh: could not connect to host
warrencreative.com: did not receive HSTS header
-warsentech.com: did not receive HSTS header
+warsentech.com: could not connect to host
+warsonco.com: did not receive HSTS header
warumsuchen.at: did not receive HSTS header
+warung.host: 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 :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+wasgehtheute.in: could not connect to host
washandfun.com: did not receive HSTS header
wassim.is: did not receive HSTS header
watashi.bid: could not connect to host
-watchcom.org.za: did not receive HSTS header
-watchium.com: did not receive HSTS header
+watchinventory.com: did not receive HSTS header
+watchium.com: could not connect to host
+watchonline.al: could not connect to host
watchpci.com: did not receive HSTS header
watchtv-online.pw: could not connect to host
watchweasel.com: could not connect to host
-waterfedpole.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-waterforlife.net.au: did not receive HSTS header
+waterfedpole.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+waterforlife.net.au: could not connect to host
waterpoint.com.br: could not connect to host
watersportmarkt.net: did not receive HSTS header
+watertrails.io: could not connect to host
watsonhall.uk: could not connect to host
+watsonwork.me: did not receive HSTS header
wattechweb.com: did not receive HSTS header
waukeect.com: could not connect to host
-wave-ola.es: did not receive HSTS header
+wave-ola.es: could not connect to host
wavefloatrooms.com: did not receive HSTS header
wavefrontsystemstech.com: could not connect to host
-wavesoftime.com: could not connect to host
+waverlysecuritycameras.com: did not receive HSTS header
waxlrs.com: could not connect to host
+waylandss.com: could not connect to host
waylaydesign.com: did not receive HSTS header
waylee.net: did not receive HSTS header
+wayuanma.com: could not connect to host
+waze.com: did not receive HSTS header
wbit.co.il: did not receive HSTS header
wbut.ml: could not connect to host
+wby.gd: could not connect to host
+wc11122.com: max-age too low: 0
+wc1234.cn: could not connect to host
+wc168cp.com: max-age too low: 0
+wclhtzs.com: max-age too low: 0
+wcsi.com: did not receive HSTS header
+wcw10000.com: max-age too low: 0
+wcw130.com: max-age too low: 0
+wcw179.com: max-age too low: 0
+wcw618.com: max-age too low: 0
+wcw635290.com: max-age too low: 0
+wcw668.com: max-age too low: 0
+wcw9366.com: max-age too low: 0
+wcwcp88.com: max-age too low: 0
wd627.com: could not connect to host
wd976.com: could not connect to host
-wdesk.com: did not receive HSTS header
+wdj1023.com: max-age too low: 0
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
wearehackerone.com: could not connect to host
weareincognito.org: could not connect to host
+wearesouthafricans.com: did not receive HSTS header
wearewithyou.org: could not connect to host
+weaspireusa.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
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-adminy.co.uk: did not receive HSTS header
web-advisor.co.uk: could not connect to host
+web-apps.tech: could not connect to host
web-demarche.com: could not connect to host
+web-dl.cc: did not receive HSTS header
web-industry.fr: could not connect to host
web-insider.net: did not receive HSTS header
+web-jive.com: did not receive HSTS header
web-thinker.ru: could not connect to host
web-vision.de: did not receive HSTS header
web1n.com: did not receive HSTS header
@@ -20086,46 +23585,50 @@ webambacht.nl: could not connect to host
webandwords.com.au: could not connect to host
webanker.sh: did not receive HSTS header
webapky.cz: could not connect to host
+webappky.cz: could not connect to host
webapps.directory: could not connect to host
webart-factory.de: could not connect to host
webassadors.com: could not connect to host
webauthority.co.uk: could not connect to host
+webbson.net: 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
+webchat.domains: could not connect to host
webcreation.rocks: could not connect to host
webdeflect.com: did not receive HSTS header
webdesign-kronberg.de: did not receive HSTS header
-webdesigneauclaire.com: could not connect to host
+webdesignplay.com: could not connect to host
webdesignssussex.co.uk: could not connect to host
+webdev-cw.me: could not connect to host
webdev-quiz.de: did not receive HSTS header
webdev.mobi: could not connect to host
webdevxp.com: could not connect to host
webdollarvpn.io: could not connect to host
webdosh.com: did not receive HSTS header
-webeau.com: could not connect to host
webeconomia.it: did not receive HSTS header
webeditors.com: did not receive HSTS header
webelement.sk: did not receive HSTS header
-weberjulia.com: could not connect to host
+weberjulia.com: did not receive HSTS header
+webfox.com.br: did not receive HSTS header
webfronten.dk: did not receive HSTS header
webgaff.com: could not connect to host
webgap.me: did not receive HSTS header
+webgears.com: could not connect to host
webgreat.de: did not receive HSTS header
webhackspro.com: could not connect to host
-webhelyesarcu.hu: did not receive HSTS header
+webhopp.com: could not connect to host
webhosting4.net: did not receive HSTS header
webhostingpros.ml: could not connect to host
-webhostingshop.ca: could not connect to host
-webless.com: could not connect to host
+webhostplan.info: could not connect to host
+webless.com: did not receive HSTS header
weblogic.pl: did not receive HSTS header
webm.to: could not connect to host
webmail.mayfirst.org: did not receive HSTS header
webmaniabr.com: did not receive HSTS header
-webmarketingfestival.it: did not receive HSTS header
webmax.com.tr: did not receive HSTS header
webmel.com: did not receive HSTS header
webmixseo.com: did not receive HSTS header
+webmr.de: could not connect to host
webnetmail4u.com: could not connect to host
webneuch.ch: did not receive HSTS header
webneuch.com: did not receive HSTS header
@@ -20136,33 +23639,38 @@ webneuch.swiss: did not receive HSTS header
webninja.work: could not connect to host
webnoob.net: could not connect to host
webnosql.com: could not connect to host
+webogram.org: did not receive HSTS header
webperformance.ru: did not receive HSTS header
webproshosting.tk: could not connect to host
webproxy.pw: could not connect to host
webpublica.pt: could not connect to host
+webpulser.com: did not receive HSTS header
webreslist.com: did not receive HSTS header
websandbox.uk: could not connect to host
websectools.com: could not connect to host
webseo.de: did not receive HSTS header
websitedesign.bg: did not receive HSTS header
+websiteforlease.ca: could not connect to host
websiterent.ca: could not connect to host
websitesabq.com: did not receive HSTS header
+websitesolutionsmedia.com: could not connect to host
webspotter.nl: could not connect to host
webstationservice.fr: 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
+webtechgadgetry.com: did not receive HSTS header
webtek.nu: could not connect to host
webthings.com.br: could not connect to host
webtiles.co.uk: could not connect to host
+webtobesocial.de: could not connect to host
webuni.hu: did not receive HSTS header
webveloper.com: did not receive HSTS header
webvisum.de: did not receive HSTS header
-webwolf.co.za: could not connect to host
+webwolf.co.za: did not receive HSTS header
webwork.pw: did not receive HSTS header
-webypass.xyz: could not connect to host
+webypass.xyz: did not receive HSTS header
webz.one: could not connect to host
webzanem.com: could not connect to host
wecanfindit.co.za: could not connect to host
@@ -20171,26 +23679,32 @@ wedding-m.jp: did not receive HSTS header
weddingalbumsdesign.com: max-age too low: 2592000
weddingfantasy.ru: could not connect to host
weddingibiza.nl: could not connect to host
+weddingofficiantwilmington.com: did not receive HSTS header
+wedestock.com: did not receive HSTS header
wedotrains.club: could not connect to host
weebsr.us: could not connect to host
weed.ren: could not connect to host
weedcircles.com: did not receive HSTS header
+weedelec.pl: could not connect to host
weedlandia.org: could not connect to host
weednews.co: did not receive HSTS header
week.report: could not connect to host
weekly.fyi: could not connect to host
+weeklycenter.co.jp: did not receive HSTS header
+weforgood.org.tw: could not connect to host
wegenaer.nl: could not connect to host
wegethitched.co.uk: could not connect to host
weggeweest.nl: could not connect to host
wegner.no: could not connect to host
weicn.org: did not receive HSTS header
+weidehelp.com: could not connect to host
weightreviews.com: could not connect to host
weiji.ga: did not receive HSTS header
weiler.xyz: could not connect to host
weimaraner.com.br: could not connect to host
weinhandel-preissler.de: could not connect to host
weirdserver.com: could not connect to host
-weixiaojun.org: could not connect to host
+weixiaojun.org: did not receive HSTS header
weizenke.im: could not connect to host
wejumall.com: did not receive HSTS header
wekibe.de: could not connect to host
@@ -20198,10 +23712,11 @@ welby.cat: did not receive HSTS header
welches-kinderfahrrad.de: could not connect to host
welcome-tahiti.com: did not receive HSTS header
welcomehelp.de: could not connect to host
+weldwp.com: could not connect to host
welkers.org: could not connect to host
wellastore.ru: could not connect to host
wellcomp.com.br: did not receive HSTS header
-welldrake.com: could not connect to host
+welldrake.com: did not receive HSTS header
wellmarts.com: did not receive HSTS header
wellness.so: could not connect to host
wellopp.com: did not receive HSTS header
@@ -20215,10 +23730,12 @@ welpy.com: could not connect to host
welsh.com.br: could not connect to host
weltentreff.com: could not connect to host
weltmeisterschaft.net: could not connect to host
+wemakebookkeepingeasy.com: could not connect to host
weme.eu: did not receive HSTS header
-wen-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-wen-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+wen-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+wen-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
wenchieh.com: could not connect to host
+wendabisheng.com: max-age too low: 0
wendalyncheng.com: did not receive HSTS header
wendu.me: could not connect to host
wengebowuguan.com: could not connect to host
@@ -20232,26 +23749,33 @@ 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: did not receive HSTS header
+werkinholland.com: did not receive HSTS header
werkplaatsoost.nl: could not connect to host
werkruimtebottendaal.nl: could not connect to host
-werkz.io: could not connect to host
+werkz.io: did not receive HSTS header
werner-schaeffer.de: did not receive HSTS header
wernerschaeffer.de: did not receive HSTS header
+wertpapiertreuhand.de: did not receive HSTS header
wes-dev.com: could not connect to host
-wesayyesprogram.com: could not connect to host
+wesayyesprogram.com: did not receive HSTS header
wesleyharris.ca: did not receive HSTS header
wespeakgeek.co.za: could not connect to host
+wessner.co: could not connect to host
westcoastaggregate.com: could not connect to host
-westendzone.com: could not connect to host
+westendzone.com: max-age too low: 0
westerhoud.nl: did not receive HSTS header
westhighlandwhiteterrier.com.br: could not connect to host
westlaketire.pt: did not receive HSTS header
+westlights.net: 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
+westwood.no: did not receive HSTS header
wetherbymethodist.org.uk: did not receive HSTS header
wetherbyweather.org.uk: did not receive HSTS header
wetoxic.com: could not connect to host
+wettanbieter-vergleich.de: did not receive HSTS header
+wettbonus.eu: did not receive HSTS header
wettbonus.info: max-age too low: 0
wettbuero.de: did not receive HSTS header
wettertoertchen.com: could not connect to host
@@ -20264,26 +23788,31 @@ wewillgo.com: could not connect to host
wewillgo.org: did not receive HSTS header
wewlad.me: could not connect to host
weyland.tech: could not connect to host
+weymouthslowik.com: max-age too low: 0
weynaphotography.com: did not receive HSTS header
+wf-demo-eu.appspot.com: did not receive HSTS header (error ignored - included regardless)
wf-training-master.appspot.com: did not receive HSTS header (error ignored - included regardless)
-wfl.ro: did not receive HSTS header
+wfsystem.net: did not receive HSTS header
wftda.com: did not receive HSTS header
wg-tools.de: could not connect to host
-whanau.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+wg1907.com: max-age too low: 0
+wge-feg.gc.ca: 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 :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+whanwhy.com: max-age too low: 0
whatanime.ga: could not connect to host
+whateveraspidercan.com: did not receive HSTS header
whatisl.ovh: could not connect to host
whats.io: could not connect to host
whatsstalk.me: could not connect to host
whatsupdeco.com: did not receive HSTS header
whatsyouroffer.co.uk: did not receive HSTS header
wheatgra.in: could not connect to host
+wheeler.kiwi.nz: could not connect to host
wheelwide.co.uk: could not connect to host
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: did not receive HSTS header
+wherephoto.com: could not connect to host
wheresben.today: could not connect to host
whexit.nl: could not connect to host
whilsttraveling.com: could not connect to host
@@ -20295,7 +23824,10 @@ 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: did not receive HSTS header
+whitewebhosting.com: could not connect to host
+who.pm: could not connect to host
whoasome.com: could not connect to host
whoclicks.net: could not connect to host
whoisamitsingh.com: did not receive HSTS header
@@ -20303,36 +23835,40 @@ whoisapi.online: could not connect to host
whoiscuter.ml: could not connect to host
whoiscutest.ml: could not connect to host
whoisdhh.com: could not connect to host
-wholebites.com: max-age too low: 7889238
wholelotofbounce.co.uk: did not receive HSTS header
wholikes.us: did not receive HSTS header
whoneedstobeprimaried.today: could not connect to host
-whoownsmyavailability.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+whoownsmyavailability.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
whoshotya.de: did not receive HSTS header
+whosyourdaddy.ml: could not connect to host
+whtcsj.com: could not connect to host
whysuck.com: could not connect to host
wiapply.com: could not connect to host
wibruje.pl: did not receive HSTS header
wibuw.com: could not connect to host
-widdleguy.com: did not receive HSTS header
widenews.org: did not receive HSTS header
+widoj.gov: could not connect to host
+wiebetaaltdat.nl: could not connect to host
wienerwichtelchallenge.at: did not receive HSTS header
-wieninternational.at: did not receive HSTS header
+wieninternational.at: could not connect to host
wificafehosting.com: did not receive HSTS header
wifimapa.cz: could not connect to host
+wigelsworth.io: could not connect to host
wiiaam.com: could not connect to host
wiiforum.no: did not receive HSTS header
wiire.me: could not connect to host
wikiclash.info: could not connect to host
+wikilivres.ca: could not connect to host
wikipeter.nl: did not receive HSTS header
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
wildboaratvparts.com: did not receive HSTS header
wildcard.hu: could not connect to host
wilddog.com: did not receive HSTS header
+wildzoopark.com: could not connect to host
wilf1rst.com: could not connect to host
-wilhelm-nathan.de: could not connect to host
+willberg.bayern: 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
@@ -20342,32 +23878,32 @@ williamboundsltd.com: could not connect to host
williamsapiens.com: could not connect to host
williamsflintlocks.com: did not receive HSTS header
williamtm.design: could not connect to host
-willkommen-fuerstenberg.de: did not receive HSTS header
-willosagiede.com: did not receive HSTS header
+willkommen-fuerstenberg.de: could not connect to host
willywangstory.org: could not connect to host
wilsonovi.com: could not connect to host
wilsonvilleoregon.gov: could not connect to host
-winaes.com: did not receive HSTS header
+winaes.com: could not connect to host
winclient.cn: could not connect to host
-wind.moe: could not connect to host
windholz.us: did not receive HSTS header
windows10insider.com: did not receive HSTS header
windowsforum.com: did not receive HSTS header
windowstech.it: did not receive HSTS header
+windowwellcovers.com: did not receive HSTS header
windowwellexperts.com: did not receive HSTS header
windrunner.se: could not connect to host
winds.cf: could not connect to host
windwoodmedia.com: could not connect to host
windwoodweb.com: could not connect to host
wine-importer.ru: could not connect to host
-winebid.com: could not connect to host
winecodeavocado.com: could not connect to host
wineonthewall.com: max-age too low: 300
-wineworksonline.com: could not connect to host
-winfield.me.uk: did not receive HSTS header
-winged.io: did not receive HSTS header
+winfield.me.uk: could not connect to host
+winfographics.com: did not receive HSTS header
+winged.io: could not connect to host
wingos.net: could not connect to host
+wingspatagonia.com: could not connect to host
wingumd.net: could not connect to host
+winner.ua: did not receive HSTS header
winnersports.co: could not connect to host
winpack.cf: could not connect to host
winpack.eu.org: could not connect to host
@@ -20375,26 +23911,28 @@ winportal.cz: could not connect to host
winsec.nl: could not connect to host
winshiplending.com: could not connect to host
winsufi.biz: could not connect to host
-winter.engineering: could not connect to host
wintercircle.co: max-age too low: 60
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
-wireless-emergency-stop.com: did not receive HSTS header
+wireframesoftware.com: could not connect to host
wirelesswatch.com.au: could not connect to host
wiretrip.io: could not connect to host
wirkaufendeinau.to: could not connect to host
+wirsberg-studios.de: could not connect to host
wisak.eu: could not connect to host
wisal.org: did not receive HSTS header
wisdomize.me: could not connect to host
+wisecountytx.gov: 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
+with.de: did not receive HSTS header
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
@@ -20409,46 +23947,57 @@ witzemaschine.com: max-age too low: 0
wixguide.co: could not connect to host
wiz.farm: could not connect to host
wizardmeow.xin: could not connect to host
-wizardspire.com: did not receive HSTS header
+wizardspire.com: could not connect to host
wizznab.tk: could not connect to host
wk-cpm.com: could not connect to host
wk577.com: could not connect to host
+wkz.io: could not connect to host
+wlsme.org: did not receive HSTS header
+wlwlwx.com: could not connect to host
wlzhiyin.cn: could not connect to host
wmawri.com: did not receive HSTS header
+wmcns.net: could not connect to host
wmcuk.net: could not connect to host
wmfinanz.com: could not connect to host
-wmoda.com.br: could not connect to host
+wmoda.com.br: did not receive HSTS header
wmustore.com: did not receive HSTS header
-wnmed.com.au: did not receive HSTS header
wnmm.nl: could not connect to host
wnnc.co.uk: could not connect to host
+wo211997.com: max-age too low: 0
+woah.how: could not connect to host
woaiuhd.com: could not connect to host
wobblylang.org: could not connect to host
+wobker.co: could not connect to host
wochenentwicklung.com: did not receive HSTS header
wod-stavby.cz: could not connect to host
wodboss.com: could not connect to host
wodice.com: could not connect to host
+wohnbegleitung.ch: did not receive HSTS header
wohnungsbau-ludwigsburg.de: did not receive HSTS header
woi.vision: could not connect to host
woima.fi: did not receive HSTS header
+wojak.xyz: could not connect to host
wokeai.net: did not receive HSTS header
woktoss.com: could not connect to host
wolfemg.com: could not connect to host
wolfenland.net: did not receive HSTS header
wolfesden.com: could not connect to host
+wolfgang-kerschbaumer.net: could not connect to host
wolfram.io: could not connect to host
+wolfvideoproductions.com: did not receive HSTS header
wolkenspeicher.org: could not connect to host
+wolkjehosting.nl: 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
+wonabo.com: did not receive HSTS header
wonderbooks.club: could not connect to host
wonderfall.xyz: could not connect to host
wonderhost.info: could not connect to host
wondershift.biz: did not receive HSTS header
wondy.com: could not connect to host
-woodenson.com: did not receive HSTS header
-woodlandschurch.net: max-age too low: 43200
woodmafia.com.au: could not connect to host
+woodsmillparkapartmentsstl.com: did not receive HSTS header
woodworkertip.com: could not connect to host
woofsbakery.com: could not connect to host
woomai.net: could not connect to host
@@ -20463,13 +24012,15 @@ wordpress-test.site: could not connect to host
wordpresspro.cl: could not connect to host
wordsofamaster.com: could not connect to host
work-and-jockel.de: did not receive HSTS header
+workcheck.bz: could not connect to host
workemy.com: could not connect to host
workfone.io: could not connect to host
workingmachine.info: could not connect to host
workissime.com: did not receive HSTS header
+workmart.mx: could not connect to host
workpermit.com.vn: could not connect to host
workplaces.online: did not receive HSTS header
-worksofwyoming.org: did not receive HSTS header
+worksofwyoming.org: could not connect to host
workwithgo.com: could not connect to host
world-education-association.org: could not connect to host
worldchess.london: could not connect to host
@@ -20477,28 +24028,36 @@ worldcrafts.org: did not receive HSTS header
worldeventscalendars.com: could not connect to host
worldfree4.org: did not receive HSTS header
worldlist.org: could not connect to host
-worldofterra.net: could not connect to host
+worldofterra.net: did not receive HSTS header
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: did not receive HSTS header
+woshiluo.site: could not connect to host
+woufbox.com: did not receive HSTS header
wow-travel.eu: could not connect to host
+wow202y5.com: could not connect to host
wowapi.org: could not connect to host
wowhelp.it: could not connect to host
wowinvasion.com: did not receive HSTS header
+wozalapha.com: did not receive HSTS header
wp-bullet.com: did not receive HSTS header
wp-fastsearch.de: could not connect to host
wp-rescue.com.au: could not connect to host
+wp-securehosting.com: could not connect to host
wp-stack.pro: could not connect to host
wp6.pw: did not receive HSTS header
wpblog.com.tw: could not connect to host
+wpbook-pacificmall.work: did not receive HSTS header
wpcarer.pro: could not connect to host
-wpcdn.bid: did not receive HSTS header
+wpcharged.nz: did not receive HSTS header
wpcheck.io: could not connect to host
wpcontrol.se: could not connect to host
wpdesigner.ir: did not receive HSTS header
+wpdirecto.com: did not receive HSTS header
+wpdivitheme.nl: did not receive HSTS header
wpdublin.com: could not connect to host
wpexplainer.com: did not receive HSTS header
wpfast.net: could not connect to host
@@ -20510,62 +24069,77 @@ wphostingspot.com: did not receive HSTS header
wpinfos.de: did not receive HSTS header
wplatin.com: could not connect to host
wpmetadatastandardsproject.org: could not connect to host
+wpoptimalizace.cz: could not connect to host
wprevs.com: did not receive HSTS header
wpruby.com: did not receive HSTS header
+wpscans.com: did not receive HSTS header
+wpsec.nl: did not receive HSTS header
wpsono.com: could not connect to host
wpspeed.nl: did not receive HSTS header
+wptomatic.de: did not receive HSTS header
+wpturnedup.com: did not receive HSTS header
wpunpacked.com: could not connect to host
wpyecom.es: did not receive HSTS header
wpzhiku.com: did not receive HSTS header
-wql.zj.cn: did not receive HSTS header
+wql.zj.cn: could not connect to host
wrapit.hu: could not connect to host
wrapitup.co.uk: did not receive HSTS header
wrbunderwriting.com: did not receive HSTS header
wrfu.co.nz: did not receive HSTS header
wriedts.de: did not receive HSTS header
wrightdoumawedding.com: could not connect to host
+wrightselfstorageandremovals.com: did not receive HSTS header
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
+writeenglishright.com: 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 :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+writepride.com: could not connect to host
+writing-job-online.com: did not receive HSTS header
wrldevelopment.com: did not receive HSTS header
wroffle.com: did not receive HSTS header
+wromeapp.com: could not connect to host
wrwg.ca: could not connect to host
wsb-immo.at: could not connect to host
wsdcap.com: could not connect to host
wsor.group: did not receive HSTS header
+wsp-center.com: could not connect to host
wss.com.ve: could not connect to host
wsscompany.com.ve: could not connect to host
wssv.ch: could not connect to host
wsup.social: could not connect to host
-wtwk.com: did not receive HSTS header
+wsv-grafenau.de: did not receive HSTS header
+wtf.ninja: could not connect to host
+wtfsec.org: did not receive HSTS header
+wth.in: could not connect to host
+wuav.net: could not connect to host
wubify.com: did not receive HSTS header
wubocong.com: did not receive HSTS header
wubthecaptain.eu: could not connect to host
+wucanyao.com: max-age too low: 0
wuchipc.com: could not connect to host
-wufu.org: could not connect to host
+wucke13.de: did not receive HSTS header
+wufu.org: did not receive HSTS header
wufupay.com: could not connect to host
+wugniu.com: did not receive HSTS header
wuhengmin.com: could not connect to host
wulpi.it: did not receive HSTS header
+wumai-p.cn: could not connect to host
wumai.cloud: could not connect to host
-wumbo.cf: could not connect to host
-wumbo.ga: could not connect to host
-wumbo.gq: could not connect to host
wumbo.kiwi: could not connect to host
-wumbo.ml: could not connect to host
-wumbo.tk: could not connect to host
wundtherapie-schulung.de: could not connect to host
wuppertal-2018.de: could not connect to host
wurzelzwerg.net: could not connect to host
wusx.club: could not connect to host
wutianxian.com: could not connect to host
+wuwuwu.me: could not connect to host
+wuyue.photo: could not connect to host
+wv-n.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
wvr-law.de: did not receive HSTS header
wvv-8522.com: could not connect to host
wvw-8522.com: could not connect to host
wvw698.com: max-age too low: 2592000
+ww6957.com: could not connect to host
wwbsb.xyz: could not connect to host
-wwjd.dynu.net: could not connect to host
+wwjd.dynu.net: did not receive HSTS header
wwv-8522.com: could not connect to host
www-001133.com: could not connect to host
www-0385.com: could not connect to host
@@ -20577,22 +24151,23 @@ www-507.net: could not connect to host
www-62755.com: could not connect to host
www-66136.com: could not connect to host
www-746.com: could not connect to host
-www-7570.com: did not receive HSTS header
+www-7570.com: could not connect to host
www-771122.com: did not receive HSTS header
www-8003.com: did not receive HSTS header
-www-80036.com: could not connect to host
+www-86499.com: did not receive HSTS header
www-88599.com: did not receive HSTS header
www-8887999.com: could not connect to host
-www-9649.com: did not receive HSTS header
+www-9649.com: could not connect to host
www-9995.com: could not connect to host
www-djbet.com: could not connect to host
www-jinshavip.com: could not connect to host
-www-pj009.com: could not connect to host
+www-pj009.com: did not receive HSTS header
+www.calyxinstitute.org: did not receive HSTS header
www.captaintrain.com: did not receive HSTS header
www.cueup.com: could not connect to host
-www.cyveillance.com: did not receive HSTS header
+www.cyveillance.com: could not connect to host
www.developer.mydigipass.com: could not connect to host
-www.elanex.biz: did not receive HSTS header
+www.elanex.biz: 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
@@ -20603,6 +24178,7 @@ www.logentries.com: did not receive HSTS header
www.makeyourlaws.org: could not connect to host
www.moneybookers.com: did not receive HSTS header
www.neonisi.com: could not connect to host
+www.org.gg: could not connect to host
www.paycheckrecords.com: did not receive HSTS header
www.rme.li: did not receive HSTS header
www.sandbox.mydigipass.com: could not connect to host
@@ -20613,59 +24189,174 @@ www3.info: could not connect to host
www68277.com: could not connect to host
wwww.is: could not connect to host
wwww.me.uk: could not connect to host
-wxkxsw.com: could not connect to host
wxrlab.com: could not connect to host
-wxster.com: 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
+wybar.uk: could not connect to host
wybmabiity.com: could not connect to host
wygluszanie.eu: could not connect to host
+wyjmb.com: max-age too low: 0
+wylog.ph: could not connect to host
+wynterhill.co.uk: did not receive HSTS header
+wyomingexiles.com: could not connect to host
+wypemagazine.se: did not receive HSTS header
wyu.cc: could not connect to host
+wyysoft.tk: could not connect to host
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
+x00.me: could not connect to host
+x13.com: could not connect to host
x1616.tk: could not connect to host
-x1be.win: could not connect to host
+x1be.win: did not receive HSTS header
x23.eu: did not receive HSTS header
x2c0.net: did not receive HSTS header
x2w.io: could not connect to host
x3led.com: could not connect to host
+x509.io: could not connect to host
x509.pub: could not connect to host
x509.pw: could not connect to host
-x69.biz: could not connect to host
-x69x.net: could not connect to host
+xanderbron.tech: could not connect to host
xanderweaver.com: did not receive HSTS header
xandocs.com: could not connect to host
xat.re: did not receive HSTS header
-xavier.is: could not connect to host
xavierbarroso.com: did not receive HSTS header
xawen.net: did not receive HSTS header
-xb6638.com: max-age too low: 2592000
-xb6673.com: max-age too low: 2592000
-xb851.com: max-age too low: 2592000
-xb862.com: max-age too low: 2592000
-xb913.com: max-age too low: 2592000
-xb917.com: max-age too low: 2592000
-xb925.com: max-age too low: 2592000
-xb927.com: max-age too low: 2592000
-xb965.com: max-age too low: 2592000
-xb983.com: max-age too low: 2592000
-xbertschy.com: did not receive HSTS header
+xb008.com: could not connect to host
+xb1001.com: could not connect to host
+xb115.com: could not connect to host
+xb2002.com: could not connect to host
+xb201.com: could not connect to host
+xb3008.com: could not connect to host
+xb306.com: could not connect to host
+xb3636.com: could not connect to host
+xb380.com: could not connect to host
+xb3888.com: could not connect to host
+xb6008.com: could not connect to host
+xb601.com: could not connect to host
+xb6600.com: could not connect to host
+xb6610.com: could not connect to host
+xb6616.com: could not connect to host
+xb6619.com: could not connect to host
+xb6625.com: could not connect to host
+xb6627.com: could not connect to host
+xb6628.com: could not connect to host
+xb6629.com: could not connect to host
+xb6632.com: could not connect to host
+xb6636.com: could not connect to host
+xb6638.com: could not connect to host
+xb6639.com: could not connect to host
+xb6656.com: could not connect to host
+xb6673.com: could not connect to host
+xb6676.com: could not connect to host
+xb6679.com: could not connect to host
+xb6680.com: could not connect to host
+xb6683.com: could not connect to host
+xb6689.com: could not connect to host
+xb6692.com: could not connect to host
+xb6696.com: could not connect to host
+xb6806.com: could not connect to host
+xb6808.com: could not connect to host
+xb6866.com: could not connect to host
+xb6880.com: could not connect to host
+xb7001.com: could not connect to host
+xb7077.com: could not connect to host
+xb7676.com: could not connect to host
+xb780.com: could not connect to host
+xb8006.com: could not connect to host
+xb8018.com: could not connect to host
+xb836.com: could not connect to host
+xb851.com: could not connect to host
+xb852.com: could not connect to host
+xb853.com: could not connect to host
+xb856.com: could not connect to host
+xb857.com: could not connect to host
+xb859.com: could not connect to host
+xb8606.com: could not connect to host
+xb862.com: could not connect to host
+xb865.com: could not connect to host
+xb871.com: could not connect to host
+xb872.com: could not connect to host
+xb873.com: could not connect to host
+xb8801.com: could not connect to host
+xb8806.com: could not connect to host
+xb8808.com: could not connect to host
+xb8861.com: could not connect to host
+xb891.com: could not connect to host
+xb893.com: could not connect to host
+xb896.com: could not connect to host
+xb9009.com: could not connect to host
+xb901.com: could not connect to host
+xb906.com: could not connect to host
+xb913.com: could not connect to host
+xb917.com: could not connect to host
+xb925.com: could not connect to host
+xb927.com: could not connect to host
+xb935.com: could not connect to host
+xb936.com: could not connect to host
+xb937.com: could not connect to host
+xb951.com: could not connect to host
+xb952.com: could not connect to host
+xb953.com: could not connect to host
+xb957.com: could not connect to host
+xb961.com: could not connect to host
+xb962.com: could not connect to host
+xb963.com: could not connect to host
+xb965.com: could not connect to host
+xb967.com: could not connect to host
+xb971.com: could not connect to host
+xb972.com: could not connect to host
+xb976.com: could not connect to host
+xb980.com: could not connect to host
+xb982.com: could not connect to host
+xb983.com: could not connect to host
+xbc.nz: could not connect to host
xbind.io: could not connect to host
-xbyl15.com: did not receive HSTS header
-xbyl16.com: did not receive HSTS header
-xbyl21.com: did not receive HSTS header
-xbyl23.com: did not receive HSTS header
-xbyl26.com: did not receive HSTS header
-xbyl39.com: did not receive HSTS header
-xbyl63.com: did not receive HSTS header
-xbyl71.com: did not receive HSTS header
-xbyl78.com: did not receive HSTS header
-xbyl82.com: did not receive HSTS header
-xbyl91.com: did not receive HSTS header
+xbjt1.com: could not connect to host
+xbjt11.com: could not connect to host
+xbjt2.com: could not connect to host
+xbjt22.com: could not connect to host
+xbjt3.com: could not connect to host
+xbjt33.com: could not connect to host
+xbjt4.com: could not connect to host
+xbjt5.com: could not connect to host
+xbjt55.com: could not connect to host
+xbjt66.com: could not connect to host
+xbjt666.com: could not connect to host
+xbjt7.com: could not connect to host
+xbjt77.com: could not connect to host
+xbjt9.com: could not connect to host
+xbpay88.com: could not connect to host
+xbvip.net: could not connect to host
+xbvip99.com: could not connect to host
+xbyl.xn--fiqs8s: could not connect to host
+xbyl15.com: could not connect to host
+xbyl16.com: could not connect to host
+xbyl17.com: could not connect to host
+xbyl18.com: could not connect to host
+xbyl21.com: could not connect to host
+xbyl23.com: could not connect to host
+xbyl26.com: could not connect to host
+xbyl28.com: could not connect to host
+xbyl39.com: could not connect to host
+xbyl60.com: could not connect to host
+xbyl62.com: could not connect to host
+xbyl63.com: could not connect to host
+xbyl67.com: could not connect to host
+xbyl68.com: could not connect to host
+xbyl69.com: could not connect to host
+xbyl71.com: could not connect to host
+xbyl73.com: could not connect to host
+xbyl78.com: could not connect to host
+xbyl82.com: could not connect to host
+xbyl85.com: could not connect to host
+xbyl86.com: could not connect to host
+xbyl89.com: could not connect to host
+xbyl91.com: could not connect to host
xchangeinfo.com: could not connect to host
xchating.com: could not connect to host
xcler8.com: could not connect to host
@@ -20673,80 +24364,214 @@ 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
-xdawn.cn: could not connect to host
xdd.io: 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
xenesisziarovky.sk: could not connect to host
+xenolith.eu: did not receive HSTS header
xenosphere.tk: could not connect to host
xeonlab.com: could not connect to host
xeonlab.de: could not connect to host
+xerblade.com: did not receive HSTS header
xett.com: did not receive HSTS header
+xf5888.com: could not connect to host
xfive.de: could not connect to host
xg3n1us.de: did not receive HSTS header
-xgusto.com: did not receive HSTS header
+xgusto.com: could not connect to host
xhadius.de: could not connect to host
+xhily.com: could not connect to host
+xhotlips.date: did not receive HSTS header
+xia100.xyz: could not connect to host
+xiang111.com: max-age too low: 0
+xiangfajia.cn: did not receive HSTS header
xiangqiushi.com: could not connect to host
xianguocy.com: could not connect to host
+xianjianruishiyouyiyuan.com: could not connect to host
+xiaobude.cn: did not receive HSTS header
xiaody.me: could not connect to host
xiaofengsky.com: did not receive HSTS header
+xiaohui.love: 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
-xiaoniaoyou.com: could not connect to host
+xiaomi.express: did not receive HSTS header
+xiaoniaoyou.com: did not receive HSTS header
xiaoxiao.im: could not connect to host
xiaxuejin.cn: could not connect to host
xiazhanjian.com: did not receive HSTS header
+xiazhaobing.com: max-age too low: 0
xice.cf: could not connect to host
+xie38.com: could not connect to host
+xie91.com: could not connect to host
+xiecongan.org: could not connect to host
xilegames.com: could not connect to host
-xiliant.com: did not receive HSTS header
+xilkoi.net: did not receive HSTS header
+xilou.org: could not connect to host
ximage.me: could not connect to host
ximens.me: could not connect to host
-xin-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-xin-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-xinbiji.cn: could not connect to host
-xinbo270.com: max-age too low: 2592000
-xinbo676.com: did not receive HSTS header
-xinex.cz: did not receive HSTS header
-xing-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+xin-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+xin-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+xinbiji.cn: did not receive HSTS header
+xinbo010.com: could not connect to host
+xinbo016.com: could not connect to host
+xinbo018.com: could not connect to host
+xinbo019.com: could not connect to host
+xinbo020.com: could not connect to host
+xinbo026.com: could not connect to host
+xinbo028.com: could not connect to host
+xinbo030.com: could not connect to host
+xinbo038.com: could not connect to host
+xinbo050.com: could not connect to host
+xinbo056.com: could not connect to host
+xinbo059.com: could not connect to host
+xinbo060.com: could not connect to host
+xinbo066.com: could not connect to host
+xinbo068.com: could not connect to host
+xinbo069.com: could not connect to host
+xinbo070.com: could not connect to host
+xinbo076.com: could not connect to host
+xinbo078.com: could not connect to host
+xinbo079.com: could not connect to host
+xinbo080.com: could not connect to host
+xinbo086.com: could not connect to host
+xinbo088.com: could not connect to host
+xinbo089.com: could not connect to host
+xinbo090.com: could not connect to host
+xinbo096.com: could not connect to host
+xinbo098.com: could not connect to host
+xinbo099.com: could not connect to host
+xinbo120.com: could not connect to host
+xinbo129.com: could not connect to host
+xinbo130.com: could not connect to host
+xinbo138.com: could not connect to host
+xinbo150.com: could not connect to host
+xinbo156.com: could not connect to host
+xinbo158.com: could not connect to host
+xinbo160.com: could not connect to host
+xinbo170.com: could not connect to host
+xinbo178.com: could not connect to host
+xinbo179.com: could not connect to host
+xinbo180.com: could not connect to host
+xinbo186.com: could not connect to host
+xinbo189.com: could not connect to host
+xinbo190.com: could not connect to host
+xinbo196.com: could not connect to host
+xinbo198.com: could not connect to host
+xinbo200.com: could not connect to host
+xinbo218.com: could not connect to host
+xinbo238.com: could not connect to host
+xinbo256.com: could not connect to host
+xinbo258.com: could not connect to host
+xinbo260.com: could not connect to host
+xinbo266.com: could not connect to host
+xinbo268.com: could not connect to host
+xinbo269.com: could not connect to host
+xinbo270.com: could not connect to host
+xinbo276.com: could not connect to host
+xinbo278.com: could not connect to host
+xinbo279.com: could not connect to host
+xinbo280.com: could not connect to host
+xinbo286.com: could not connect to host
+xinbo290.com: could not connect to host
+xinbo296.com: could not connect to host
+xinbo298.com: could not connect to host
+xinbo299.com: could not connect to host
+xinbo306.com: could not connect to host
+xinbo308.com: could not connect to host
+xinbo316.com: could not connect to host
+xinbo318.com: could not connect to host
+xinbo326.com: could not connect to host
+xinbo338.com: could not connect to host
+xinbo350.com: could not connect to host
+xinbo356.com: could not connect to host
+xinbo359.com: could not connect to host
+xinbo369.com: could not connect to host
+xinbo376.com: could not connect to host
+xinbo378.com: could not connect to host
+xinbo379.com: could not connect to host
+xinbo38.com: could not connect to host
+xinbo380.com: could not connect to host
+xinbo386.com: could not connect to host
+xinbo389.com: could not connect to host
+xinbo390.com: could not connect to host
+xinbo396.com: could not connect to host
+xinbo398.com: could not connect to host
+xinbo399.com: could not connect to host
+xinbo400.com: could not connect to host
+xinbo401.com: could not connect to host
+xinbo406.com: could not connect to host
+xinbo407.com: could not connect to host
+xinbo466.com: could not connect to host
+xinbo468.com: could not connect to host
+xinbo478.com: could not connect to host
+xinbo480.com: could not connect to host
+xinbo496.com: could not connect to host
+xinbo498.com: could not connect to host
+xinbo506.com: could not connect to host
+xinbo508.com: could not connect to host
+xinbo516.com: could not connect to host
+xinbo526.com: could not connect to host
+xinbo528.com: could not connect to host
+xinbo536.com: could not connect to host
+xinbo538.com: could not connect to host
+xinbo556.com: could not connect to host
+xinbo566.com: could not connect to host
+xinbo570.com: could not connect to host
+xinbo576.com: could not connect to host
+xinbo578.com: could not connect to host
+xinbo580.com: could not connect to host
+xinbo586.com: could not connect to host
+xinbo590.com: could not connect to host
+xinbo600.com: could not connect to host
+xinbo608.com: could not connect to host
+xinbo609.com: could not connect to host
+xinbo610.com: could not connect to host
+xinbo676.com: could not connect to host
+xinboyule.com: could not connect to host
+xinex.cz: could not connect to host
+xing-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
xing.ml: could not connect to host
xinghuokeji.xin: could not connect to host
xingiahanvisa.net: did not receive HSTS header
+xinj.com: did not receive HSTS header
xinnixwebshop.be: did not receive HSTS header
xinplay.net: max-age too low: 0
-xinsane.com: could not connect to host
-xiongx.cn: did not receive HSTS header
+xiongx.cn: could not connect to host
xiqi.us: could not connect to host
-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]
+xirion.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
xisa.it: could not connect to host
xivpn.com: could not connect to host
xiwu.li: could not connect to host
-xiyu.it: did not receive HSTS header
-xiyu.moe: did not receive HSTS header
-xj8876.com: max-age too low: 2592000
+xjoi.net: could not connect to host
xjoin.de: did not receive HSTS header
xlaff.com: did not receive HSTS header
xlboo.com: did not receive HSTS header
-xlfblog.com: did not receive HSTS header
+xlfblog.com: could not connect to host
xlinar.com: could not connect to host
xlui.me: did not receive HSTS header
+xmedius.com: did not receive HSTS header
xmerak.com: could not connect to host
-xmine128.tk: could not connect to host
+xmine128.tk: did not receive HSTS header
xmiui.com: could not connect to host
-xmlogin288.com: did not receive HSTS header
+xmlogin288.com: could not connect to host
xmonk.org: did not receive HSTS header
xmr.my: could not connect to host
+xms66.top: could not connect to host
xn-----8kcgbo2bmdgkdacthvjf.xn--p1ai: could not connect to host
+xn----7sbfl2alf8a.xn--p1ai: could not connect to host
xn----7sbmucgqdbgwwc5e9b.xn--p1ai: could not connect to host
+xn----8sbjfacqfqshbh7afyeg.xn--80asehdb: did not receive HSTS header
+xn----zmcaltpp1mdh16i.com: did not receive HSTS header
+xn--24-6kch4bfqee.xn--p1ai: could not connect to host
+xn--24-glcia8dc.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
xn--3lqt7ir4md4tzwa.xn--fiqs8s: did not receive HSTS header
xn--3px.jp: could not connect to host
+xn--4dbfsnr.xn--9dbq2a: could not connect to host
xn--4dbjwf8c.cf: could not connect to host
xn--4dbjwf8c.ga: could not connect to host
xn--4dbjwf8c.gq: could not connect to host
@@ -20754,70 +24579,84 @@ 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--6oqx6c301allufxcm23a7sm.com: could not connect to host
xn--7rvz7ku3ppnr.jp: could not connect to host
xn--7v8h.cf: could not connect to host
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--80adb4aeode.xn--p1ai: could not connect to host
xn--80aocgsfei.xn--p1ai: could not connect to host
xn--88j2fy28hbxmnnf9zlw5buzd.com: did not receive HSTS header
xn--8dry00a7se89ay98epsgxxq.com: could not connect to host
xn--8mr166hf6s.xn--fiqs8s: could not connect to host
+xn--90aroj.xn--p1ai: did not receive HSTS header
xn--98jm6m.jp: could not connect to host
-xn--9pr52k0p5a.com: did not receive HSTS header
-xn--baron-bonzenbru-elb.com: did not receive HSTS header
+xn--9pr52k0p5a.com: could not connect to host
xn--bstlinser-v2a.com: could not connect to host
xn--c5w27q.ml: could not connect to host
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--dej-3oa.lv: could not connect to host
xn--die-zahnrzte-ncb.de: did not receive HSTS header
xn--dk8haaa.ws: could not connect to host
+xn--dmontaa-9za.com: did not receive HSTS header
xn--e--0g4aiy1b8rmfg3o.jp: could not connect to host
xn--e--4h4axau6ld4lna0g.com: could not connect to host
xn--e--ig4a4c3f6bvc5et632i.com: could not connect to host
xn--e--k83a5h244w54gttk.xyz: could not connect to host
+xn--e1aoahhqgn.xn--p1ai: could not connect to host
+xn--ecki0cd0bu9a4nsjb.com: could not connect to host
xn--eckle6c0exa0b0modc7054g7h8ajw6f.com: did not receive HSTS header
xn--ehq13kgw4e.ml: could not connect to host
xn--ekr87w7se89ay98ezcs.biz: did not receive HSTS header
+xn--elsignificadodesoar-c4b.com: could not connect to host
+xn--fiestadefindeao-crb.com: did not receive HSTS header
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--int-ru8ea.xn--6qq986b3xl: could not connect to host
xn--internetlnen-1cb.com: could not connect to host
+xn--jbs-tna.de: could not connect to host
xn--jp-6l5cs1yf3ivjsglphyv.net: could not connect to host
xn--jywq5uqwqxhd2onsij.jp: did not receive HSTS header
xn--keditr-0xa.biz: could not connect to host
+xn--krpto-lva.de: could not connect to host
xn--l8j9d2b.jp: could not connect to host
+xn--l8jydta9i239uzq6aqz9a.com: did not receive HSTS header
xn--lgb3a8bcpn.cf: could not connect to host
xn--lgb3a8bcpn.ga: could not connect to host
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--ls8hi7a.tk: could not connect to host
+xn--lsupp-mra.net: did not receive HSTS header
xn--maraa-rta.org: could not connect to host
xn--mensenges-o1a8c.gq: could not connect to host
+xn--mensengesss-t8a.gq: could not connect to host
xn--mhsv04avtt1xi.com: could not connect to host
xn--milchaufschumer-test-lzb.de: could not connect to host
+xn--mllers-wxa.info: could not connect to host
xn--n8jubz39q0g0afpa985c.com: could not connect to host
xn--neb-tma3u8u.xyz: could not connect to host
xn--nf1a578axkh.xn--fiqs8s: did not receive HSTS header
xn--o77hka.ga: could not connect to host
-xn--oiqt18e8e2a.eu.org: could not connect to host
xn--p8jskj.jp: could not connect to host
-xn--pck4e3a2ex597b4ml.xyz: did not receive HSTS header
+xn--pck4e3a2ex597b4ml.xyz: could not connect to host
xn--pckqk6xk43lunk.net: could not connect to host
+xn--q9ji3c6d.xn--q9jyb4c: did not receive HSTS header
xn--qckqc0nxbyc4cdb4527err7c.biz: did not receive HSTS header
+xn--qckss0j.tk: could not connect to host
xn--qckyd1cu698a35zarib.xyz: could not connect to host
xn--qfun83b.ga: could not connect to host
xn--r77hya.ga: could not connect to host
xn--rt-cja.eu: could not connect to host
+xn--rtter-kva.eu: could not connect to host
xn--sdkwa9azd389v01ya.com: could not connect to host
-xn--seelenwchter-mcb.eu: did not receive HSTS header
+xn--seelenwchter-mcb.eu: could not connect to host
xn--srenpind-54a.dk: could not connect to host
xn--t8j2a3042d.xyz: could not connect to host
xn--t8j4aa4nyhxa7duezbl49aqg5546e264d.net: did not receive HSTS header
@@ -20825,15 +24664,16 @@ xn--tda.ml: could not connect to host
xn--thorme-6uaf.ca: could not connect to host
xn--trdler-xxa.xyz: could not connect to host
xn--u9jy16ncfao19mo8i.nagoya: could not connect to host
-xn--uist1idrju3i.jp: did not receive HSTS header
-xn--uort9oqoaj00bv04d.biz: did not receive HSTS header
-xn--uorz58b8p0bpwa.biz: did not receive HSTS header
+xn--uist1idrju3i.jp: could not connect to host
+xn--uort9oqoaj00bv04d.biz: could not connect to host
+xn--uorz58b8p0bpwa.biz: could not connect to host
xn--vck8crc010pu14e.biz: could not connect to host
xn--vck8crc655y34ioha.net: could not connect to host
xn--vck8crcu789ajtaj92eura.xyz: could not connect to host
xn--w22a.jp: could not connect to host
xn--werner-schffer-fib.de: could not connect to host
xn--wmq.jp: did not receive HSTS header
+xn--woistdermlleimer-rzb.de: could not connect to host
xn--xdtx3pfzbiw3ar8e7yedqrhui.com: could not connect to host
xn--xz1a.jp: could not connect to host
xn--y8j2eb5631a4qf5n0h.com: could not connect to host
@@ -20848,37 +24688,36 @@ xn--zr9h.ga: could not connect to host
xn--zr9h.ml: could not connect to host
xn--zr9h.tk: could not connect to host
xng.io: did not receive HSTS header
-xnode.org: could not connect to host
xobox.me: could not connect to host
xoda.pw: could not connect to host
-xoffy.com: did not receive HSTS header
+xoffy.com: could not connect to host
xom.party: could not connect to host
-xombra.com: could not connect to host
+xombra.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
xoonth.net: did not receive HSTS header
xor-a.net: could not connect to host
xotika.tv: could not connect to host
-xpbytes.com: did not receive HSTS header
xpenology-fr.net: could not connect to host
xperiacodes.com: could not connect to host
xpi.fr: could not connect to host
+xpiuat.global: did not receive HSTS header
xpj.bet: did not receive HSTS header
xpj.sx: could not connect to host
xpjcunkuan.com: could not connect to host
-xplore-dna.net: could not connect to host
+xplore-dna.net: did not receive HSTS header
xposedornot.com: did not receive HSTS header
-xpressprint.com.br: max-age too low: 90
-xps2pdf.co.uk: did not receive HSTS header
-xps2pdf.info: did not receive HSTS header
-xpwn.cz: did not receive HSTS header
+xpressable.com: could not connect to host
+xps2pdf.co.uk: could not connect to host
+xps2pdf.info: could not connect to host
xq55.com: did not receive HSTS header
xqin.net: could not connect to host
+xrbox.me: 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
xsstime.nl: could not connect to host
xsyds.cn: did not receive HSTS header
-xt.om: did not receive HSTS header
+xt.om: could not connect to host
xtenz.xyz: could not connect to host
xtom.email: could not connect to host
xtom.io: could not connect to host
@@ -20887,28 +24726,33 @@ 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
+xtremeperformance.co.in: did not receive HSTS header
xtrim.ru: did not receive HSTS header
xtzone.be: could not connect to host
-xuan-li88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-xuan-li88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-xuanmeishe.top: did not receive HSTS header
+xuan-li88.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+xuan-li88.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+xuanmeishe.top: could not connect to host
+xuehao.net.cn: could not connect to host
xuexb.com: did not receive HSTS header
-xujan.com: could not connect to host
xuntaosms.com: could not connect to host
xupeng.me: did not receive HSTS header
-xvii.pl: could not connect to host
+xx6957.com: could not connect to host
xxbase.com: could not connect to host
xxx3dbdsm.com: could not connect to host
-xxxladyboysporn.com: could not connect to host
-xxxred.net: could not connect to host
xy1919.com: could not connect to host
+xy6161.com: could not connect to host
+xy6262.com: could not connect to host
+xy6363.com: could not connect to host
+xy6957.com: could not connect to host
xy7171.com: could not connect to host
+xy7272.com: could not connect to host
+xy7373.com: could not connect to host
xynex.us: could not connect to host
-xyngular-health.com: did not receive HSTS header
+xyngular-health.com: could not connect to host
xynta.ch: could not connect to host
xyyp.mn: could not connect to host
-xzoneadventure.com: did not receive HSTS header
-xzy.one: did not receive HSTS header
+xza.fr: did not receive HSTS header
+xzoneadventure.com: could not connect to host
y-o-w.com: did not receive HSTS header
y-s.pw: could not connect to host
y3451.com: could not connect to host
@@ -20916,30 +24760,39 @@ 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
+yado-furu.com: did not receive HSTS header
yafull.com: could not connect to host
-yagi2.com: did not receive HSTS header
+yagi2.com: could not connect to host
+yagihiro.tech: could not connect to host
yahoo.ax: could not connect to host
+yalecleaners.com: could not connect to host
yalla.jp: did not receive HSTS header
+yamaken.jp: could not connect to host
yamamo10.com: could not connect to host
yameveo.com: did not receive HSTS header
-yannikhenke.de: could not connect to host
+yan.lt: could not connect to host
+yangjingwen.com: could not connect to host
+yangmaodang.org: did not receive HSTS header
+yangmi.blog: could not connect to host
+yangshangzhen.com: did not receive HSTS header
yannis.codes: did not receive HSTS header
+yanqiyu.info: could not connect to host
yanwh.xyz: did not receive HSTS header
-yao-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-yao-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-yaoidreams.com: could not connect to host
-yaporn.tv: could not connect to host
+yao-in.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+yao-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+yaoidreams.com: did not receive HSTS header
+yaporn.tv: did not receive HSTS header
yarchives.jp: could not connect to host
yard-fu.com: could not connect to host
yardbird.us: could not connect to host
-yarnhookup.com: did not receive HSTS header
+yarnhookup.com: could not connect to host
yarogneva.ru: could not connect to host
yasinaydin.net: did not receive HSTS header
yasutomonodokoiko.com: did not receive HSTS header
+yateshomesales.com: did not receive HSTS header
yaucy.win: could not connect to host
yawen.tw: did not receive HSTS header
yawnbox.com: did not receive HSTS header
-yaxim.org: could not connect to host
yayart.club: could not connect to host
yayoba.com: did not receive HSTS header
yazaral.com: did not receive HSTS header
@@ -20947,42 +24800,50 @@ ybscareers.co.uk: did not receive HSTS header
ybt520.com: could not connect to host
ycaaz.com: did not receive HSTS header
ycc.wtf: could not connect to host
+ychong.com: did not receive HSTS header
ycm2.wtf: could not connect to host
yd.io: could not connect to host
ydy.jp: could not connect to host
yello.website: could not connect to host
+yellotalk.co: did not receive HSTS header
yellowcar.website: could not connect to host
+yellowfish.top: could not connect to host
yellowfly.co.uk: did not receive HSTS header
+yellowpages.ee: did not receive HSTS header
yemalu.com: could not connect to host
yemekbaz.az: could not connect to host
+yenibilgi.net: did not receive HSTS header
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
yenniferallulli.moda: could not connect to host
yenniferallulli.nl: could not connect to host
+yenpape.com: could not connect to host
yepbitcoin.com: could not connect to host
yesdevnull.net: did not receive HSTS header
yesfone.com.br: could not connect to host
yeshu.org: could not connect to host
-yestees.com: did not receive HSTS header
+yeswecan.co.bw: could not connect to host
yetcore.io: could not connect to host
yetishirt.com: could not connect to host
+yex.nz: could not connect to host
yffengshi.ml: could not connect to host
-ygcdyf.com: did not receive HSTS header
+ygcdyf.com: could not connect to host
yggdar.ga: could not connect to host
+ygreneworks.com: did not receive HSTS header
yh35.net: could not connect to host
-yh56787.com: could not connect to host
yh64678.com: could not connect to host
yh66656.com: could not connect to host
yh66689.com: could not connect to host
-yh811.com: could not connect to host
yh88890.com: could not connect to host
+yhong.me: could not connect to host
yhori.xyz: could not connect to host
yhwj.top: could not connect to host
yibaoweilong.top: could not connect to host
yibin0831.com: could not connect to host
yicknam.my: could not connect to host
+yiffed.me: did not receive HSTS header
yiffy.tips: did not receive HSTS header
yiffy.zone: did not receive HSTS header
yikzu.cn: could not connect to host
@@ -20990,45 +24851,51 @@ 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
+yinga.ga: could not connect to host
yingsuo.ltd: could not connect to host
-yingyj.com: did not receive HSTS header
yinhe12.net: did not receive HSTS header
yipingguo.com: could not connect to host
yippie.nl: did not receive HSTS header
+yisin.net: did not receive HSTS header
yizhu.com: could not connect to host
-yjsoft.me: could not connect to host
yjsw.sh.cn: could not connect to host
-ylilauta.org: could not connect to host
ylk.io: could not connect to host
ylwz.cc: did not receive HSTS header
+ym3311.com: could not connect to host
+ym3322.com: could not connect to host
+ym6699.com: could not connect to host
ymblaw.com: did not receive HSTS header
+ymvip8.com: could not connect to host
ynnovasport.be: 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
ynxfh.cn: did not receive HSTS header
yob.vn: could not connect to host
+yobai28.com: did not receive HSTS header
yobst.tk: could not connect to host
yocchan1513.net: did not receive HSTS header
-yoga-prive.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+yoga-sky.de: did not receive HSTS header
yoga.is-an-engineer.com: could not connect to host
yogabhawnamission.com: could not connect to host
+yogamayanine.com: did not receive HSTS header
yogatrainingrishikesh.com: could not connect to host
yogoeasy.com: did not receive HSTS header
-yohanesmario.com: did not receive HSTS header
+yoibyoin.info: did not receive HSTS header
+yoimise.net: did not receive HSTS header
yoiyado.info: did not receive HSTS header
-yokeepo.com: could not connect to host
+yokeepo.com: did not receive HSTS header
yolo-csgo.com: could not connect to host
-yolocelebs.com: could not connect to host
+yolocelebs.com: did not receive HSTS header
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
+yooguo123.com: did not receive HSTS header
yopers.com: did not receive HSTS header
+yoplate.com: did not receive HSTS header
yorkshireterrier.com.br: could not connect to host
yoru.me: could not connect to host
-yosemo.de: did not receive HSTS header
yosheenetwork.fr: could not connect to host
yotilab.com: could not connect to host
yotilabs.com: could not connect to host
@@ -21039,48 +24906,54 @@ youdowell.com: did not receive HSTS header
youfencun.com: did not receive HSTS header
youftp.tk: could not connect to host
yougot.pw: could not connect to host
-youhs.top: did not receive HSTS header
+youhacked.me: could not connect to host
youjizz.bz: could not connect to host
youlend.com: did not receive HSTS header
youlog.net: did not receive HSTS header
+youlovehers.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
+youon.tokyo: could not connect to host
your-idc.tk: could not connect to host
+your-out.com: could not connect to host
yourbapp.ch: could not connect to host
+yourbittorrent.com: did not receive HSTS header
+yourcomputer.expert: did not receive HSTS header
yourfriendlytech.com: could not connect to host
yourgadget.ro: could not connect to host
yourgame.co.il: did not receive HSTS header
yourhair.net: max-age too low: 0
-youri.me: could not connect to host
yourlovesong.com.mx: could not connect to host
yourname.xyz: could not connect to host
-yoursbookstore.jp: max-age too low: 0
yoursecondphone.co: could not connect to host
yourself.today: could not connect to host
yourstrongbox.com: could not connect to host
+yourtrainer.com: did not receive HSTS header
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]
+youruseragent.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
yourznc.com: could not connect to host
yousite.by: could not connect to host
youth2009.org: max-age too low: 2592000
+youthovation.org: did not receive HSTS header
+youtsuu-raku.com: could not connect to host
youtube: could not connect to host
youtubeviews.ml: could not connect to host
-youwatchporn.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]
+yryz.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+ys-shop.biz: did not receive HSTS header
yspeo.biz: did not receive HSTS header
-yspeo.com: max-age too low: 2592000
ysun.xyz: could not connect to host
ysx.me.uk: did not receive HSTS header
+yt668899.com: 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
+ytpak.pk: 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
@@ -21089,18 +24962,13 @@ yudan.com.br: could not connect to host
yude.ml: could not connect to host
yuema.net.cn: could not connect to host
yufan.me: did not receive HSTS header
-yugasun.com: could not connect to host
yugege.cf: could not connect to host
yuhen.ru: did not receive HSTS header
yui.cat: did not receive HSTS header
-yuisyo.ml: 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
+yukijinji.moe: could not connect to host
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
@@ -21112,69 +24980,77 @@ yuna.love: could not connect to host
yuna.tg: could not connect to host
yunpan.blue: could not connect to host
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
+yuriykuzmin.com: could not connect to host
yutabon.com: could not connect to host
yutang.vn: did not receive HSTS header
-yutaron.tokyo: did not receive HSTS header
+yutaron.tokyo: could not connect to host
yutuo.net: did not receive HSTS header
yuushou.com: could not connect to host
-yuuta.moe: did not receive HSTS header
yux.fr: could not connect to host
yux.io: did not receive HSTS header
yuxingxin.com: did not receive HSTS header
-yuzu.tk: did not receive HSTS header
-yvetteerasmus.com: max-age too low: 0
+yuzu.tk: could not connect to host
+yveshield.com: could not connect to host
+yvesx.com: could not connect to host
ywei.org: could not connect to host
-ywyz.tech: could not connect to host
+yxs.me: did not receive HSTS header
yya.bid: did not receive HSTS header
yya.men: could not connect to host
yyrss.com: could not connect to host
yyy116.com: could not connect to host
yyy608.com: could not connect to host
+yzer.club: could not connect to host
z-coder.com: could not connect to host
z-konzept-nutrition.ru: could not connect to host
z-to-a.com: did not receive HSTS header
z0rro.net: could not connect to host
z33.ch: did not receive HSTS header
-z33.co: could not connect to host
+z33.co: did not receive HSTS header
z3liff.com: could not connect to host
z3liff.net: could not connect to host
+z4k.de: did not receive HSTS header
+z6957.com: could not connect to host
+z8022.com: did not receive HSTS header
zaalleatherwear.nl: did not receive HSTS header
zabavno.mk: did not receive HSTS header
+zacco.com: did not receive HSTS header
zacco.site: 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
+zadania.wiki: could not connect to host
zadieheimlich.com: did not receive HSTS header
-zadroweb.com: did not receive HSTS header
zaem.tv: could not connect to host
zaffit.com: could not connect to host
+zafirus.name: did not receive HSTS header
+zahnarzt-muenich.de: did not receive HSTS header
zahnrechner-staging.azurewebsites.net: could not connect to host
zahyantechnologies.com: did not receive HSTS header
zalan.do: could not connect to host
-zalohovaniburian.cz: could not connect to host
+zalzalac.com: did not receive HSTS header
zamis.net: could not connect to host
+zamocosmeticos.com.br: could not connect to host
zamorano.edu: could not connect to host
zamos.ru: max-age too low: 0
zaneweb.org: could not connect to host
zanzabar.it: could not connect to host
+zanzariere.roma.it: 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: could not connect to host
zapatoshechoamano.pe: could not connect to host
zappos.com: did not receive HSTS header
-zaptan.net: could not connect to host
-zaptan.org: could not connect to host
-zaptan.us: could not connect to host
-zaratan.fr: did not receive HSTS header
+zaptan.net: did not receive HSTS header
+zaptan.org: did not receive HSTS header
+zaptan.us: did not receive HSTS header
zargaripour.com: did not receive HSTS header
+zarmarket.org: did not receive HSTS header
zarooba.com: could not connect to host
+zarpo.com.br: did not receive HSTS header
zavca.com: did not receive HSTS header
zbasenem.pl: did not receive HSTS header
zbchen.com: could not connect to host
@@ -21182,8 +25058,12 @@ zberger.com: could not connect to host
zbetcheck.in: could not connect to host
zbigniewgalucki.eu: did not receive HSTS header
zbp.at: did not receive HSTS header
+zby.io: could not connect to host
+zcgram.com: could not connect to host
+zcryp.to: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
zdravesteny.cz: could not connect to host
zdravotnickasluzba.eu: could not connect to host
+zdravystul.cz: did not receive HSTS header
zdrowiepaleo.pl: did not receive HSTS header
zdx.ch: max-age too low: 0
zeb.fun: could not connect to host
@@ -21191,59 +25071,62 @@ zebedeescastles.co.uk: 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
+zebulon.fr: did not receive HSTS header
zecrypto.com: could not connect to host
-zeedroom.be: did not receive HSTS header
zeelynk.com: could not connect to host
zeeuw.nl: did not receive HSTS header
zefiris.org: did not receive HSTS header
zefu.ca: could not connect to host
zehdenick-bleibt-bunt.de: could not connect to host
-zehntner.ch: max-age too low: 3600
zeitoununiversity.org: could not connect to host
zeitzer-turngala.de: could not connect to host
+zeiw.me: could not connect to host
zelfmoord.ga: could not connect to host
zelfoverstappen.nl: did not receive HSTS header
+zelfrijdendeautos.com: did not receive HSTS header
zelfstandigemakelaars.net: could not connect to host
zellari.ru: did not receive HSTS header
zeloz.xyz: could not connect to host
+zemlova.cz: could not connect to host
+zen-ume.com: could not connect to host
zenfusion.fr: could not connect to host
-zenhaiku.com: could not connect to host
+zenghx.tk: max-age too low: 0
+zenhaiku.com: did not receive HSTS header
zenics.co.uk: did not receive HSTS header
-zenithmedia.ca: could not connect to host
zenmate.com.tr: could not connect to host
zeno-system.com: did not receive HSTS header
zenpayroll.com: did not receive HSTS header
-zenram.com: did not receive HSTS header
-zentience.dk: did not receive HSTS header
-zentience.net: did not receive HSTS header
-zentience.org: did not receive HSTS header
+zenram.com: could not connect to host
+zentience.dk: could not connect to host
+zentience.net: could not connect to host
+zentience.org: could not connect to host
zentiweb.nl: did not receive HSTS header
-zentraler-kreditausschuss.de: did not receive HSTS header
zentralwolke.de: did not receive HSTS header
+zenus-biometrics.com: did not receive HSTS header
zenwears.com: could not connect to host
+zenycosta.com: could not connect to host
zeparadox.com: did not receive HSTS header
zepect.com: did not receive HSTS header
-zera.com.au: could not connect to host
-zerekin.net: max-age too low: 86400
+zera.com.au: did not receive HSTS header
zero-sum.xyz: could not connect to host
zero-x-baadf00d.com: did not receive HSTS header
zerocool.io: could not connect to host
zeroday.sk: did not receive HSTS header
zerofox.gq: could not connect to host
-zerolab.org: could not connect to host
-zeroling.com: could not connect to host
zeroml.ml: could not connect to host
zerosource.net: could not connect to host
+zerosync.com: could not connect to host
+zerowastesavvy.com: could not connect to host
zerowastesonoma.gov: did not receive HSTS header
zertif.info: could not connect to host
zerudi.com: did not receive HSTS header
zetadisseny.es: did not receive HSTS header
zeto365.pl: did not receive HSTS header
zetrov.pl: did not receive HSTS header
-zett4.me: max-age too low: 172800
zeug.co: could not connect to host
zewtie.com: could not connect to host
zeytin.pro: could not connect to host
+zfly.me: could not connect to host
zfo.gg: could not connect to host
zgan.ga: could not connect to host
zh-yds.com: could not connect to host
@@ -21251,18 +25134,25 @@ zh1.li: could not connect to host
zhang.wtf: could not connect to host
zhangcheng.org: did not receive HSTS header
zhangge.net: did not receive HSTS header
+zhanglizhi.ml: could not connect to host
+zhanglu.xyz: did not receive HSTS header
zhangruilin.com: did not receive HSTS header
zhangsir.net: could not connect to host
zhaochen.xyz: could not connect to host
+zhaoeq.com: could not connect to host
zhaojin97.cn: could not connect to host
+zhattyt.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
zhendingresources.com: did not receive HSTS header
-zhenmeish.com: did not receive HSTS header
+zhengouwu.com: could not connect to host
+zhenmeish.com: could not connect to host
zhenyan.org: could not connect to host
zhh.in: could not connect to host
zhihua-lai.com: did not receive HSTS header
zhikin.com: could not connect to host
zhimajk.com: could not connect to host
+zhome.info: could not connect to host
zhoujiashu.com: could not connect to host
+zhthings.com: could not connect to host
zhuji.com.cn: could not connect to host
zhuji5.com: could not connect to host
zhujicaihong.com: could not connect to host
@@ -21270,49 +25160,56 @@ zhuweiyou.com: did not receive HSTS header
zi0r.com: did not receive HSTS header
zian.online: could not connect to host
zicklam.com: could not connect to host
-ziegler-family.com: could not connect to host
+ziegler-family.com: did not receive HSTS header
zigcore.com.br: could not connect to host
zikirakhirzaman.com: could not connect to host
-zinc-x.com: did not receive HSTS header
+zilon.com.co: could not connect to host
zinenapse.info: could not connect to host
+zings.eu: could not connect to host
zippy-download.com: could not connect to host
zippy-download.de: could not connect to host
zirka24.net: could not connect to host
+zirrka.de: could not connect to host
zirtue.io: could not connect to host
-zitrone44.de: did not receive HSTS header
+zitrone44.de: could not connect to host
zivagold.com: did not receive HSTS header
zivy-ruzenec.cz: could not connect to host
zixo.sk: could not connect to host
ziyuanabc.xyz: could not connect to host
ziz.exchange: could not connect to host
+zizcollections.com: could not connect to host
zizoo.com: did not receive HSTS header
+zjc3.com: could not connect to host
+zjh6888.com: max-age too low: 0
zju.tv: could not connect to host
zjubtv.com: could not connect to host
zjuqsc.com: could not connect to host
zjutv.com: could not connect to host
zjyifa.cn: could not connect to host
+zk.com.co: did not receive HSTS header
zkillboard.com: did not receive HSTS header
zking.ga: could not connect to host
zlc1994.com: did not receive HSTS header
zlcp.com: could not connect to host
+zlotonews.com: did not receive HSTS header
+zlypi.com: could not connect to host
zmala.com: could not connect to host
zmsastro.co.za: could not connect to host
zmscable.com: did not receive HSTS header
zmy.im: could not connect to host
znacite.com: did not receive HSTS header
znd.jp: could not connect to host
+znhglobalresources.com: could not connect to host
zning.net.cn: could not connect to host
zny.pw: could not connect to host
zocken.com: did not receive HSTS header
zoe.vc: could not connect to host
+zohair.xyz: did not receive HSTS header
zohar.link: could not connect to host
zohar.shop: could not connect to host
zoi.jp: could not connect to host
-zojadravai.com: could not connect to host
-zokster.net: could not connect to host
+zokster.net: did not receive HSTS header
zolokar.xyz: could not connect to host
-zolotoy-standart.com.ua: did not receive HSTS header
-zombiesecured.com: could not connect to host
zonadebolsa.es: did not receive HSTS header
zone403.net: could not connect to host
zoneminder.com: did not receive HSTS header
@@ -21321,55 +25218,65 @@ 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
+zoofit.com.au: could not connect to host
+zookids.uy: did not receive HSTS header
zoological-gardens.eu: could not connect to host
+zoomcar.pro: did not receive HSTS header
zoomingin.net: max-age too low: 5184000
zoommailing.com: did not receive HSTS header
-zoomseoservices.com: max-age too low: 2592000
+zooom2.azurewebsites.net: could not connect to host
zoorigin.com: did not receive HSTS header
zooxdata.com: could not connect to host
zopy.com.br: could not connect to host
zorki.nl: did not receive HSTS header
zortium.report: could not connect to host
-zorz.info: could not connect to host
zoznamrealit.sk: did not receive HSTS header
zpy.fun: could not connect to host
zq789.com: could not connect to host
zqhong.com: could not connect to host
zqjs.tk: could not connect to host
zqstudio.top: could not connect to host
-zrkr.de: could not connect to host
+zqwqz.com: did not receive HSTS header
+zrhdwz.cn: could not connect to host
zrn.in: did not receive HSTS header
zrt.io: did not receive HSTS header
+zstu.eu: did not receive HSTS header
ztan.tk: could not connect to host
-ztcaoll222.cn: could not connect to host
+ztcaoll222.cn: did not receive HSTS header
+ztjuh.tk: max-age too low: 0
ztytian.com: could not connect to host
zuan-in.com: could not connect to host
-zuan-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+zuan-in.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: .\getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
zubora.co: could not connect to host
zuckerfloh.de: did not receive HSTS header
zudomc.me: could not connect to host
+zuefle.net: did not receive HSTS header
zuehlcke.de: could not connect to host
+zug.fr: did not receive HSTS header
+zug.io: did not receive HSTS header
zukix.com: could not connect to host
zulu7.com: did not receive HSTS header
zunda.cafe: could not connect to host
zunftmarke.de: did not receive HSTS header
zurickrelogios.com.br: did not receive HSTS header
zurret.de: did not receive HSTS header
+zusjesvandenbos.nl: 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
zwalcz-cellulit.com: did not receive HSTS header
-zwembadheeten.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+zwb3.de: did not receive HSTS header
+zwembadheeten.nl: did not receive HSTS header
zx1168.com: could not connect to host
zx2268.com: could not connect to host
-zxavier.com: could not connect to host
+zxc.science: did not receive HSTS header
+zxe.com.br: could not connect to host
zxity.co.uk: could not connect to host
zxity.ltd: could not connect to host
zxity.uk: could not connect to host
zxtcode.com: could not connect to host
+zxxcq.com: could not connect to host
zyf.pw: could not connect to host
zyger.co.za: did not receive HSTS header
zymbit.com: did not receive HSTS header
@@ -21378,8 +25285,11 @@ zypgr.com: could not connect to host
zypr.pw: could not connect to host
zyrillezuno.com: could not connect to host
zyso.org: could not connect to host
-zz295.com: did not receive HSTS header
+zz0036.com: max-age too low: 0
+zz295.com: could not connect to host
+zz6957.com: 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
+zzbnet.cn: could not connect to host
zzw.ca: could not connect to host
diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc
index b81766c3f..f6ed64b3e 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(1559822263960000);
+const PRTime gPreloadListExpirationTime = INT64_C(1569913558186000);
class nsSTSPreload
{
@@ -18,13 +18,14 @@ class nsSTSPreload
};
static const nsSTSPreload kSTSPreloadList[] = {
- { "000books.net", true },
+ { "000321365.com", true },
+ { "00321365.com", true },
{ "003971.com", true },
+ { "005555.xyz", true },
{ "008207.com", true },
{ "008251.com", true },
{ "008253.com", true },
{ "008271.com", true },
- { "0086286.com", true },
{ "009p.com", true },
{ "00dani.me", true },
{ "00f.net", true },
@@ -32,8 +33,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "0100dev.nl", false },
{ "01011970.xyz", true },
{ "01110000011100110111001001100111.com", true },
- { "01electronica.com.ar", true },
- { "01seguridad.com.ar", true },
+ { "01918.net", true },
{ "021002.com", true },
{ "022367.com", true },
{ "022379.com", true },
@@ -48,11 +48,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "022610.com", true },
{ "02327.net", true },
{ "02375.net", true },
+ { "025ks.com", true },
{ "026122.com", true },
{ "02638.net", true },
+ { "02am8.com", true },
+ { "03012.net", true },
+ { "03018.net", true },
{ "03170317.com", true },
{ "0391315.com", true },
{ "046569.com", true },
+ { "04911701.cn", true },
+ { "04dco.tk", true },
{ "050.ca", true },
{ "050869.com", true },
{ "050media.nl", true },
@@ -78,6 +84,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "058596.com", true },
{ "058679.com", true },
{ "059957.com", true },
+ { "05am8.com", true },
+ { "060258.com", true },
+ { "060579.com", true },
{ "060757.com", true },
{ "060795.com", true },
{ "060796.com", true },
@@ -97,22 +106,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "066705.com", true },
{ "066709.com", true },
{ "066790.com", true },
+ { "066816.com", true },
+ { "06804.com", true },
{ "068697.com", true },
{ "068756.com", true },
{ "068957.com", true },
+ { "06918.net", true },
{ "069657.com", true },
{ "069676.com", true },
+ { "06se.com", true },
{ "0708p.com", true },
{ "070968.com", true },
{ "070986.com", true },
{ "0720p.com", true },
+ { "0736ks.com", true },
{ "077768.net", true },
- { "0788yh.com", true },
{ "0792112.com", true },
{ "079606.com", true },
{ "079607.com", true },
{ "0798rcw.com", true },
- { "0809yh.com", true },
+ { "07stars.com", true },
{ "081115.com", true },
{ "081752.com", true },
{ "081763.com", true },
@@ -147,30 +160,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "085950.com", true },
{ "086807.com", true },
{ "086907.com", true },
+ { "087010.com", true },
{ "087059.com", true },
{ "087065.com", true },
{ "087540.com", true },
{ "087569.com", true },
{ "087580.com", true },
+ { "08845.cc", true },
+ { "08918.net", true },
+ { "089818.com", true },
+ { "08am8.com", true },
+ { "08detaxe.fr", true },
{ "0916app.com", true },
+ { "095598.cc", true },
{ "09892.net", true },
+ { "098955.com", true },
+ { "09btt.com", true },
+ { "09elektrik.com", true },
{ "0au.de", true },
{ "0c3.de", true },
+ { "0chan.pl", true },
{ "0day.agency", true },
{ "0des.com", true },
{ "0ii0.cf", true },
{ "0ik.de", true },
- { "0iz.net", true },
{ "0knowledge.de", false },
{ "0paste.com", true },
- { "0vo.moe", true },
{ "0wx.cat", true },
{ "0wx.es", true },
{ "0wx.eu", true },
{ "0wx.org", true },
{ "0x.cx", true },
{ "0x.sk", true },
+ { "0x0.cloud", true },
{ "0x0.li", true },
+ { "0x0000.ml", true },
+ { "0x00c.de", true },
{ "0x00ff00ff.com", true },
{ "0x17.de", true },
{ "0x378.net", true },
@@ -179,6 +204,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "0x52.net", true },
{ "0x7d.com", true },
{ "0x7fffffff.net", true },
+ { "0x80.org", true },
{ "0x90.io", true },
{ "0xabe.io", true },
{ "0xacab.org", true },
@@ -186,27 +212,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "0xda.de", true },
{ "0xdc.io", false },
{ "0xdefaced.de", true },
- { "0xee.eu", true },
{ "0xf00.ch", true },
{ "0xfc.de", true },
+ { "0xff.se", true },
{ "0xn.de", true },
- { "0yen.org", true },
{ "1-2-3bounce.co.uk", true },
{ "100-downloads.com", true },
{ "10000v.ru", true },
{ "1000minds.com", true },
- { "1001firms.com", true },
{ "1001kartini.com", true },
{ "1001kerstpakketten.com", false },
- { "1001mv.com", true },
- { "10086.nl", true },
{ "10086.ru", true },
- { "100and1.jp", true },
+ { "100k.eu", true },
{ "100kredite.de", true },
{ "100lat.pl", true },
{ "100mani.it", true },
{ "100pounds.co.uk", true },
{ "101.qa", true },
+ { "101010.pl", true },
{ "1011100.com", true },
{ "101sauna.kz", true },
{ "101sauna.ru", true },
@@ -218,23 +241,26 @@ 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 },
{ "110320.com", true },
{ "110692.com", true },
+ { "111.one", true },
+ { "1111k8.com", true },
+ { "111321365.com", true },
+ { "111zlong.com", true },
{ "1126p.com", true },
{ "112app.nl", true },
{ "112hz.com", true },
{ "112it.ro", true },
{ "1130p.com", true },
+ { "11321365.com", true },
{ "114514ss.com", true },
{ "1177107.com", true },
- { "11dzon.com", true },
+ { "118btt.com", true },
{ "11loc.de", true },
{ "11thstreetcoffee.com", true },
{ "11urss.com", true },
@@ -242,16 +268,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1212873467.rsc.cdn77.org", true },
{ "1218641649.rsc.cdn77.org", true },
{ "123123qq.com", true },
+ { "1236.be", true },
{ "123apps.net", true },
{ "123bearing.co.uk", true },
{ "123bearing.com", true },
{ "123bearing.eu", true },
+ { "123birthdaygreetings.com", true },
{ "123comparer.fr", true },
+ { "123derivatives.com", true },
{ "123djdrop.com", true },
{ "123midterm.com", true },
+ { "123nutricion.es", true },
{ "123opstalverzekeringen.nl", true },
{ "123roulement.be", true },
{ "123roulement.com", true },
+ { "123termpapers.com", true },
{ "123writings.com", true },
{ "124133.com", true },
{ "124633.com", true },
@@ -262,6 +293,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "127663.com", true },
{ "127665.com", true },
{ "12autoankauf-berlin.de", true },
+ { "12gotovo.com", true },
{ "12thmanrising.com", true },
{ "12train.com", true },
{ "12vpn.net", true },
@@ -269,18 +301,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "130032.com", true },
{ "130212.com", true },
{ "130232.com", true },
+ { "130497.xyz", true },
{ "131934.com", true },
{ "131954.com", true },
+ { "13214.cc", true },
+ { "132301.com", true },
{ "132302.com", true },
{ "132kv.ch", true },
{ "133294.com", true },
{ "133492.com", true },
- { "1359826938.rsc.cdn77.org", true },
+ { "133846.xyz", true },
{ "136774.com", true },
{ "136814.com", true },
+ { "136824.com", true },
{ "136924.com", true },
{ "137724.com", true },
- { "138000.xyz", true },
+ { "1391kj.com", true },
+ { "1395kj.com", true },
+ { "1406304513.com", true },
{ "141145.com", true },
{ "143533.com", true },
{ "143633.com", true },
@@ -289,6 +327,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1453914078.rsc.cdn77.org", true },
{ "145433.com", true },
{ "145733.com", true },
+ { "145ks.net", true },
{ "146233.com", true },
{ "146433.com", true },
{ "1464424382.rsc.cdn77.org", true },
@@ -305,57 +344,80 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "154233.com", true },
{ "154633.com", true },
{ "154933.com", true },
+ { "155175.com", true },
{ "156433.com", true },
+ { "158306.com", true },
{ "1590284872.rsc.cdn77.org", true },
+ { "15918.net", true },
+ { "159cp.com", true },
{ "1600esplanade.com", true },
{ "160887.com", true },
+ { "161233.com", true },
{ "161263.com", true },
+ { "162223.com", true },
+ { "162231.com", true },
+ { "162263.com", true },
{ "162361.com", true },
+ { "162632.com", true },
{ "162jonesrd.ca", true },
+ { "163132.com", true },
{ "1644091933.rsc.cdn77.org", true },
{ "1661237.com", true },
+ { "168btt.com", true },
+ { "168btt.net", true },
+ { "170686.com", true },
+ { "171083.com", true },
{ "1750studios.com", false },
{ "1768calc.com.au", true },
+ { "176f88.com", true },
{ "177603.com", true },
+ { "17kpw.cc", true },
+ { "17kpw.com", true },
{ "17xile.com", true },
+ { "180btt.com", true },
{ "1811559.com", true },
+ { "182162.com", true },
+ { "182wh.com", true },
{ "1844329061.rsc.cdn77.org", true },
{ "1876996.com", true },
- { "18888msc.com", true },
- { "1889p.com", true },
+ { "188198.net", true },
{ "188da.com", true },
- { "188dv.com", true },
{ "1895media.com", true },
{ "18f.gov", true },
{ "18f.gsa.gov", false },
+ { "191090.com", true },
{ "1911trust.com", true },
{ "192433.com", true },
{ "1972969867.rsc.cdn77.org", true },
{ "1981612088.rsc.cdn77.org", true },
- { "19area.cn", true },
- { "19hundert84.de", true },
+ { "1994.io", true },
+ { "19btt.com", true },
+ { "19hundert84.de", false },
+ { "19qq.vip", true },
{ "1a-diamantscheiben.de", true },
{ "1a-werkstattgeraete.de", true },
{ "1ab-machinery.com", true },
{ "1android.de", true },
{ "1c-power.ru", true },
+ { "1chan.pl", true },
{ "1cover.co.nz", true },
{ "1cover.com.au", true },
{ "1cswd.com", true },
{ "1e9.nl", true },
{ "1f123.net", true },
- { "1f412.space", true },
{ "1fach-digital.de", true },
{ "1gp.us", true },
+ { "1hc.be", true },
{ "1hourproofreading.com", true },
{ "1in9.net", true },
{ "1it.click", true },
{ "1js.de", true },
{ "1kando.com", false },
- { "1km.ro", true },
+ { "1ki174.com", true },
{ "1kmi.co", true },
{ "1ll.uk", true },
{ "1lord1faith.com", true },
+ { "1m.duckdns.org", true },
{ "1montre.fr", true },
{ "1morebounce.co.uk", true },
{ "1nfr.com", false },
@@ -371,7 +433,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1px.tv", true },
{ "1r.is", true },
{ "1rs.nl", true },
- { "1scope.com", true },
+ { "1sand0s.nl", true },
{ "1se.co", true },
{ "1se2or3.com", true },
{ "1st-bounce.co.uk", true },
@@ -381,7 +443,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1stclassbouncycastles.co.uk", true },
{ "1stforfun.co.uk", true },
{ "1stpeninsulabouncers.co.uk", true },
- { "1volcano.ru", true },
+ { "1v9.im", true },
{ "1way.faith", true },
{ "1whw.co.uk", true },
{ "1wirelog.de", true },
@@ -389,33 +451,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1zombie.team", true },
{ "2.wtf", true },
{ "200.network", true },
- { "2001y.me", false },
+ { "2001y.me", true },
{ "2012.ovh", true },
- { "20188088.com", true },
+ { "204504byse.info", true },
{ "2083236893.com", true },
+ { "208garfield.com", true },
{ "20at.com", true },
{ "20denier.com", true },
{ "215dy.net", true },
+ { "218btt.com", true },
{ "21sthammersmith.org.uk", true },
{ "21stnc.us", true },
{ "21x9.org", true },
{ "2206p.com", true },
- { "222001.com", true },
- { "2222yh.com", true },
+ { "22321365.com", true },
+ { "224918.com", true },
+ { "22918.net", true },
{ "22delta.com", true },
+ { "22txc.com", true },
{ "22vetter.st", true },
{ "230beats.com", true },
- { "232192.com", true },
+ { "233.be", true },
{ "2333666.xyz", true },
{ "2333blog.com", true },
{ "233blog.com", true },
{ "233boy.com", true },
{ "233bwg.com", true },
- { "233hugo.com", true },
+ { "233hub.com", true },
{ "233now.com", true },
- { "233ss.net", true },
+ { "233v2.com", true },
{ "233vps.com", true },
{ "233yes.com", true },
+ { "23436565.com", true },
+ { "238212.com", true },
{ "24-7.jp", true },
{ "24.ie", true },
{ "245meadowvistaway.com", true },
@@ -431,32 +499,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "24hourlocksmithbaltimore.com", true },
{ "24hourlocksmithdallastx.com", true },
{ "24hourlocksmithdetroit.com", true },
+ { "24hourlocksmithshouston.com", true },
{ "24hoursanantoniolocksmiths.com", true },
{ "24hourscienceprojects.com", true },
{ "24ip.com", true },
{ "24ip.de", true },
{ "24ip.fr", true },
- { "24items.com", true },
- { "24timeravis.dk", true },
+ { "24seven.pk", true },
{ "24zpravy.cz", true },
+ { "2502.net", true },
+ { "2525admin.nl", true },
{ "256pages.com", false },
{ "2586p.com", true },
+ { "258877.com", true },
{ "25reinyan25.net", true },
+ { "26004.cc", true },
{ "2600edinburgh.org", true },
{ "2600hq.com", true },
{ "260887.com", true },
{ "263.info", true },
+ { "267221.com", true },
+ { "267661.com", true },
+ { "27000.best", true },
{ "2718282.net", true },
+ { "276112.com", true },
+ { "276117.com", true },
+ { "276771.com", true },
{ "28-industries.com", true },
+ { "281116.com", true },
{ "281180.de", true },
{ "2858958.com", true },
- { "286.com", true },
+ { "288game.net", true },
{ "28peaks.com", true },
{ "28spots.net", true },
{ "291167.xyz", true },
{ "2912.nl", true },
{ "2948.ca", true },
- { "297computers.com", true },
{ "2991236.com", true },
{ "2au.ru", true },
{ "2bas.nl", true },
@@ -476,7 +554,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "2fm.ie", true },
{ "2fm.radio", true },
{ "2fraud.pro", true },
- { "2g1s.net", true },
{ "2gen.com", true },
{ "2h-nagoya.org", true },
{ "2heartsbookings.co.uk", true },
@@ -486,6 +563,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "2li.ch", true },
{ "2manydots.nl", true },
{ "2mb.solutions", true },
+ { "2melo.fr", true },
{ "2nains.ch", true },
{ "2nerds1bit.com", true },
{ "2nics.net", true },
@@ -503,6 +581,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "301.technology", true },
{ "302422.com", true },
{ "303112.com", true },
+ { "303312.com", true },
{ "303422.com", true },
{ "304122.com", true },
{ "304322.com", true },
@@ -511,20 +590,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "309422.com", true },
{ "30hzcollective.com", true },
{ "310422.com", true },
+ { "311186.com", true },
+ { "311191.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 },
{ "315422.com", true },
{ "316433.com", true },
{ "319422.com", true },
- { "319k3.com", true },
{ "31klabs.com", true },
{ "320281.net", true },
+ { "321132.com", true },
{ "321live.nl", true },
{ "324022.com", true },
{ "324122.com", true },
@@ -538,13 +620,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "329422.com", true },
{ "32h.de", true },
{ "33-km.ru", true },
- { "3333yh.com", true },
- { "33445.com", true },
+ { "33321365.com", true },
+ { "333321365.com", true },
{ "33445111.com", true },
{ "33445222.com", true },
{ "33445333.com", true },
{ "33445444.com", true },
+ { "3345.com", true },
{ "3351p.com", true },
+ { "3361p.com", true },
+ { "338393.com", true },
+ { "338sa.com", true },
+ { "33am8.com", true },
{ "33jiasu.com", true },
{ "340422.com", true },
{ "340622.com", true },
@@ -566,6 +653,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "343622.com", true },
{ "343722.com", true },
{ "343922.com", true },
+ { "34536565.com", true },
{ "346022.com", true },
{ "346033.com", true },
{ "346122.com", true },
@@ -586,6 +674,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "349433.com", true },
{ "349533.com", true },
{ "350422.com", true },
+ { "351113.com", true },
{ "354022.com", true },
{ "354133.com", true },
{ "354233.com", true },
@@ -596,35 +685,64 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "356433.com", true },
{ "357maelai.co", true },
{ "360-staffing.com", true },
+ { "360008888.com", true },
+ { "360hosting.com.au", true },
{ "360live.fr", true },
{ "360rail.nl", true },
{ "360vrs.com", true },
- { "365365.com", true },
+ { "361116.com", true },
+ { "361171.com", true },
+ { "361173.com", true },
+ { "361183.com", true },
+ { "3615jacky.fr", true },
+ { "36554ll.com", true },
+ { "36554mm.com", true },
+ { "365654321.com", true },
+ { "36565b.com", true },
+ { "36565f.com", true },
+ { "3657654321.com", true },
+ { "36587654321.com", true },
{ "365beautyworld.com", true },
{ "365daysreview.com", true },
+ { "365electricalvn.com", true },
{ "365healthworld.com", true },
- { "365propertybuyer.co.uk", true },
+ { "365iosapp.com", true },
+ { "365propertybuyer.co.uk", false },
{ "365skulls.com", true },
+ { "367553.com", true },
+ { "367556.com", true },
{ "370422.com", true },
{ "371422.com", true },
+ { "371687.com", true },
{ "371cloud.com", true },
{ "373422.com", true },
+ { "373816.com", true },
{ "374933.com", true },
{ "375422.com", true },
{ "376208.com", true },
+ { "376557.com", true },
+ { "377625.com", true },
+ { "377632.com", true },
+ { "377813.com", true },
+ { "377817.com", true },
+ { "378553.com", true },
{ "379700.com", true },
{ "380422.com", true },
- { "3880p.com", true },
+ { "38138938.com", true },
+ { "382225.com", true },
+ { "3838onndo.tk", true },
+ { "387763.com", true },
+ { "3886aa.com", true },
{ "388da.com", true },
{ "38sihu.com", false },
{ "390422.com", true },
{ "392422.com", true },
- { "393335.ml", true },
{ "393422.com", true },
{ "394022.com", true },
{ "394122.com", true },
{ "394322.com", true },
{ "394522.com", true },
+ { "394553.com", true },
{ "394622.com", true },
{ "394922.com", true },
{ "396422.com", true },
@@ -632,15 +750,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "3aandl.com", true },
{ "3ags.de", true },
{ "3amtoolbox.se", true },
- { "3ank.in", true },
+ { "3ank.in", false },
+ { "3b.pm", true },
{ "3bakayottu.com", true },
{ "3bigking.com", true },
{ "3c-d.de", true },
{ "3chat.org", true },
- { "3circlefunding.ch", true },
{ "3countiescastlehire.co.uk", true },
{ "3cs.ch", true },
+ { "3d-animator.net", true },
{ "3d-fotoservice.de", true },
+ { "3d1t0r4.com", true },
{ "3dcollective.es", true },
{ "3de5.nl", true },
{ "3deeplearner.com", true },
@@ -649,25 +769,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "3dmedium.de", true },
{ "3dmusiclab.nl", true },
{ "3do3dont.com", true },
- { "3dprintsondemand.eu", true },
- { "3drenaline.com", true },
+ { "3gdh.vip", true },
{ "3haeuserprojekt.org", true },
{ "3haueserprojekt.org", true },
{ "3hl0.net", true },
{ "3james.com", true },
{ "3logic.ru", true },
- { "3lot.ru", true },
{ "3n5b.com", true },
{ "3niu168.com", true },
- { "3niu178.com", true },
{ "3niu6.com", true },
- { "3niu66.com", true },
- { "3niu666.com", true },
- { "3niu8.com", true },
- { "3niu88.com", true },
- { "3niu8888.com", true },
- { "3niuurl.com", true },
- { "3os.ooo", true },
+ { "3niuurl.com", false },
+ { "3oneseven.com", true },
{ "3plusdesign.gr", true },
{ "3prn.com", true },
{ "3queens.cz", true },
@@ -686,12 +798,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "3sdns.de", true },
{ "3shosting.de", true },
{ "3smail.de", true },
- { "3timegear.com", true },
{ "3tribes.co.uk", true },
{ "3typen.tv", true },
{ "3v4l.org", true },
{ "3vlnaeet.cz", true },
{ "3xbit.com.br", true },
+ { "3xm.at", true },
{ "4-1-where.com", true },
{ "4-it.de", true },
{ "4000milestare.com", false },
@@ -701,57 +813,62 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "4096bit.de", false },
{ "40acts.org.uk", true },
{ "41-where.com", true },
- { "4111pk.com", true },
- { "411416.com", true },
{ "41199.com", true },
{ "411film.com", true },
{ "411movie.com", true },
{ "411quest.com", true },
- { "4138hd.com", true },
+ { "414553.com", true },
{ "41studio.com", true },
{ "41where.com", true },
+ { "42.tools", true },
+ { "420.nerdpol.ovh", true },
{ "420java.com", true },
{ "42ch.com", true },
{ "42day.info", true },
+ { "42l.fr", true },
{ "439050.com", true },
+ { "43klive.com", true },
{ "440887.com", true },
{ "440hz.radio", true },
{ "441jj.com", false },
{ "441jz.com", false },
{ "442887.com", true },
{ "442jz.com", false },
+ { "44321365.com", true },
{ "443887.com", true },
{ "443jz.com", false },
- { "4444yh.com", true },
{ "444887.com", true },
{ "445887.com", true },
{ "44sec.com", true },
{ "451.ooo", true },
+ { "4553.com", true },
+ { "455327.com", true },
+ { "4553s.com", true },
{ "46fa.com", true },
+ { "47.rs", true },
{ "4706666.com", true },
{ "4716666.com", true },
{ "4726666.com", true },
{ "4756666.com", true },
{ "4786666.com", true },
{ "491mhz.net", true },
- { "494k.com", true },
{ "49889.com", true },
{ "49dollaridahoregisteredagent.com", true },
{ "4c-haircare.com", true },
{ "4eyes.ch", true },
{ "4fit.ro", true },
- { "4flex.info", true },
- { "4freepress.com", true },
{ "4g-server.eu", false },
{ "4garage.com.br", true },
+ { "4gnews.pt", true },
{ "4hmediaproductions.com", true },
{ "4host.ch", true },
- { "4kprojektory.cz", true },
+ { "4iners.com", true },
{ "4lock.com.br", true },
{ "4mm.org", true },
+ { "4monar.com", true },
+ { "4obgyne.com", true },
{ "4plebs.moe", true },
{ "4project.co.il", true },
- { "4share.tv", true },
{ "4th-ave-studio.com", true },
{ "4thdc.com", true },
{ "4u.services", true },
@@ -759,36 +876,152 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "4vector.com", true },
{ "4vf.de", true },
{ "4x.fi", true },
+ { "4x4-27mc.nl", true },
{ "4x4.lk", true },
+ { "4x4coatingen.nl", true },
{ "4x4tt.com", true },
{ "4xlabs.co", true },
{ "50.gd", true },
{ "50.pe", true },
- { "5002888.com", true },
- { "5007999.com", true },
{ "500k.nl", true },
{ "500p.xyz", true },
+ { "502312.com", true },
{ "504122.com", true },
{ "504322.com", true },
{ "504622.com", true },
{ "504922.com", true },
{ "506422.com", true },
- { "508088.com", true },
{ "50lakeshore.com", true },
{ "50north.de", true },
+ { "513maximus.site", true },
{ "514122.com", true },
{ "514522.com", true },
- { "514622.com", true },
{ "514922.com", true },
{ "515422.com", true },
{ "516422.com", true },
+ { "516btt.com", true },
+ { "516btt.net", true },
+ { "518.com.tw", true },
{ "51877.net", true },
{ "519422.com", true },
+ { "5197.co", false },
+ { "5197.com", true },
+ { "5197a.co", true },
+ { "5197aa.co", true },
+ { "5197b.co", true },
+ { "5197bb.co", true },
+ { "5197c.co", true },
+ { "5197cc.co", true },
+ { "5197d.co", true },
+ { "5197dd.co", true },
+ { "5197dh.co", true },
+ { "5197dh.com", false },
+ { "5197dns.com", false },
+ { "5197dz.com", false },
+ { "5197e.co", true },
+ { "5197ee.co", true },
+ { "5197f.co", true },
+ { "5197ff.co", true },
+ { "5197g.co", true },
+ { "5197gg.co", true },
+ { "5197h.co", true },
+ { "5197hd.co", true },
+ { "5197hh.co", true },
+ { "5197i.co", true },
+ { "5197ii.co", true },
+ { "5197j.co", true },
+ { "5197jj.co", true },
+ { "5197k.co", true },
+ { "5197kk.co", true },
+ { "5197l.co", true },
+ { "5197ll.co", true },
+ { "5197m.co", true },
+ { "5197mm.co", true },
+ { "5197n.co", true },
+ { "5197nn.co", true },
+ { "5197o.co", true },
+ { "5197oo.co", true },
+ { "5197p.co", true },
+ { "5197pp.co", true },
+ { "5197q.co", true },
+ { "5197qq.co", true },
+ { "5197r.co", true },
+ { "5197rr.co", true },
+ { "5197s.co", true },
+ { "5197ss.co", true },
+ { "5197sx.com", false },
+ { "5197t.co", true },
+ { "5197tt.co", true },
+ { "5197u.co", true },
+ { "5197uu.co", true },
+ { "5197v.co", true },
+ { "5197vv.co", true },
+ { "5197w.co", true },
+ { "5197ww.co", true },
+ { "5197x.co", true },
+ { "5197xx.co", true },
+ { "5197y.co", true },
+ { "5197yy.co", true },
+ { "5197z.co", true },
+ { "5197zz.co", true },
{ "51acg.eu.org", true },
- { "51aifuli.com", true },
+ { "51chiyu.com", true },
{ "51guaq.com", true },
{ "51tiaojiu.com", true },
- { "5219.ml", true },
+ { "52051.com", true },
+ { "52051a.com", true },
+ { "52051b.com", true },
+ { "52051c.com", true },
+ { "52051d.com", true },
+ { "52051e.com", true },
+ { "52051f.com", true },
+ { "52051g.com", true },
+ { "52051h.com", true },
+ { "52051i.com", true },
+ { "52051j.com", true },
+ { "52051k.com", true },
+ { "52051l.com", true },
+ { "52051m.com", true },
+ { "52051n.com", true },
+ { "52051o.com", true },
+ { "52051p.com", true },
+ { "52051q.com", true },
+ { "52051r.com", true },
+ { "52051s.com", true },
+ { "52051t.com", true },
+ { "52051u.com", true },
+ { "52051v.com", true },
+ { "52051w.com", true },
+ { "52051x.com", true },
+ { "52051y.com", true },
+ { "52051z.com", true },
+ { "52067.com", true },
+ { "52067a.com", true },
+ { "52067b.com", true },
+ { "52067c.com", true },
+ { "52067d.com", true },
+ { "52067e.com", true },
+ { "52067f.com", true },
+ { "52067g.com", true },
+ { "52067h.com", true },
+ { "52067i.com", true },
+ { "52067j.com", true },
+ { "52067k.com", true },
+ { "52067l.com", true },
+ { "52067m.com", true },
+ { "52067n.com", true },
+ { "52067o.com", true },
+ { "52067p.com", true },
+ { "52067q.com", true },
+ { "52067r.com", true },
+ { "52067s.com", true },
+ { "52067t.com", true },
+ { "52067u.com", true },
+ { "52067v.com", true },
+ { "52067w.com", true },
+ { "52067x.com", true },
+ { "52067y.com", true },
+ { "52067z.com", true },
{ "524022.com", true },
{ "524622.com", true },
{ "524922.com", true },
@@ -799,17 +1032,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "52ncp.net", true },
{ "52sykb.com", true },
{ "531422.com", true },
- { "532441.com", true },
{ "532445.com", true },
{ "534122.com", true },
{ "534622.com", true },
{ "534922.com", true },
+ { "5364.com", true },
{ "536422.com", true },
{ "5364b.com", true },
{ "5364c.com", true },
{ "5364d.com", true },
{ "5364jc.com", true },
{ "53ningen.com", true },
+ { "54.sb", true },
{ "540922.com", true },
{ "541022.com", true },
{ "541622.com", true },
@@ -818,47 +1052,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "545922.com", true },
{ "546802.com", true },
{ "54below.com", true },
- { "5518k3.com", true },
+ { "54lsj.cc", true },
+ { "55321365.com", true },
{ "5533445.com", true },
- { "5555yh.com", true },
+ { "555btt.com", true },
+ { "555w.org", true },
{ "555wfcp.com", true },
- { "55639.com", true },
- { "566380.com", true },
- { "575380.com", true },
+ { "556021.com", true },
+ { "556185.com", true },
+ { "558btt.net", true },
+ { "56736565.com", true },
{ "576422.com", true },
- { "578380.com", true },
+ { "578637.com", true },
{ "579422.com", true },
{ "57wilkie.net", true },
{ "581018.com", true },
{ "583422.com", true },
- { "585380.com", true },
{ "585422.com", true },
{ "586422.com", true },
{ "588l.com", true },
{ "58nav.com", true },
- { "591380.com", true },
{ "591422.com", true },
- { "592380.com", true },
+ { "592227.com", true },
{ "592422.com", true },
{ "5930593.com", true },
- { "593380.com", true },
{ "594022.com", true },
{ "594622.com", true },
{ "595422.com", true },
{ "596422.com", true },
- { "598380.com", true },
{ "5997891.com", true },
+ { "599980.com", true },
{ "5apps.com", true },
- { "5beanskit.com", true },
{ "5c1fd0f31022cbc40af9f785847baaf9.space", true },
+ { "5chat.it", true },
{ "5dm.tv", true },
{ "5dwin.com", true },
{ "5dwin.net", true },
{ "5francs.com", true },
{ "5gb.space", true },
+ { "5in.win", true },
{ "5kraceforals.com", true },
{ "5percentperweek.com", true },
- { "5stars.tv", true },
{ "5thchichesterscouts.org.uk", true },
{ "5y.fi", true },
{ "5yeb.com", true },
@@ -871,20 +1105,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "606422.com", true },
{ "609422.com", true },
{ "609avenue.com", true },
+ { "611135.com", true },
{ "614022.com", true },
{ "614322.com", true },
{ "614922.com", true },
+ { "616f88.com", true },
+ { "617020.com", true },
{ "61730123.com", true },
- { "618media.com", true },
+ { "618btt.com", true },
+ { "618btt.net", true },
{ "620881.com", true },
{ "621422.com", true },
+ { "622812.com", true },
{ "62314.cc", true },
{ "624022.com", true },
{ "624122.com", true },
{ "624322.com", true },
{ "624522.com", true },
{ "624922.com", true },
- { "626380.com", true },
{ "626422.com", true },
{ "630422.com", true },
{ "631422.com", true },
@@ -894,6 +1132,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "634922.com", true },
{ "635422.com", true },
{ "636422.com", true },
+ { "638566.com", true },
{ "639422.com", true },
{ "640622.com", true },
{ "640722.com", true },
@@ -944,29 +1183,131 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "6547766.com", true },
{ "6548855.com", true },
{ "6548877.com", true },
- { "6556hd.com", true },
- { "6556pk.com", true },
- { "656088.com", true },
{ "659422.com", true },
{ "65d88.com", true },
{ "6602p.com", true },
- { "6603p.com", true },
- { "66136.com", true },
{ "662607.xyz", true },
+ { "66321365.com", true },
{ "6633445.com", true },
{ "6652566.com", true },
{ "6660111.ru", true },
+ { "6664553.com", true },
+ { "666618.cc", true },
{ "666668722.com", true },
- { "6666yh.com", true },
+ { "666am8.com", true },
+ { "668825.vip", true },
+ { "668am8.com", true },
+ { "66b.com", true },
{ "670422.com", true },
{ "671422.com", true },
{ "672422.com", true },
+ { "6729a.com", true },
+ { "6729aa.co", true },
+ { "6729aa.com", true },
+ { "6729apk.com", true },
+ { "6729app.com", true },
+ { "6729b.co", true },
+ { "6729b.com", true },
+ { "6729bb.co", true },
+ { "6729bb.com", true },
+ { "6729c.co", true },
+ { "6729c.com", true },
+ { "6729cc.co", true },
+ { "6729cc.com", true },
+ { "6729d.co", true },
+ { "6729d.com", true },
+ { "6729dd.co", true },
+ { "6729dd.com", true },
+ { "6729e.co", true },
+ { "6729e.com", true },
+ { "6729ee.co", true },
+ { "6729ee.com", true },
+ { "6729f.co", true },
+ { "6729f.com", true },
+ { "6729ff.co", true },
+ { "6729ff.com", true },
+ { "6729g.co", true },
+ { "6729g.com", true },
+ { "6729gg.co", true },
+ { "6729gg.com", true },
+ { "6729h.co", true },
+ { "6729h.com", true },
+ { "6729hb.com", false },
+ { "6729hd.com", false },
+ { "6729hh.co", true },
+ { "6729i.co", true },
+ { "6729i.com", true },
+ { "6729ii.co", true },
+ { "6729ii.com", true },
+ { "6729ipa.com", true },
+ { "6729j.co", true },
+ { "6729j.com", true },
+ { "6729jj.co", true },
+ { "6729jj.com", true },
+ { "6729k.co", true },
+ { "6729k.com", true },
+ { "6729kk.co", true },
+ { "6729l.co", true },
+ { "6729l.com", true },
+ { "6729ll.co", true },
+ { "6729ll.com", true },
+ { "6729m.co", true },
+ { "6729m.com", true },
+ { "6729nn.com", true },
+ { "6729o.co", true },
+ { "6729o.com", true },
+ { "6729oo.co", true },
+ { "6729oo.com", true },
+ { "6729p.co", true },
+ { "6729pp.co", true },
+ { "6729pp.com", true },
+ { "6729q.co", true },
+ { "6729q.com", true },
+ { "6729qq.co", true },
+ { "6729qq.com", true },
+ { "6729r.co", true },
+ { "6729r.com", true },
+ { "6729rr.co", true },
+ { "6729rr.com", true },
+ { "6729s.co", true },
+ { "6729s.com", true },
+ { "6729ss.co", true },
+ { "6729ss.com", true },
+ { "6729sx.com", false },
+ { "6729t.co", true },
+ { "6729t.com", true },
+ { "6729tt.co", true },
+ { "6729tt.com", true },
+ { "6729u.com", true },
+ { "6729uu.com", true },
+ { "6729v.com", true },
+ { "6729vv.co", true },
+ { "6729vv.com", true },
+ { "6729w.co", true },
+ { "6729w.com", true },
+ { "6729ww.co", true },
+ { "6729ww.com", true },
+ { "6729x.co", true },
+ { "6729x.com", true },
+ { "6729xx.co", true },
+ { "6729xx.com", true },
+ { "6729xy.com", false },
+ { "6729y.co", true },
+ { "6729y.com", true },
+ { "6729yy.co", true },
+ { "6729z.co", true },
+ { "6729z.com", true },
+ { "6729zz.co", true },
+ { "6729zz.com", true },
{ "673422.com", true },
{ "676422.com", true },
+ { "676812.com", true },
{ "679422.com", true },
{ "680422.com", true },
{ "68277.me", true },
+ { "6848.com", true },
{ "686848.com", true },
+ { "68hvip.com", true },
{ "690422.com", true },
{ "691422.com", true },
{ "692422.com", true },
@@ -974,106 +1315,212 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "694322.com", true },
{ "694622.com", true },
{ "694922.com", true },
+ { "6957a.co", true },
+ { "6957aa.co", true },
+ { "6957b.co", true },
+ { "6957bb.co", true },
+ { "6957c.co", true },
+ { "6957d.co", true },
+ { "6957dd.co", true },
+ { "6957dz.com", false },
+ { "6957ee.co", true },
+ { "6957f.co", true },
+ { "6957g.co", true },
+ { "6957gg.co", true },
+ { "6957h.co", true },
+ { "6957hd.com", false },
+ { "6957hh.co", true },
+ { "6957i.co", true },
+ { "6957ii.co", true },
+ { "6957j.co", true },
+ { "6957jj.co", true },
+ { "6957k.co", true },
+ { "6957kk.co", true },
+ { "6957l.co", true },
+ { "6957ll.co", true },
+ { "6957m.co", true },
+ { "6957mm.co", true },
+ { "6957n.co", true },
+ { "6957nn.co", true },
+ { "6957o.co", true },
+ { "6957oo.co", true },
+ { "6957p.co", true },
+ { "6957qq.co", true },
+ { "6957r.co", true },
+ { "6957s.co", true },
+ { "6957ss.co", true },
+ { "6957t.co", true },
+ { "6957tt.co", true },
+ { "6957u.co", true },
+ { "6957uu.co", true },
+ { "6957v.co", true },
+ { "6957vv.co", true },
+ { "6957w.co", true },
+ { "6957ww.co", true },
+ { "6957x.co", true },
+ { "6957xx.co", true },
+ { "6957xy.com", false },
+ { "6957y.co", true },
+ { "6957yy.co", true },
+ { "6957z.co", true },
+ { "6957zz.co", true },
{ "6969.us", true },
- { "69759.com", true },
{ "698da.com", true },
- { "69928.com", true },
{ "6997896.com", true },
{ "69butterfly.com", true },
{ "69fps.gg", true },
+ { "69games.xxx", true },
{ "69wasted.net", true },
{ "6bwcp.com", true },
+ { "6dec.gc.ca", true },
+ { "6hzx.com", true },
{ "6ird.com", true },
{ "6lo.zgora.pl", true },
+ { "6z0.cn", true },
{ "700.az", true },
+ { "701135.com", true },
+ { "701605.com", true },
{ "704233.com", true },
{ "704533.com", true },
{ "7045h.com", true },
{ "704633.com", true },
+ { "705994.com", true },
{ "7080997.com", true },
+ { "709129.com", true },
{ "712433.com", true },
+ { "713367.com", true },
+ { "713387.com", true },
{ "713433.com", true },
{ "714133.com", true },
{ "714533.com", true },
{ "714633.com", true },
{ "715433.com", true },
+ { "716176.com", true },
+ { "716227.com", true },
+ { "716331.com", true },
+ { "718113.com", true },
+ { "718227.com", true },
+ { "718337.com", true },
{ "718433.com", true },
+ { "718552.com", true },
+ { "718772.com", true },
{ "719433.com", true },
+ { "721167.com", true },
+ { "721172.com", true },
+ { "722201.com", true },
{ "724233.com", true },
+ { "726127.com", true },
+ { "726162.com", true },
+ { "726176.com", true },
+ { "726217.com", true },
+ { "726221.com", true },
{ "726433.com", true },
{ "728433.com", true },
{ "729433.com", true },
{ "730433.com", true },
{ "731433.com", true },
+ { "731716.com", true },
+ { "731783.com", true },
{ "732433.com", true },
{ "735433.com", true },
+ { "736371.com", true },
+ { "736381.com", true },
{ "736433.com", true },
{ "738433.com", true },
{ "739433.com", true },
- { "73info.com", true },
{ "740833.com", true },
{ "741833.com", true },
{ "742833.com", true },
{ "743833.com", true },
{ "74th.jp", true },
- { "755k3.com", true },
+ { "756337.com", true },
{ "762.ch", true },
- { "7717a.com", true },
+ { "762116.com", true },
+ { "763137.com", true },
+ { "77321365.com", true },
{ "7733445.com", true },
{ "7770b.com", true },
{ "7770t.com", true },
- { "7777yh.com", true },
+ { "7777k8.com", true },
{ "777coin.com", true },
+ { "7787p.com", true },
+ { "780aa.com", true },
+ { "781371.com", true },
+ { "781376.com", true },
+ { "781671.com", true },
+ { "781683.com", true },
+ { "781713.com", true },
+ { "783631.com", true },
{ "783lab.com", true },
- { "787k3.com", true },
+ { "787637.com", true },
{ "7885765.com", true },
{ "7891553.com", true },
{ "7891997.com", true },
{ "7898666.com", true },
+ { "790security.co.za", true },
+ { "797715.com", true },
{ "79ch.com", true },
{ "7careconnect.com", true },
{ "7delights.com", true },
{ "7delights.in", true },
- { "7ferfer.com.br", true },
+ { "7f.is", true },
{ "7geese.com", true },
{ "7graus.pt", true },
+ { "7ka.co", true },
{ "7kicks.com", true },
+ { "7kovrikov.ru", true },
+ { "7milesglobal.com", true },
+ { "7pb.ru", true },
{ "7plus.com.au", true },
{ "7proxies.com", true },
- { "7qly.com", true },
{ "7sons.de", true },
{ "7thcircledesigns.com", true },
- { "7trade8.com", true },
{ "7x24servis.com", true },
+ { "803001.com", true },
{ "804322.com", true },
+ { "80780780.com", true },
{ "8080883.com", true },
{ "8080889.com", true },
{ "8086.cf", true },
{ "80883.cc", true },
{ "80887.cc", true },
+ { "809088.cc", true },
{ "809422.com", true },
{ "80993.net", true },
+ { "80bin.com", true },
{ "814022.com", true },
{ "815jz.com", true },
{ "816jz.com", true },
{ "81818app.com", true },
{ "8189196.com", true },
- { "8211p.com", true },
- { "8212p.com", true },
- { "8213p.com", true },
+ { "818da.com", true },
+ { "8203d88.com", true },
{ "8214p.com", true },
- { "8215p.com", true },
{ "8216p.com", true },
+ { "8228d88.com", true },
+ { "8230d88.com", true },
+ { "833792.com", true },
{ "8349822.com", true },
+ { "8363p.com", true },
+ { "8367p.com", true },
+ { "8368p.com", true },
+ { "8369p.com", true },
+ { "8371p.com", true },
+ { "8373p.com", true },
+ { "8376p.com", true },
+ { "8378p.com", true },
+ { "8379p.com", true },
+ { "8387p.com", true },
+ { "8391p.com", true },
+ { "8396p.com", true },
+ { "842844.com", true },
{ "848jz.com", true },
- { "8522.com", true },
+ { "8522.am", true },
{ "8522club.com", true },
- { "8522hk.com", true },
{ "8522ph.com", true },
{ "8522tw.com", true },
{ "8522usa.com", true },
- { "86499.com", true },
- { "86metro.ru", true },
+ { "86btt.com", true },
{ "8722.am", true },
{ "8722am.com", true },
{ "8722cn.com", true },
@@ -1081,97 +1528,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "8722ph.com", true },
{ "8722tw.com", true },
{ "8722usa.com", true },
- { "877027.com", true },
+ { "877791.com", true },
{ "88-line.com", true },
{ "88-line.net", true },
- { "8802p.com", true },
+ { "8809d88.com", true },
{ "881-line.com", true },
{ "881-line.net", true },
- { "8818k3.com", true },
+ { "8826ks.com", true },
+ { "88321365.com", true },
{ "8833445.com", true },
{ "88522am.com", true },
{ "885287.com", true },
+ { "8858ks.com", true },
+ { "8868ks.com", true },
+ { "886k8.net", true },
{ "887.ag", true },
{ "8876007.com", true },
{ "8876008.com", true },
{ "8876009.com", true },
- { "8876138.com", true },
+ { "8876205.com", true },
{ "8876278.com", true },
{ "8876289.com", true },
{ "8876290.com", true },
{ "8876353.com", true },
{ "8876389.com", true },
- { "8876520.com", true },
- { "8876578.com", true },
- { "8876598.com", true },
- { "8876655.com", true },
- { "8876660.com", true },
- { "8876687.com", true },
{ "8876764.com", true },
- { "8876770.com", true },
- { "8876775.com", true },
- { "8876776.com", true },
- { "8876779.com", true },
{ "8876808.com", true },
- { "8876818.com", true },
- { "8876822.com", true },
{ "8876832.com", true },
{ "8876835.com", true },
- { "8876838.com", true },
- { "8876858.com", true },
{ "8876859.com", true },
- { "8876866.com", true },
{ "8876878.com", true },
- { "8876879.com", true },
- { "8876881.com", true },
- { "8876882.com", true },
- { "8876883.com", true },
- { "8876898.com", true },
- { "8876900.com", true },
{ "8876955.com", true },
{ "8876979.com", true },
{ "8876987.com", true },
{ "8876989.com", true },
- { "8876991.com", true },
- { "8876992.com", true },
- { "8876996.com", true },
- { "8880013.com", true },
- { "8880021.com", true },
- { "8880023.com", true },
- { "8880025.com", true },
- { "8880059.com", true },
- { "8880067.com", true },
- { "8880083.com", true },
- { "8880100.com", true },
- { "88851333.com", true },
{ "88851777.com", true },
{ "888666pj.com", true },
- { "8886737.com", true },
- { "8886739.com", true },
- { "8886793.com", true },
- { "8886806.com", true },
- { "8886860.com", true },
+ { "88881.pw", true },
{ "888888722.com", true },
{ "88889822.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 },
{ "888funcity.com", true },
{ "888funcity.net", true },
+ { "88btt.net", true },
{ "88yule11.com", true },
{ "88yule112.com", true },
{ "88yule113.com", true },
@@ -1182,45 +1580,243 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "88yule6.com", true },
{ "88yule7.com", true },
{ "88yule9.com", true },
- { "8ack.de", true },
- { "8ackprotect.com", true },
+ { "890238.com", true },
+ { "89btt.com", true },
+ { "8balls.nl", true },
+ { "8da188.com", true },
{ "8da222.com", true },
+ { "8da999.com", true },
{ "8dabet.com", true },
- { "8hrs.net", true },
{ "8maerz.at", true },
+ { "8pc.ru", true },
{ "8t8.eu", true },
{ "8tech.com.hk", true },
{ "8thportsmouth.org.uk", true },
{ "8tuffbeers.com", true },
{ "8xx888.com", true },
- { "8y.network", true },
+ { "8xxxxxxx.com", true },
{ "8yun.cf", true },
{ "9-11commission.gov", true },
+ { "901543.com", true },
{ "903422.com", true },
{ "905422.com", true },
- { "908.la", true },
{ "9090819.com", true },
{ "90r.jp", true },
{ "910kj.com", true },
+ { "911.gov", true },
+ { "911216.xyz", true },
{ "9118.com", true },
+ { "9118.la", true },
{ "911commission.gov", true },
{ "912422.com", true },
{ "913422.com", true },
{ "914122.com", true },
+ { "918.com", true },
+ { "9180nn.com", true },
+ { "9180tt.com", true },
+ { "9180vv.com", true },
+ { "9180xx.com", true },
+ { "9180yy.com", true },
+ { "9180zz.com", true },
+ { "91816.net", true },
+ { "9186119.com", true },
+ { "91891849.com", true },
+ { "91891854.com", true },
+ { "91891856.com", true },
+ { "91891878.com", true },
+ { "918aak.com", true },
+ { "918ajj.com", true },
+ { "918akk.com", true },
+ { "918amj.co", true },
+ { "918att.com", true },
+ { "918bbm.co", true },
+ { "918bby.com", true },
+ { "918bcf.co", true },
+ { "918bcw.co", true },
+ { "918btt.com", true },
+ { "918btt.net", true },
+ { "918btty.com", true },
+ { "918bttz.com", true },
+ { "918ca.com", true },
+ { "918caa.com", true },
+ { "918cch.com", true },
+ { "918ch.com", true },
+ { "918cr.com", true },
+ { "918cx.com", true },
+ { "918dc04.com", true },
+ { "918dc16.com", true },
+ { "918dc20.com", true },
+ { "918dp.com", true },
+ { "918ee.com", true },
+ { "918ej.com", true },
+ { "918ev.com", true },
+ { "918fq.com", true },
+ { "918fr.com", true },
+ { "918fv.com", true },
{ "918gd.com", true },
+ { "918hr.com", true },
+ { "918hu.com", true },
+ { "918iz.com", true },
+ { "918kx.com", true },
+ { "918mc.com", true },
+ { "918md10.com", true },
+ { "918md16.com", true },
+ { "918md25.com", true },
+ { "918mf.com", true },
+ { "918nc.com", true },
+ { "918nd.com", true },
+ { "918nu.com", true },
+ { "918ny.com", true },
+ { "918qa.com", true },
+ { "918rw.com", true },
+ { "918sn.com", true },
+ { "918ta.com", true },
+ { "918tj.com", true },
+ { "918tr.com", true },
+ { "918tw.com", true },
+ { "918uh.com", true },
+ { "918um.com", true },
+ { "918vb.com", true },
+ { "918ve.com", true },
+ { "918vi.com", true },
+ { "918vz.com", true },
+ { "918wa.com", true },
+ { "918we.com", true },
+ { "918wo.com", true },
+ { "918wq.com", true },
+ { "918ww.com", true },
+ { "918xn.com", true },
+ { "918zm.com", true },
+ { "918zv.com", true },
+ { "918zw.com", true },
{ "919422.com", true },
- { "91966.com", true },
- { "91tianmi.com", false },
+ { "91d27.com", true },
+ { "91d52.com", true },
+ { "91d58.com", true },
+ { "91d89.com", true },
{ "91travel.info", true },
{ "924122.com", true },
{ "924322.com", true },
{ "924622.com", true },
{ "926422.com", true },
{ "929349.com", true },
+ { "9297.co", false },
+ { "9297.com", true },
+ { "9297a.co", true },
+ { "9297aa.co", true },
+ { "9297b.co", true },
+ { "9297bb.co", true },
+ { "9297c.co", true },
+ { "9297cc.co", true },
+ { "9297d.co", true },
+ { "9297dd.co", true },
+ { "9297dns.com", false },
+ { "9297e.co", true },
+ { "9297ee.co", true },
+ { "9297f.co", true },
+ { "9297ff.co", true },
+ { "9297g.co", true },
+ { "9297gg.co", true },
+ { "9297h.co", true },
+ { "9297hb.com", false },
+ { "9297hd.com", false },
+ { "9297hh.co", true },
+ { "9297i.co", true },
+ { "9297ii.co", true },
+ { "9297j.co", true },
+ { "9297jj.co", true },
+ { "9297k.co", true },
+ { "9297kk.co", true },
+ { "9297l.co", true },
+ { "9297ll.co", true },
+ { "9297m.co", true },
+ { "9297mm.co", true },
+ { "9297n.co", true },
+ { "9297nn.co", true },
+ { "9297o.co", true },
+ { "9297oo.co", true },
+ { "9297p.co", true },
+ { "9297pp.co", true },
+ { "9297q.co", true },
+ { "9297qq.co", true },
+ { "9297r.co", true },
+ { "9297rr.co", true },
+ { "9297s.co", true },
+ { "9297ss.co", true },
+ { "9297t.co", true },
+ { "9297tt.co", true },
+ { "9297u.co", true },
+ { "9297uu.co", true },
+ { "9297v.co", true },
+ { "9297vv.co", true },
+ { "9297w.co", true },
+ { "9297ww.co", true },
+ { "9297x.co", true },
+ { "9297xx.co", true },
+ { "9297y.co", true },
+ { "9297yy.co", true },
+ { "9297z.co", true },
+ { "9297zz.co", true },
{ "92url.com", true },
{ "931422.com", true },
{ "932422.com", true },
+ { "933325.com", true },
{ "934122.com", true },
+ { "939394.org", true },
+ { "9397.com", true },
+ { "9397a.com", true },
+ { "9397aa.com", true },
+ { "9397b.com", true },
+ { "9397bb.com", true },
+ { "9397c.com", true },
+ { "9397cc.com", true },
+ { "9397dd.com", true },
+ { "9397dh.com", true },
+ { "9397e.com", true },
+ { "9397ee.com", true },
+ { "9397f.com", true },
+ { "9397ff.com", true },
+ { "9397g.com", true },
+ { "9397gg.com", true },
+ { "9397h.com", true },
+ { "9397hb.com", true },
+ { "9397hd.com", true },
+ { "9397hh.com", true },
+ { "9397i.com", true },
+ { "9397ii.com", true },
+ { "9397j.com", true },
+ { "9397jj.com", true },
+ { "9397kk.com", true },
+ { "9397l.com", true },
+ { "9397ll.com", true },
+ { "9397m.com", true },
+ { "9397mm.com", true },
+ { "9397n.com", true },
+ { "9397nn.com", true },
+ { "9397o.com", true },
+ { "9397oo.com", true },
+ { "9397p.com", true },
+ { "9397pp.com", true },
+ { "9397q.com", true },
+ { "9397qq.com", true },
+ { "9397r.com", true },
+ { "9397rr.com", true },
+ { "9397s.com", true },
+ { "9397ss.com", true },
+ { "9397t.com", true },
+ { "9397tt.com", true },
+ { "9397u.com", true },
+ { "9397uu.com", true },
+ { "9397v.com", true },
+ { "9397vv.com", true },
+ { "9397w.com", true },
+ { "9397ww.com", true },
+ { "9397x.com", true },
+ { "9397xx.com", true },
+ { "9397y.com", true },
+ { "9397yy.com", true },
+ { "9397z.com", true },
+ { "9397zz.com", true },
{ "943022.com", true },
{ "9449-27a1-22a1-e0d9-4237-dd99-e75e-ac85-2f47-9d34.de", true },
{ "946022.com", true },
@@ -1229,45 +1825,162 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "949122.com", true },
{ "949622.com", true },
{ "949722.com", true },
- { "94cs.cn", false },
+ { "961621.com", true },
+ { "962312.com", true },
+ { "963cq.com", true },
{ "967606.com", true },
{ "9679693.com", true },
{ "9681909.com", true },
+ { "9721.com", true },
+ { "9721a.com", true },
+ { "9721aa.com", true },
+ { "9721b.com", true },
+ { "9721bb.com", true },
+ { "9721c.com", true },
+ { "9721cc.com", true },
+ { "9721d.com", true },
+ { "9721dd.com", true },
+ { "9721dh.com", true },
+ { "9721e.com", true },
+ { "9721ee.com", true },
+ { "9721f.com", true },
+ { "9721ff.com", true },
+ { "9721g.com", true },
+ { "9721gg.com", true },
+ { "9721h.com", true },
+ { "9721hd.com", true },
+ { "9721hh.com", true },
+ { "9721i.com", true },
+ { "9721j.com", true },
+ { "9721jj.com", true },
+ { "9721k.com", true },
+ { "9721kk.com", true },
+ { "9721l.com", true },
+ { "9721ll.com", true },
+ { "9721m.com", true },
+ { "9721mm.com", true },
+ { "9721n.com", true },
+ { "9721nn.com", true },
+ { "9721o.com", true },
+ { "9721oo.com", true },
+ { "9721p.com", true },
+ { "9721pp.com", true },
+ { "9721q.com", true },
+ { "9721qq.com", true },
+ { "9721r.com", true },
+ { "9721rr.com", true },
+ { "9721s.com", true },
+ { "9721ss.com", true },
+ { "9721t.com", true },
+ { "9721tt.com", true },
+ { "9721u.com", true },
+ { "9721uu.com", true },
+ { "9721v.com", true },
+ { "9721vv.com", true },
+ { "9721w.com", true },
+ { "9721ww.com", true },
+ { "9721x.com", true },
+ { "9721xx.com", true },
+ { "9721y.com", true },
+ { "9721yy.com", true },
+ { "9721z.com", true },
+ { "9721zz.com", true },
{ "972422.com", true },
+ { "9728.co", false },
+ { "9728a.co", true },
+ { "9728aa.co", true },
+ { "9728b.co", true },
+ { "9728bb.co", false },
+ { "9728c.co", true },
+ { "9728cc.co", true },
+ { "9728d.co", true },
+ { "9728dd.co", true },
+ { "9728dh.com", false },
+ { "9728dns.com", false },
+ { "9728dz.com", false },
+ { "9728e.co", true },
+ { "9728ee.co", true },
+ { "9728f.co", true },
+ { "9728ff.co", true },
+ { "9728g.co", true },
+ { "9728gg.co", true },
+ { "9728h.co", true },
+ { "9728hb.com", false },
+ { "9728hd.com", false },
+ { "9728hh.co", true },
+ { "9728i.co", true },
+ { "9728ii.co", true },
+ { "9728j.co", true },
+ { "9728jj.co", true },
+ { "9728k.co", true },
+ { "9728kk.co", true },
+ { "9728l.co", true },
+ { "9728ll.co", true },
+ { "9728m.co", true },
+ { "9728mm.co", true },
+ { "9728n.co", true },
+ { "9728nn.co", true },
+ { "9728o.co", true },
+ { "9728oo.co", true },
+ { "9728p.co", true },
+ { "9728pp.co", true },
+ { "9728q.co", true },
+ { "9728qq.co", true },
+ { "9728r.co", true },
+ { "9728rr.co", true },
+ { "9728s.co", true },
+ { "9728ss.co", true },
+ { "9728sx.com", false },
+ { "9728t.co", true },
+ { "9728tt.co", true },
+ { "9728u.co", true },
+ { "9728uu.co", true },
+ { "9728v.co", true },
+ { "9728vv.co", true },
+ { "9728w.co", true },
+ { "9728ww.co", true },
+ { "9728x.co", true },
+ { "9728xx.co", true },
+ { "9728y.co", true },
+ { "9728yy.co", true },
+ { "9728z.co", true },
+ { "9728zz.co", true },
+ { "977hghg.com", true },
{ "9788876.com", 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 },
+ { "984.ch", true },
{ "9867666.com", true },
- { "98laba.com", false },
- { "98laba.net", false },
{ "9918883.com", true },
+ { "99321365.com", true },
{ "9933445.com", true },
- { "9950p.com", true },
{ "99599.fi", true },
+ { "998081.com", true },
+ { "9988ty.com", true },
+ { "998sa.com", true },
+ { "9994553.com", true },
{ "9998722.com", true },
{ "99998522.com", true },
{ "99999822.com", true },
{ "999998722.com", true },
+ { "999salon.co", true },
+ { "999salon.com", true },
+ { "99lib.net", true },
{ "99rst.org", true },
- { "99wxt.com", true },
+ { "99spokes.com", true },
{ "9box.jp", true },
{ "9farm.com", true },
{ "9fvip.net", true },
- { "9hosts.net", true },
{ "9iwan.net", true },
- { "9jajuice.com", true },
- { "9jatrust.com", true },
+ { "9k886.com", true },
{ "9pkfz.com", true },
- { "9riddles.com", true },
{ "9uelle.jp", true },
{ "9vx.org", true },
- { "9y.at", true },
{ "9yw.me", true },
{ "a-1basements.com", true },
{ "a-1indianawaterproofing.com", true },
@@ -1279,69 +1992,90 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "a-msystems.com", true },
{ "a-oben.org", true },
{ "a-players.team", true },
- { "a-pro-pos.info", true },
{ "a-wife.net", true },
{ "a-ztransmission.com", true },
{ "a0print.nl", true },
+ { "a122.cc", true },
+ { "a1autotransport.com", true },
{ "a1bouncycastlehire.com", true },
{ "a1jumpandbounce.co.uk", true },
{ "a1moldsolutions.com", true },
{ "a1scuba.com", true },
- { "a1scubastore.com", true },
+ { "a22z.xyz", true },
+ { "a291.cc", true },
{ "a2a.me", true },
{ "a2a.net", true },
{ "a2nutrition.com.au", true },
+ { "a2os.club", true },
+ { "a30.tokyo", true },
{ "a4sound.com", true },
+ { "a5197.co", true },
{ "a632079.me", true },
+ { "a6729.com", true },
+ { "a6957.co", true },
{ "a7la-chat.com", true },
{ "a7m2.me", true },
+ { "a88fc.com", true },
+ { "a9297.co", true },
+ { "a9397.com", true },
+ { "a9721.com", true },
+ { "a9728.co", true },
{ "aa-tour.ru", true },
{ "aa1718.net", true },
+ { "aa5197.co", true },
+ { "aa6729.co", true },
+ { "aa6729.com", true },
+ { "aa6957.co", true },
+ { "aa9297.co", true },
+ { "aa9397.com", true },
+ { "aa9721.com", true },
+ { "aa9728.co", true },
+ { "aaa-racing.com", true },
+ { "aaa-racing.net", true },
+ { "aaa-racing.uk", true },
{ "aaapl.com", true },
{ "aabanet.com.br", true },
{ "aaben-bank.dk", true },
{ "aabenbank.dk", true },
{ "aacs-design.com", true },
{ "aadw.de", true },
- { "aaex.cloud", true },
- { "aagetransport.no", true },
{ "aalalbayt.com", true },
{ "aalalbayt.net", true },
{ "aalstmotors-usedcars.be", true },
{ "aaltocapital.com", true },
+ { "aaminntourtravel.com", false },
{ "aamwa.com", true },
- { "aandeautobody.com", true },
{ "aandkevents.co.uk", true },
{ "aanmpc.com", true },
{ "aaomidi.com", true },
{ "aapar.nl", true },
{ "aapas.org.ar", true },
+ { "aarailfan.com", true },
{ "aarklendoia.com", true },
{ "aarkue.eu", true },
- { "aaron.cm", true },
- { "aaron.xin", true },
+ { "aaron-russell.co.uk", true },
+ { "aaronfurtado.com", true },
{ "aaronhorler.com", true },
{ "aaronhorler.com.au", true },
{ "aaronkimmig.de", true },
{ "aaronroyle.com", true },
- { "aaronsilber.me", true },
{ "aatf.us", true },
{ "aati.be", true },
{ "aati.info", true },
+ { "aattrans.com", true },
{ "aavienna.com", true },
{ "ab-photography.nl", true },
+ { "ab288.com", true },
+ { "ab2888.cn", true },
+ { "ab28s.com", true },
{ "abaapplianceservice.com", true },
{ "abaaustin.com", true },
{ "ababyco.com.hr", true },
{ "abacusbouncycastle.co.uk", true },
- { "abacustech.co.jp", true },
+ { "abaev.uk", true },
{ "abandonedmines.gov", true },
- { "abasalehngo.com", true },
{ "abateroad66.it", true },
{ "abbadabbabouncycastles.co.uk", true },
- { "abbas.ch", true },
- { "abborsjo.fi", true },
- { "abbotsparties.co.uk", true },
{ "abbottscastles.co.uk", true },
{ "abbruch-star.de", true },
{ "abc-rz.de", true },
@@ -1349,22 +2083,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "abc8081.net", true },
{ "abcbouncycastlessurrey.co.uk", true },
{ "abcbouncyfactory.co.uk", true },
+ { "abcdef.be", true },
{ "abcheck.se", true },
{ "abckam.com", true },
{ "abcpartyhire.com", true },
{ "abcstudio.com.au", true },
{ "abdel.me", true },
+ { "abdl.link", true },
+ { "abdulrahman.eu", true },
{ "abdulwahaab.ca", true },
{ "abe-elektro.de", true },
{ "abe-medical.jp", true },
- { "abeestrada.com", false },
{ "abeilles-idapi.fr", true },
+ { "abelsflooringandtile.com", true },
{ "abenteuer-ahnenforschung.de", true },
{ "aberdeencastles.co.uk", true },
{ "aberdeenjudo.co.uk", true },
{ "abeus.com", true },
{ "abg.ninja", true },
- { "abhibhat.com", true },
{ "abhisharma.me", true },
{ "abi-2017.tk", true },
{ "abiapp.net", true },
@@ -1372,7 +2108,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "abidinginhesed.com", true },
{ "abigisp.com", true },
{ "abilitycaresoftware.com", true },
- { "abilitynet.org.uk", true },
+ { "abilitymatters.co.uk", true },
{ "abilityone.gov", true },
{ "abilma.com", true },
{ "abilymp06.net", true },
@@ -1382,8 +2118,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "abitidasposa.roma.it", true },
{ "abitur97ag.de", true },
{ "abiturma.de", true },
- { "ablak-nyilaszaro.info", true },
+ { "abjay.com", true },
{ "ableprop.net", true },
+ { "abmackenzie.com", true },
{ "abmc.gov", true },
{ "abmledger.ca", true },
{ "abmtax.ca", true },
@@ -1416,13 +2153,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "abolizionista.com", true },
{ "abonilla.com", true },
{ "aborla.net", true },
- { "abos.eu", true },
+ { "abos.eu", false },
{ "abouncycastleman.co.uk", true },
{ "abouthrm.nl", true },
{ "aboutict.nl", true },
{ "aboutlegal.nl", true },
{ "aboutmedia.nl", true },
{ "aboutmyproperty.ca", true },
+ { "aboutpublishers.nl", true },
{ "aboutspice.com", true },
{ "aboutyou.at", true },
{ "aboutyou.be", true },
@@ -1441,7 +2179,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "absolutcruceros.com", true },
{ "absoluteautobody.com", true },
{ "absolutedouble.co.uk", true },
- { "absolutehaitian.com", true },
{ "absolutehosting.co.za", true },
{ "absolutelyinflatables.co.uk", true },
{ "absoluterush.net", true },
@@ -1449,6 +2186,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "absolutviajes.com", true },
{ "abstractbarista.net", true },
{ "abstraction21.com", true },
+ { "abstudio.de", true },
{ "absturztau.be", true },
{ "absturztaube.ch", true },
{ "absynthe-inquisition.fr", true },
@@ -1457,28 +2195,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "abulanov.com", true },
{ "abundanteconomy.com", true },
{ "abundent.com", true },
+ { "abuse.ch", true },
{ "abuse.fi", true },
{ "abuse.io", true },
{ "abvent.net", true },
{ "abvlbasketviganello.ch", true },
{ "abyssproject.net", true },
{ "ac-admin.pl", true },
+ { "ac-cosmetics.nl", true },
+ { "ac-elektro.com.ua", true },
{ "ac-epmservices.com", true },
- { "ac-town.com", true },
{ "ac.milan.it", true },
{ "ac0g.dyndns.org", true },
{ "aca-creative.co.uk", true },
{ "academiadebomberosonline.com", true },
+ { "academica.nl", true },
{ "academicexperts.us", true },
{ "academichealthscience.net", true },
{ "academie-de-police.ch", true },
{ "academkin.com", true },
+ { "academus.io", true },
{ "academytv.com.au", true },
{ "acaeum.com", true },
{ "acampar.com.br", true },
+ { "acandroid.top", true },
{ "acaptureservices.com", true },
{ "acara-yoga.de", true },
{ "acareer.in", true },
+ { "acarreosvillavicencio.com", true },
+ { "acat.io", true },
{ "acbrussels-used.be", true },
{ "accelaway.com", true },
{ "acceleratenetworks.com", true },
@@ -1489,58 +2234,60 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "accesloges.com", true },
{ "accessacab.co.uk", true },
{ "accessauto-occasions.be", true },
+ { "accessgaragedoors.com", true },
+ { "accessibletravelclub.com", true },
{ "accesskeycloning.com", true },
{ "accessmy.net", true },
{ "accessoirescheveuxchic.com", true },
{ "accessoripersmartphone.it", true },
{ "acchicocchi.com", true },
- { "acchikocchi.org", true },
+ { "acclivity.pro", true },
{ "accme.co", true },
{ "accoladescreens.com.au", true },
{ "accord-application.com", true },
{ "accordiondoor.com", true },
{ "account.bbc.com", true },
+ { "account4u.nl", true },
{ "accounts.firefox.com", true },
{ "accounts.google.com", true },
{ "accpl.co", true },
{ "accpodcast.com", true },
{ "accredit.ly", true },
+ { "accreditamento.net", true },
+ { "accrosoft.com", true },
{ "accudraftpaintbooths.com", true },
{ "accurateautobodywa.com", true },
- { "accuritconsulting.com", true },
- { "accuritpresence.com", true },
{ "accutint.com", true },
- { "ace-aegon.cloud", true },
- { "ace.media", true },
{ "ace.one", true },
{ "acealters.com", true },
{ "aceanswering.com", true },
{ "acecolleges.edu.au", true },
- { "acedog.co", true },
+ { "acefreightco.com", 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 },
- { "acfo.org", true },
{ "acfun.eu.org", true },
{ "acg.social", true },
- { "acg1080.com", true },
{ "acgmoon.com", true },
{ "acgmoon.org", true },
{ "acgtalktw.com", true },
{ "achalay.org", true },
+ { "achat-volets-roulants.fr", true },
{ "acheconcursos.com.br", true },
{ "achenar.net", true },
{ "acheter-ethylotest.fr", true },
{ "achromatisch.de", true },
{ "achterblog.de", true },
{ "achterstieg.dedyn.io", true },
+ { "achtzehn.de", true },
{ "achtzehn.eu", true },
{ "achtzehnterachter.de", true },
{ "achtzig20.de", true },
@@ -1548,11 +2295,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "acid.ninja", true },
{ "aciety.com", true },
{ "aciksite.com", true },
+ { "acinq.co", true },
{ "ackermann.ch", true },
{ "ackis.duckdns.org", false },
{ "acklandstainless.com.au", true },
{ "acl.gov", true },
- { "acl.ink", true },
{ "aclu.org", false },
{ "acluva.org", false },
{ "acme.beer", true },
@@ -1563,7 +2310,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "acordes.online", true },
{ "acorncastles.co.uk", true },
{ "acorncredentialing.com", true },
- { "acorntreecare.com", true },
{ "acoshift.com", true },
{ "acoshift.me", true },
{ "acourse.io", true },
@@ -1573,11 +2319,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "acoustics.tech", true },
{ "acousticsoundrecords.com", true },
{ "acoustique-tardy.com", true },
+ { "acp-integrative.fr", true },
{ "acpcoils.com", true },
{ "acperu.ch", true },
{ "acquisition.gov", true },
- { "acquistareviagragenericoitalia.net", true },
- { "acrealux.lu", true },
+ { "acquistareviagragenericoitalia.net", false },
{ "acrepairgeorgetown.com", true },
{ "acrepairhutto.com", true },
{ "acrepairroundrocktx.com", true },
@@ -1597,6 +2343,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "actc.org.uk", true },
{ "actgruppe.de", true },
{ "actheater.com", true },
+ { "acticu.com", true },
{ "actiefgeld.nl", true },
{ "actioncleaningnd.com", true },
{ "actioncoachignite.co.za", true },
@@ -1609,16 +2356,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "activateudid.com", true },
{ "active-tluszcz.pl", true },
{ "active.hu", false },
- { "activecare-monitor.com", true },
+ { "activecare-monitor.com", false },
{ "activeexcavator.com", true },
{ "activehire.co.uk", true },
{ "activeleisure.ie", true },
{ "activiteithardenberg.nl", true },
- { "activitesaintnicaise.org", true },
{ "activityeventhire.co.uk", true },
{ "actom.cc", true },
{ "actonwoodworks.com", true },
{ "actors-cafe.net", true },
+ { "actorshop.co.uk", true },
{ "actserv.co.ke", true },
{ "actualadmins.com", true },
{ "actualidadblog.com", true },
@@ -1629,11 +2376,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "actualidadliteratura.com", true },
{ "actualidadmotor.com", true },
{ "actualidadviajes.com", true },
- { "actuatemedia.com", true },
+ { "actualsolutions.am", true },
+ { "acudire.es", true },
{ "acuica.co.uk", false },
{ "acul.me", true },
+ { "aculocity.com", true },
+ { "acupuntura.coach", true },
+ { "acupuntura.doctor", true },
+ { "acupuntura.institute", true },
+ { "acupunturamadrid.xyz", true },
+ { "acupunturavalencia.xyz", true },
{ "acus.gov", true },
- { "acwcerts.co.uk", true },
+ { "acutewealthadvisors.com", true },
{ "acwi.gov", true },
{ "acy.com", true },
{ "acyfxasia.com", true },
@@ -1647,29 +2401,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ad-notam.it", true },
{ "ad-notam.pt", true },
{ "ad-notam.us", true },
+ { "ad13.in", true },
+ { "ada.eco", true },
{ "ada.gov", true },
{ "adaera.com", true },
{ "adalis.org", true },
{ "adam-ant.co.uk", true },
{ "adam-kostecki.de", true },
- { "adam-wilson.me", true },
{ "adam.lgbt", true },
{ "adamas-magicus.ru", true },
{ "adambalogh.net", true },
{ "adambryant.ca", false },
- { "adambyers.com", true },
{ "adamdixon.co.uk", true },
- { "adamek.online", false },
{ "adamfontenot.com", true },
+ { "adamgibbins.com", true },
{ "adamh.us", true },
- { "adamkaminski.com", true },
{ "adamkostecki.de", true },
{ "adamoutler.com", true },
{ "adamradocz.com", true },
{ "adams.dk", true },
- { "adamsbouncycastles.co.uk", true },
+ { "adamsasphaltpaving.com", true },
{ "adamstas.com", true },
- { "adamwallington.co.uk", true },
{ "adamyuan.xyz", true },
{ "adappt.co.uk", true },
{ "adapptlabs.com", true },
@@ -1679,6 +2431,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adaptergonomics.com", true },
{ "adapti.de", true },
{ "adaptivemechanics.edu.au", true },
+ { "adarshcloud.in", true },
{ "adarshthapa.in", true },
{ "adativos.com.br", true },
{ "adawolfa.cz", true },
@@ -1686,15 +2439,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adblockextreme.com", true },
{ "adblockextreme.net", true },
{ "adblockextreme.org", true },
+ { "adc64.com", true },
{ "adcnvs.com", true },
{ "addcrazy.com", true },
{ "addeekt.com", true },
{ "adderall.space", true },
{ "addicional.com", true },
+ { "addictic.fr", true },
{ "addictionresource.com", true },
{ "addictively.com", true },
- { "addiko.net", true },
{ "addisoncrump.info", true },
+ { "addistribution.it", true },
{ "addnine.com", true },
{ "addon.watch", true },
{ "addones.net", true },
@@ -1706,6 +2461,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adelightfulglow.com", true },
{ "adeline.mobi", true },
{ "adentalsolution.com", true },
+ { "adept-elearning.com", true },
{ "adept.org.pl", true },
{ "adesa.co.uk", true },
{ "adevel.eu", true },
@@ -1714,13 +2470,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adftrasporti.it", true },
{ "adhd-inattentive.com", true },
{ "adhesivelaundry.co.uk", true },
- { "adhoc.is", true },
{ "adiehard.party", true },
{ "adimaja.com", true },
{ "adinariversloveschool.com", true },
{ "adingenierie.fr", true },
- { "adiponectinsupplement.info", true },
- { "adiponectinsupplement.net", true },
+ { "adiprospero.it", true },
+ { "aditibhatia.com", true },
{ "adjagu.org", true },
{ "adlerneves.com", true },
{ "adlerneves.com.br", true },
@@ -1728,14 +2483,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adlerosn.com.br", true },
{ "adlershop.ch", true },
{ "adlignum.se", true },
- { "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 },
+ { "admind.at", true },
{ "adminforge.de", true },
+ { "administracionessaez.es", true },
+ { "administratie-smits.nl", true },
+ { "administratiekantoorblom.nl", true },
{ "administrator.de", true },
{ "administratorserwera.pl", true },
{ "adminless.ovh", true },
@@ -1743,26 +2501,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "admino.cz", true },
{ "admins.tech", true },
{ "adminwerk.net", true },
- { "adminwiki.fr", true },
{ "admirable.one", true },
{ "admirable.pro", true },
{ "admody.com", true },
{ "admongo.gov", true },
{ "adnanoktar.com", true },
- { "adnanotoyedekparca.com", true },
- { "adnmb1.com", true },
+ { "adnexa.it", true },
{ "adnolesh.com", true },
- { "adnot.am", true },
{ "adnseguros.es", true },
{ "adohanyzasjovoje.hu", true },
{ "adomani-italia.com", true },
+ { "adoniscabaret.co.uk", true },
{ "adonizer.science", true },
{ "adonnante.com", true },
{ "adoptionlink.co.uk", true },
- { "adorai.tk", true },
{ "adorecricket.com", true },
{ "adorewe.com", true },
- { "adoriasoft.com", false },
{ "adorno-gymnasium.de", true },
{ "adoucisseur.shop", true },
{ "adquisitio.co.uk", true },
@@ -1772,13 +2526,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adr.gov", true },
{ "adra.com", true },
{ "adrafinil.wiki", true },
+ { "adrenalin.od.ua", true },
+ { "adrenalin.travel", true },
{ "adresults.com", true },
{ "adresults.nl", true },
+ { "adrian.web.id", true },
{ "adrianbechtold.de", true },
{ "adriancitu.com", true },
{ "adriancostin.ro", true },
{ "adrianjensen.com", true },
{ "adrianmejias.com", true },
+ { "adrianobarbosa.xyz", true },
+ { "adrienjacquierbret.com", true },
{ "adrienkohlbecker.com", true },
{ "adriennesmiles.com", true },
{ "adrup.com", true },
@@ -1786,52 +2545,55 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adsbouncycastles.co.uk", true },
{ "adsbtc.org", true },
{ "adsl2meg.fr", true },
+ { "adswoo.com", true },
{ "adtelligent.com", true },
{ "adtgroup.com", true },
{ "adurra.com", true },
{ "aduvi.de", true },
+ { "adv.cr", true },
{ "advaithbot.com", true },
{ "advance.hr", true },
{ "advanced-fleet-services.com", true },
{ "advanced-scribes.com", true },
{ "advanced.info", true },
{ "advanceddieselspokane.com", true },
- { "advanceddisposables.co.uk", true },
- { "advancedoneroofing.com", true },
+ { "advanceddisposables.co.uk", false },
+ { "advancedelectricalservicesqld.com.au", true },
+ { "advancedendoscopycenter.net", true },
{ "advancedprotectionkey.com", true },
{ "advancedprotectionsecuritykey.com", true },
{ "advancedsurgicalconsultantsllc.com", true },
{ "advancedweb.hu", true },
+ { "advancedwriters.com", true },
{ "advanceworx.com", true },
{ "advancis.net", true },
{ "advancyte.com", true },
{ "advantagehomeexteriors.com", true },
+ { "advantagemechanicalinc.com", true },
{ "advara.com", true },
{ "advenacs.com", true },
{ "advenacs.com.au", true },
- { "advenapay.com", true },
{ "advento.bg", true },
{ "adventure-inn.com", true },
- { "adventureally.com", true },
+ { "adventurecreators.com", true },
{ "adventuredrives.com", true },
{ "adventureforest.co.nz", true },
{ "adventureforest.de", false },
{ "adventureforest.nz", true },
{ "adventuregamers.com", true },
{ "adventurenow.nl", true },
- { "adventures.de", true },
{ "adventureswithlillie.ca", true },
{ "adventurousway.com", true },
{ "advertis.biz", true },
+ { "adviserplus.com", 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 },
+ { "adware.pl", false },
+ { "adwokatkosterka.pl", true },
{ "adwokatzdunek.pl", true },
{ "adws.io", true },
{ "adxperience.com", true },
@@ -1853,7 +2615,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ae-construction.co.uk", true },
{ "ae-dir.com", true },
{ "ae-dir.org", true },
- { "ae8601.com", true },
+ { "ae86sb.com", true },
+ { "ae86x.com", true },
{ "aebian.org", true },
{ "aecexpert.fr", true },
{ "aedollon.com", true },
@@ -1876,7 +2639,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aereco.com", true },
{ "aergia.eu", true },
{ "aerisnetwork.com", true },
+ { "aerlux.md", true },
{ "aero-pioneer.com", true },
+ { "aero.parts", true },
+ { "aerobasegroup.com", true },
{ "aerobotz.com", true },
{ "aeronautix.com", true },
{ "aeronote.net", true },
@@ -1887,7 +2653,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aerotechcoatings.com", true },
{ "aertel.ie", true },
{ "aessencia.com.br", true },
- { "aestheticdr.org", true },
+ { "aestheticsplus.xyz", true },
{ "aesthetx.com", true },
{ "aestore.by", true },
{ "aeternus.tech", true },
@@ -1897,19 +2663,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aextron.com", true },
{ "aextron.de", true },
{ "aextron.org", true },
- { "af-tech.cz", true },
{ "afavre.io", true },
{ "afb24.de", true },
- { "afbeelding.im", true },
- { "afbeeldinguploaden.nl", true },
- { "afcmrs.org", true },
+ { "afcmrs.org", false },
{ "afcompany.it", true },
- { "afcurgentcarelyndhurst.com", true },
{ "aff.moe", true },
+ { "affairefacile.net", true },
{ "affarsnatverk.nu", true },
{ "affichagepub3.com", true },
{ "affiliatefeatures.com", true },
- { "affiliateroyale.com", true },
{ "affiliatetest.azurewebsites.net", true },
{ "affilie.de", true },
{ "affinitysync.com", true },
@@ -1917,13 +2679,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "affittacamere.roma.it", true },
{ "affittialmare.it", true },
{ "affittisalento.it", true },
- { "affloc.com", true },
{ "affordableazdivorce.com", true },
- { "affordableblindsexpress.com", true },
{ "affordableenvironmental.net", true },
{ "affordablehealthquotesforyou.com", true },
- { "affordablekilimanjaro.com", true },
{ "affordablemudjacking.com", true },
+ { "affordablepapers.com", true },
{ "affordableracingparts.com.au", true },
{ "affpass.com", true },
{ "affping.com", true },
@@ -1937,15 +2697,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aflam4you.tv", true },
{ "aflfreebets.com", true },
{ "aflowershop.ca", true },
- { "afmt.fr", true },
{ "afmtevents.com", true },
- { "afonso.io", true },
{ "afp548.com", true },
{ "afri.cc", true },
{ "africa.dating", true },
{ "african-bay.de", true },
{ "africanexponent.com", true },
{ "africanimpact.com", true },
+ { "africankitchen.gallery", true },
{ "africantourer.com", true },
{ "afrikarl.de", true },
{ "afrodigital.uk", true },
@@ -1957,27 +2716,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "afterhate.fr", true },
{ "afva.net", true },
{ "afwd.international", true },
- { "ag-websolutions.de", true },
{ "ag8-game.com", true },
+ { "ag88.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 },
- { "agencewebstreet.com", true },
{ "agenciadeempregosdourados.com.br", true },
{ "agenciafiscal.pe", true },
- { "agenciamdg.com.br", true },
+ { "agenciamseo.com.br", true },
{ "agencyinmotion.com", true },
{ "agenda-loto.net", false },
{ "agenda21senden.de", true },
{ "agendatelefonica.com.br", true },
- { "agendazilei.com", true },
{ "agent-grow.com", true },
{ "agentprocessing.com", true },
+ { "agentur-pottkinder.de", true },
{ "agenziaimmobiliarezeta.it", true },
+ { "agenziapubblicitaria.milano.it", true },
+ { "agenziapubblicitaria.roma.it", true },
+ { "ageragrosirdistro.com", true },
{ "agfmedia.com", true },
{ "agia.ad", true },
{ "agiapelagia.com", true },
@@ -1988,23 +2749,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "agileecommerce.com.br", true },
{ "agileui.com", true },
{ "agiley.se", true },
+ { "agilicus.ca", true },
+ { "agilicus.com", true },
{ "agilizing.us", true },
{ "agilob.net", true },
{ "aging.gov", true },
{ "agingstats.gov", true },
{ "aginion.net", true },
- { "agiserv.fr", true },
{ "agliamici.it", true },
{ "agnesk.blog", true },
{ "agoodmind.com", true },
{ "agoravox.fr", true },
{ "agoravox.it", true },
{ "agoravox.tv", true },
- { "agostinhoenascimento.com.br", true },
{ "agotnes.com", true },
{ "agouraelectrical.com", true },
{ "agouraelectrician.com", true },
- { "agouraexteriorlighting.com", true },
{ "agourahillselectric.com", true },
{ "agourahillselectrical.com", true },
{ "agourahillselectrician.com", true },
@@ -2015,7 +2775,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "agouralandscapelighting.com", true },
{ "agouralighting.com", true },
{ "agouraoutdoorlighting.com", true },
- { "agowa338.de", true },
+ { "agpideas.com", true },
{ "agr.asia", true },
{ "agrajag.nl", true },
{ "agrarking.com", true },
@@ -2024,10 +2784,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
{ "agroline.by", true },
@@ -2036,21 +2794,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "agsb.ch", true },
{ "agscinemas.com", true },
{ "agscinemasapp.com", true },
+ { "aguarani.com.br", true },
+ { "aguijara.com", true },
{ "agung-furniture.com", true },
{ "agwa.name", true },
{ "agy.cl", true },
{ "ahawkesrealtors.com", true },
{ "ahd.com", false },
{ "ahegao.ca", true },
- { "aheng.me", true },
{ "ahero4all.org", true },
{ "ahkubiak.ovh", false },
{ "ahlaejaba.com", true },
{ "ahlz.sk", true },
{ "ahmad.works", true },
- { "ahmadly.com", true },
+ { "ahmd.io", true },
{ "ahmedabadflowermall.com", true },
{ "ahmedcharles.com", true },
+ { "ahmedknowmadic.com", true },
{ "ahmerjamilkhan.org", true },
{ "ahmetozer.org", true },
{ "ahosi.com", true },
@@ -2058,17 +2818,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ahoyconference.com", true },
{ "ahtuxpk.ru", true },
{ "ahughes03.com", true },
- { "ahxxm.com", true },
+ { "ahxxm.com", false },
{ "ai-english.jp", true },
{ "ai-soft.co.jp", true },
{ "ai.gov", true },
- { "ai.je", true },
{ "aia.de", true },
{ "aianipid.ee", true },
{ "aiasesoriainmobiliaria.com", true },
{ "aibenzi.com", true },
{ "aibiying.com", true },
{ "aicial.co.uk", true },
+ { "aicv.club", true },
{ "aid-web.ch", true },
{ "aidanapple.com", true },
{ "aidanmitchell.co.uk", true },
@@ -2076,7 +2836,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aidanmontare.net", true },
{ "aidanpr.com", true },
{ "aidanpr.net", true },
- { "aidarikako.com", true },
{ "aiden.link", true },
{ "aidhan.net", true },
{ "aidi-ahmi.com", true },
@@ -2097,7 +2856,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aikenpromotions.com", true },
{ "aiki.de", true },
{ "aiki.do", true },
- { "aiki.tk", true },
{ "aikido-club-limburg.de", true },
{ "aikido-kiel.de", true },
{ "aikido-linz.at", true },
@@ -2112,7 +2870,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aimonline.nl", true },
{ "aimotive.com", true },
{ "aimstoreglobal.com", true },
- { "ainutrition.co.uk", true },
+ { "ainfographie.com", true },
+ { "aintevenmad.ch", true },
{ "ainvest.de", true },
{ "aiois.com", true },
{ "aipbarcelona.com", true },
@@ -2194,7 +2953,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "airbossofamerica.com", true },
{ "airclass.com", true },
{ "aircomms.com", true },
- { "airconsboksburg.co.za", true },
{ "airductclean.com", false },
{ "airductcleaning-fresno.com", true },
{ "airductcleaninggrandprairie.com", true },
@@ -2202,12 +2960,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "airdur.eu", true },
{ "aireaseleaks.org", true },
{ "airetvie.com", true },
+ { "airfax.io", true },
{ "airhart.me", true },
{ "airhelp.com", true },
{ "airhorn.de", true },
{ "airi-tabei.com", true },
{ "airicy.com", true },
{ "airikai.com", true },
+ { "airlectrical-airconditioning.com.au", true },
{ "airlibre-parachutisme.com", true },
{ "airmail.cc", true },
{ "airmaxinflatables.com", true },
@@ -2215,12 +2975,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "airpbx.com", true },
{ "airplay-inflatable-hire.co.uk", true },
{ "airplayradio.nl", true },
- { "airportlimototoronto.com", true },
- { "airpurifierproductsonline.com", true },
+ { "airport-charlotte.com", true },
+ { "airportal.cn", true },
{ "airrestoration.ch", true },
+ { "airship.com", true },
+ { "airslate.com", true },
{ "airsnore.com", true },
{ "airsoft.ch", true },
{ "airswap.io", true },
+ { "airtec-france.fr", true },
{ "airtimerewards.co.uk", true },
{ "airtoolaccessoryo.com", true },
{ "airvpn.org", true },
@@ -2234,23 +2997,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ais.fashion", true },
{ "aisance-co.com", true },
{ "aisi316l.net", true },
+ { "aisin.ae", true },
{ "aistockcharts.com", true },
{ "aistrope.com", true },
{ "ait.com.ar", true },
{ "aiticon.com", true },
{ "aitosoftware.com", true },
{ "aiutodomestico.ch", true },
- { "aivd.lol", true },
+ { "aivan.ai", true },
{ "aiwdirect.com", true },
+ { "aiwosq.cn", true },
{ "aixvox.com", false },
{ "aizxxs.com", true },
- { "ajapaik.ee", true },
+ { "aizxxs.net", true },
{ "ajarope.com", true },
{ "ajaxed.net", true },
{ "ajbouncycastles.co.uk", true },
- { "ajces.com", true },
{ "ajdiaz.me", true },
{ "ajeventhire.co.uk", true },
+ { "ajgroup-me.com", true },
+ { "ajhstamps.co.uk", true },
{ "ajiaojr.info", true },
{ "ajiaojr.io", true },
{ "ajiaojr.me", true },
@@ -2258,6 +3024,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ajiboye.com", true },
{ "ajnasz.hu", true },
{ "ajsb85.com", true },
+ { "ajwebsolutions.com", true },
{ "ak-varazdin.hr", true },
{ "ak-webit.de", true },
{ "aka.ms", true },
@@ -2268,7 +3035,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "akamon.ac.jp", true },
{ "akaoma.com", true },
{ "akasha.world", true },
- { "akazakov.info", true },
{ "akdusekbudil.cz", true },
{ "akelius.de", false },
{ "akfoundationindia.com", true },
@@ -2276,19 +3042,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "akhomesforyou.com", true },
{ "akihito.com", true },
{ "akijo.de", true },
- { "akilli-devre.com", true },
{ "akiym.com", true },
{ "akj.io", true },
{ "akkbouncycastles.co.uk", true },
{ "akkeylab.com", true },
+ { "akoofs.com", true },
{ "akostecki.de", true },
{ "akovana.com", true },
- { "akoww.de", false },
{ "akoya.fi", true },
{ "akplates.org", true },
{ "akpwebdesign.com", true },
{ "akr.io", true },
{ "akr.services", true },
+ { "akrep.com", true },
{ "akronet.cz", false },
{ "akropol.cz", false },
{ "akropolis-ravensburg.de", true },
@@ -2298,7 +3064,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "akshi.in", true },
{ "aktin.cz", true },
{ "aktin.sk", true },
- { "aktiv-naturheilmittel.at", true },
+ { "aktion-vielfalt.ch", true },
+ { "aktiv-naturheilmittel.at", false },
{ "aktiv-naturheilmittel.ch", true },
{ "aktiv-naturheilmittel.de", true },
{ "aktivace.eu", true },
@@ -2306,15 +3073,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aktuelle-uhrzeit.at", true },
{ "akuislam.com", true },
{ "akukas.com", true },
- { "akustik.tech", true },
+ { "akupunktur-akupunktoer.dk", true },
+ { "akuseorangtraveler.com", true },
+ { "akuston.eu", true },
{ "akutun.cl", true },
{ "akvorrat.at", true },
- { "akyildiz.net", true },
{ "al3366.tech", true },
+ { "al3abmizo.com", true },
{ "al3xpro.com", true },
{ "alab.space", true },
{ "alabamadebtrelief.org", true },
{ "alaboard.com", true },
+ { "alabordage.fr", true },
+ { "alacriti.com", true },
{ "aladdin.ie", true },
{ "aladdinschools.appspot.com", true },
{ "alainbaechlerphotography.ch", true },
@@ -2325,30 +3096,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alainwolf.ch", true },
{ "alainwolf.net", true },
{ "alair.cn", false },
- { "alamancetv.com", true },
+ { "alamgir.works", true },
+ { "alamowellnessalliance.com", true },
{ "alanberger.me.uk", true },
{ "alanhua.ng", true },
{ "alaninkenya.org", true },
{ "alaricfavier.eu", false },
+ { "alarmat.pl", true },
{ "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 },
+ { "albaniareiser.no", true },
+ { "albareport.com", true },
{ "albbounce.co.uk", true },
{ "albersdruck.de", true },
{ "albertathome.org", true },
- { "albertbogdanowicz.pl", true },
{ "albertcuyp-markt.amsterdam", true },
{ "albertinum-goettingen.de", true },
+ { "albilaga.id", true },
{ "albion2.org", true },
{ "alboweb.nl", true },
{ "albrocar.com", true },
{ "alca31.com", true },
+ { "alcatelonetouch.us", true },
{ "alchimic.ch", true },
{ "alcnutrition.com", true },
{ "alco-united.com", true },
@@ -2357,7 +3132,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alcouponest.com", true },
{ "aldiabcs.com", true },
{ "aldien.com.br", true },
- { "aldo-vandini.de", true },
{ "aldomedia.com", true },
{ "aldorr.net", false },
{ "aldous-huxley.com", true },
@@ -2377,23 +3151,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alertwire.com", true },
{ "alesia-formation.fr", true },
{ "alessandroonline.com.br", true },
+ { "alessandrotravel.com", true },
{ "aletm.it", true },
{ "alex-ross.co.uk", true },
{ "alex4386.us", true },
{ "alex97000.de", true },
{ "alexander-beck.eu", true },
{ "alexanderb.info", true },
- { "alexandermuetzel.de", true },
+ { "alexandercanton.com", true },
{ "alexanderneng.de", true },
{ "alexanderschimpf.de", true },
{ "alexandra-schulze.de", true },
{ "alexandrastorm.com", true },
{ "alexandre-blond.fr", true },
- { "alexandrefa.ovh", true },
{ "alexbaker.org", true },
{ "alexberts.ch", true },
{ "alexbogovich.com", true },
- { "alexbresnahan.com", true },
{ "alexcoman.com", true },
{ "alexdaniel.org", true },
{ "alexey-shamara.ru", true },
@@ -2401,16 +3174,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alexfabian.myftp.org", true },
{ "alexgaynor.net", true },
{ "alexgebhard.com", true },
+ { "alexglover.co.uk", true },
{ "alexhalderman.com", true },
{ "alexhd.de", true },
- { "alexio.ml", true },
{ "alexisabarca.com", true },
{ "alexiskoustoulidis.com", true },
- { "alexkott.com", true },
+ { "alexjett.com", true },
+ { "alexlambertz.de", true },
{ "alexlouden.com", true },
{ "alexmerkel.com", true },
{ "alexmerkel.me", true },
{ "alexmerkel.xyz", true },
+ { "alexmroberts.net", true },
{ "alexn.org", true },
{ "alexpavel.com", true },
{ "alexpnixon.com", true },
@@ -2426,18 +3201,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alexvdveen.nl", true },
{ "alexvetter.de", true },
{ "alexwardweb.com", true },
- { "alexwilliams.tech", true },
{ "alexyang.me", true },
{ "alfa-tech.su", true },
+ { "alfaproweb.fr", true },
{ "alfred-figge.de", true },
- { "algbee.com", true },
+ { "alfredapp.com", true },
+ { "alftrain.com", true },
+ { "algawell.com", true },
{ "algeriepart.com", true },
{ "alghanimcatering.com", true },
{ "algoaware.eu", true },
{ "algoentremanos.com", true },
- { "algofactory.de", true },
{ "algolia.com", true },
- { "algorithmofsuccess.com", true },
+ { "algorithmic.ml", true },
{ "algoritmus-uspechu.cz", true },
{ "alhost.ml", true },
{ "aliacraft.net", true },
@@ -2451,13 +3227,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alicestudio.it", true },
{ "alicetone.net", true },
{ "alieke.design", true },
+ { "alien6.com", true },
{ "alienation.biz", true },
{ "alienflight.com", true },
{ "alienslab.net", true },
{ "alienstat.com", true },
{ "alienvision.com.br", true },
+ { "alighierirescaldina.it", true },
{ "alignrs.com", true },
- { "alijammusic.com", true },
+ { "alijammusic.com", false },
{ "alikulov.me", true },
{ "alinasmusicstudio.com", true },
{ "alinbu.net", true },
@@ -2465,17 +3243,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alisonisrealestate.com", true },
{ "alisonlitchfield.com", true },
{ "alistairstowing.com", true },
+ { "aliv.biz", true },
{ "alix-board.de", true },
{ "alize-theatre.ch", true },
{ "aljaspod.com", true },
{ "aljaspod.hu", true },
- { "aljaspod.net", true },
+ { "aljoschairmer.de", true },
{ "aljweb.com", true },
{ "alkacoin.net", true },
{ "all-connect.net", false },
{ "all-fashion-schools.com", true },
{ "all-markup-news.com", true },
{ "all4hardware4u.de", true },
+ { "all878.com", true },
{ "allaboutfunuk.com", true },
{ "allaboutswing.co.uk", true },
{ "allaboutswing.com", true },
@@ -2488,6 +3268,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "allangirvan.net", true },
{ "allarmi.roma.it", true },
{ "allbenjoy.de", true },
+ { "allbetgame.cn", true },
+ { "allbetgaming.com", true },
+ { "allbigdicks.com", true },
{ "allbounceandplay.co.uk", true },
{ "allbouncesurrey.co.uk", true },
{ "allbrandbrand.com", true },
@@ -2496,33 +3279,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "allcapa.org", true },
{ "allcarecorrectionalpharmacy.com", true },
{ "allcarepharmacy.com", true },
+ { "allcinema.jp", true },
+ { "allcleaningservice.org", true },
{ "allcleanservices.ca", true },
{ "allcloud.com", true },
{ "allcovered.nl", true },
{ "alldewall.de", true },
+ { "alldolledupstore.com", true },
+ { "alle-zonvakanties.nl", true },
{ "alle.bg", true },
{ "allemoz.com", true },
{ "allemoz.fr", true },
{ "allenscaravans.co.uk", true },
{ "allensun.org", true },
+ { "allerstorfer.at", true },
{ "allesisonline.nl", true },
{ "alleskomtgoed.org", true },
+ { "allesovertech.nl", true },
{ "allesrocknroll.de", true },
{ "allforyou.at", true },
{ "allfundsconnect.com", true },
{ "allgaragefloors.com", true },
{ "allgreenturf.com.au", true },
+ { "allhard.org", true },
{ "alliance-psychiatry.com", true },
- { "alliances-faq.de", true },
{ "alliances-globalsolutions.com", true },
{ "alliedfrozenstorage.com", true },
- { "alligatorge.de", true },
{ "allinagency.com", true },
{ "allincoin.shop", true },
{ "allis.studio", true },
{ "allius.de", true },
{ "alljamin.com", true },
- { "allmebel.ru", true },
+ { "allladyboys.com", true },
+ { "allmemy.com", true },
{ "allmend-ru.de", true },
{ "allmousepads.com", true },
{ "allns.fr", true },
@@ -2531,18 +3320,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "allontanamentovolatili.it", true },
{ "allontanamentovolatili.milano.it", true },
{ "alloutofgum.com", true },
+ { "alloutsec.com", true },
{ "alloverthehill.com", true },
+ { "allphaseclean.com", true },
+ { "allplayer.tk", true },
{ "allpointsblog.com", true },
{ "allpointsheating.com", true },
{ "allproptonline.com", true },
+ { "allpussynow.com", true },
{ "allrad-buck.de", true },
- { "allram.one", true },
{ "allroundpvp.net", true },
{ "allroundtechnology.com", true },
{ "allroundtechnology.nl", true },
{ "allsaints.church", true },
{ "allsearch.io", true },
+ { "allseasonswaterproofing.com", true },
{ "allstakesupply.com.au", true },
+ { "allstarautokiaparts.com", true },
{ "allstarcashforcars.com", true },
{ "allstarquilts.com", true },
{ "allsun.online", true },
@@ -2552,6 +3346,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "allterrainfence.com", true },
{ "allthecryptonews.com", true },
{ "alltherooms.com", true },
+ { "alltherooms.es", true },
{ "allthethings.co.nz", true },
{ "allthings.me", true },
{ "allthingssquared.com", true },
@@ -2563,6 +3358,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "allweatherlandscaping.net", true },
{ "almaatlantica.com", true },
{ "almamet.com", true },
+ { "almatinki.com", true },
{ "almavios.com", false },
{ "almayadeen.education", true },
{ "almenrausch-pirkhof.de", true },
@@ -2573,38 +3369,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alonas.ml", true },
{ "alonas.ovh", true },
{ "alonetone.com", true },
+ { "alov.blog", true },
{ "alp.od.ua", true },
{ "alpca.org", true },
{ "alpencam.com", true },
{ "alpencams.com", true },
{ "alpencams.net", true },
{ "alpengreis.ch", true },
- { "alpenjuice.com", true },
{ "alpertron.com.ar", true },
{ "alpes-deis-tools.com", true },
- { "alpha-assistant.com", true },
{ "alpha-force.net", false },
{ "alpha.ch", true },
{ "alpha88uat.com", true },
{ "alphaantileak.net", true },
{ "alphabetsigns.com", true },
{ "alphabouncycastles.co.uk", true },
- { "alphabrock.cn", true },
{ "alphachat.net", true },
- { "alphadote.com", true },
+ { "alphadefense.co.za", true },
{ "alphaetomega3d.fr", true },
{ "alphafiduciaryservices.ch", true },
- { "alphafitnesslibya.com", true },
- { "alphagateanddoor.com", true },
{ "alphahunks.com", true },
{ "alphainflatablehire.com", true },
{ "alphaman.ooo", true },
{ "alphanodes.com", true },
{ "alphapengu.in", true },
+ { "alphapoker.ru", true },
{ "alpharotary.com", true },
{ "alphasall.com", true },
{ "alphassl.de", true },
- { "alphatrash.de", true },
{ "alphavote-avex.com", true },
{ "alphavote.com", true },
{ "alphera.nl", true },
@@ -2612,13 +3404,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alphipneux.fr", true },
{ "alpinechaletrental.com", true },
{ "alpinehighlandrealty.com", true },
- { "alpineplanet.com", true },
{ "alpinepubliclibrary.org", true },
{ "alpinestarmassage.com", true },
- { "alpinetrek.co.uk", true },
- { "alpiniste.fr", true },
+ { "alplogopedia.it", true },
{ "alpstarentaisetaxi.com", true },
{ "alpstarentaisetaxi.fr", true },
+ { "alquds.edu", true },
{ "alquiaga.com", true },
{ "alrait.com", true },
{ "alre-outillage.fr", true },
@@ -2632,14 +3423,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "altair.fi", true },
{ "altapina.com", false },
{ "altaplana.be", true },
+ { "altaynews.kz", true },
+ { "altbinaries.com", true },
+ { "altco.group", true },
+ { "altea-pep18.com", true },
{ "altedirect.com", true },
+ { "alteiria.fr", true },
{ "alter-news.fr", true },
{ "alterbaum.net", true },
+ { "alteria.xyz", true },
{ "alternador.com.br", true },
{ "alternative.bike", true },
{ "alternative.hosting", true },
{ "alternativebit.fr", true },
- { "alternativedev.ca", true },
{ "alternativehosting.ca", true },
{ "alternativehosting.com", true },
{ "alternativeinternet.ca", true },
@@ -2649,6 +3445,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "altes-sportamt.de", true },
{ "altesses.eu", true },
{ "altestore.com", true },
+ { "altijdleroy.nl", true },
+ { "altijdleroy.online", true },
{ "altisdev.com", true },
{ "altkremsmuensterer.at", true },
{ "altmaestrat.es", true },
@@ -2658,21 +3456,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "altopartners.com", true },
{ "altopia.com", true },
{ "altphotos.com", true },
- { "alts.li", true },
+ { "altrui.st", true },
{ "altstipendiaten.de", true },
+ { "alttrackr.com", true },
{ "altunbas.info", true },
+ { "altweaver.com", true },
{ "aluminium-giesserei.de", true },
{ "alumni-kusa.jp", true },
{ "alupferd.de", true },
- { "aluro.info", true },
+ { "aluroof.eu", true },
{ "alvcs.com", true },
- { "alviano.com", true },
{ "alvicom.hu", true },
+ { "alvin.cool", true },
{ "alvosec.com", true },
{ "alwaysdry.com.au", true },
{ "alwayslookingyourbest.com", true },
{ "alwaysmine.fi", true },
- { "alxpresentes.com.br", true },
+ { "alxlegal.com", true },
{ "alxu.ca", true },
{ "alyoung.com", true },
{ "alza.at", true },
@@ -2683,16 +3483,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alza.sk", true },
{ "alzashop.com", true },
{ "alzonaprinting.com", true },
+ { "am-39.com", true },
{ "am-dd.com", true },
{ "am-executive-consulting.com", true },
+ { "am-liaotian.com", true },
+ { "am156.com", true },
+ { "am22i6xaf1m2a5m9k.xyz", true },
{ "am2s.fr", true },
- { "am3.se", true },
+ { "am5039.com", true },
+ { "am5199.com", true },
+ { "am5566m.com", true },
+ { "am8213.com", true },
+ { "am9588.com", true },
+ { "am9d104.com", true },
{ "ama.ne.jp", true },
+ { "amaderelectronics.com", true },
+ { "amadoraslindas.com", true },
{ "amadvice.com", true },
{ "amagdic.com", true },
{ "amagical.net", false },
{ "amaiz.com", true },
- { "amalfi5stars.com", true },
+ { "amal2019.com", true },
{ "amalfilapiazzetta.it", true },
{ "amalfipositanoboatrental.com", true },
{ "amalfirock.it", true },
@@ -2701,11 +3512,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amanatrustbooks.org.uk", true },
{ "amandadamsphotography.com", true },
{ "amandasage.ca", true },
+ { "amandaworldstudies.com", true },
+ { "amanet.ro", true },
{ "amani-kinderdorf.de", true },
+ { "amaranthinewanderlust.com", true },
{ "amardham.org", true },
{ "amaresq.com", true },
- { "amartinz.at", true },
- { "amateurchef.co.uk", true },
+ { "amateri.com", true },
+ { "amateurpornhours.com", true },
{ "amateurradionotes.com", true },
{ "amateurvoicetalent.com", true },
{ "amati.solutions", true },
@@ -2713,9 +3527,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amatsuka.com", true },
{ "amauf.de", true },
{ "amautorepairwa.com", true },
+ { "amazetimberfurniture.com.au", true },
{ "amazili-communication.com", true },
{ "amazing-castles.co.uk", true },
- { "amazinginflatables.co.uk", true },
{ "amazingraymond.com", true },
{ "amazingraymond.com.au", true },
{ "amb.tf", true },
@@ -2725,6 +3539,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ambholding-usedcars.be", true },
{ "ambiente.one", true },
{ "ambiq.nl", true },
+ { "ambulanza.roma.it", true },
+ { "ambulari.cz", true },
{ "amcangroup.com", true },
{ "amcchemical.com", true },
{ "amcfirst.com", true },
@@ -2739,27 +3555,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ameego.nl", true },
{ "ameego.org", true },
{ "amees.me", false },
+ { "ameliemarieintokyo.com", true },
{ "amello.de", true },
{ "amend-friseur-schwabing.de", true },
{ "amendine.fr", true },
+ { "amendoeiraresort.com", true },
{ "america.gov", true },
{ "americafamilylawcenter.org", true },
{ "american-school-search.com", true },
{ "american.dating", true },
{ "americandetour.com", true },
{ "americanfoundationbr.com", true },
- { "americanindiancoc.org", true },
{ "americanindiannursing.com", true },
{ "americanmediainstitute.com", true },
+ { "americanwater.lk", true },
{ "americasbasementcontractor.com", true },
{ "americasdirector.com", true },
{ "americkykongres.cz", true },
- { "amerigroup.com", true },
{ "ameriikanpoijat.org", true },
{ "amerika-forum.de", true },
{ "amerimarkdirect.com", true },
{ "amerimex.cc", true },
- { "ames.gq", true },
{ "amesgen.de", true },
{ "amesvacuumrepair.com", true },
{ "amethystdevelopment.co.uk", true },
@@ -2768,21 +3584,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amg-microwave.com", true },
{ "amh-entertainments.co.uk", true },
{ "ami-de-bastanes.fr", true },
+ { "amianto.roma.it", true },
{ "amica-travel.com", true },
{ "amica.it", true },
{ "amicalecanyon.ch", true },
{ "amiciidogrescue.org.uk", true },
- { "amicimar.it", true },
{ "amiciperlatesta.it", true },
- { "amielle.com", true },
- { "amielucha.com", true },
{ "amifoundation.net", true },
{ "amikootours.com", true },
- { "aminafrance.com", true },
{ "amineptine.com", true },
{ "aminorth.com", true },
{ "aminullrouted.com", true },
{ "amionvpn.com", true },
+ { "amir-heinisch.de", true },
{ "amirautos.com", false },
{ "amirmahdy.com", true },
{ "amisderodin.fr", true },
@@ -2791,6 +3605,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amitpatra.com", true },
{ "amiu.org", true },
{ "amj74-informatique.fr", true },
+ { "amleather.pl", true },
+ { "amm6e.com", true },
{ "ammanagingdirectors.com", true },
{ "amministratore.biz", true },
{ "amministratore.roma.it", true },
@@ -2798,6 +3614,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amnesty-bf.org", true },
{ "amnesty.org.au", true },
{ "amnesy.fr", true },
+ { "amobileway.co.uk", true },
+ { "amok8.am", true },
{ "amokinio.com", true },
{ "amoozesh98.com", true },
{ "amoozesh98.ir", true },
@@ -2806,36 +3624,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amosng.com", true },
{ "ampersandnbspsemicolon.com", true },
{ "amphetamines.org", true },
- { "amphibo.ly", true },
+ { "amplead.com", true },
{ "ampleroads.com", true },
- { "ampol-agd.pl", true },
{ "ampproject.com", true },
{ "ampproject.org", true },
{ "amrcaustin.com", true },
{ "amrcla.com", true },
+ { "amruta.org", true },
{ "ams-web-qa.azurewebsites.net", true },
{ "ams.co.rs", true },
{ "amsportuk.com", true },
{ "amstelland.com", true },
+ { "amstelveentje.nl", true },
{ "amsterdamian.com", true },
{ "amuq.net", true },
{ "amuraimpianti.it", true },
+ { "amvip9.com", true },
{ "amyfoundhermann.com", true },
{ "amyharrisonline.com", true },
{ "amyria.jp", true },
- { "amyrussellhair.com", true },
{ "amyyeung.com", true },
- { "amzanalyzer.com", true },
{ "amzn.rocks", true },
{ "an-alles-gedacht.de", true },
+ { "an7hrax.se", true },
{ "anabolic.co", false },
{ "anacreon.de", true },
{ "anadiyogacentre.com", true },
- { "anaethelion.fr", true },
{ "anaiscoachpersonal.es", true },
+ { "anaisfae.art", true },
+ { "anakin.ca", true },
+ { "analangelsteen.com", true },
{ "analbleachingguide.com", true },
{ "analgesia.net", true },
+ { "analisilaica.it", true },
{ "analogist.net", true },
+ { "analteengirls.net", true },
{ "analytics-shop.com", true },
{ "analyticsinmotion.com", true },
{ "analyticum.at", true },
@@ -2843,11 +3666,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "analyticum.de", true },
{ "analyticum.eu", true },
{ "analyticum.net", true },
- { "ananas.gq", true },
{ "ananke.io", true },
{ "anankecosmetics.com", true },
{ "anantshri.info", true },
{ "ananyoo.com", true },
+ { "anarajaoui.ma", true },
{ "anarchistischegroepnijmegen.nl", false },
{ "anastasia-shamara.ru", true },
{ "anatoray.com", true },
@@ -2887,39 +3710,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "andreahruby.it", true },
{ "andreamcnett.com", true },
{ "andreas-hecht.com", true },
+ { "andreas-kluge.eu", true },
{ "andreaseracleous.com", true },
{ "andreasfeusi.ch", true },
{ "andreashecht-blog.de", true },
+ { "andreasjanker.de", true },
{ "andreaskrasa.com", true },
{ "andreaslicht.nl", true },
- { "andreasmuelhaupt.de", true },
{ "andreasolsson.se", true },
{ "andree.cloud", true },
{ "andrehansen.de", true },
{ "andrei-nakov.org", true },
- { "andrejbenz.com", true },
{ "andrelauzier.com", true },
{ "andreoliveira.io", true },
+ { "andrespaz.com", true },
{ "andreundnina.de", true },
{ "andrew.fi", true },
{ "andrew.london", true },
{ "andrewbdesign.com", true },
+ { "andrewbennett.ltd", true },
{ "andrewdaws.io", true },
{ "andrewensley.com", true },
- { "andrewhowden.com", true },
{ "andrewimeson.com", true },
{ "andrewin.ru", true },
- { "andrewletson.com", true },
- { "andrewmichaud.com", true },
- { "andrewmichaud.me", true },
+ { "andrewlarson.org", true },
{ "andrewpeng.net", true },
{ "andrewprokos.com", true },
+ { "andrewpucci.com", true },
{ "andrewrgoss.com", true },
{ "andrewryno.com", true },
{ "andrewsun.com", true },
+ { "andrewtasso.com", true },
{ "andrewtchin.com", true },
{ "andrewx.net", true },
- { "andrezadnik.com", true },
{ "andrisilberschmidt.ch", true },
{ "andro2id.com", true },
{ "andro4all.com", true },
@@ -2929,26 +3752,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "androidhry.cz", true },
{ "androidkatalog.cz", true },
{ "androidnovinky.cz", true },
- { "androidservicetool.com", true },
{ "androidsis.com", true },
{ "androidtamer.com", true },
{ "androidtelefony.cz", true },
{ "androidzone.me", true },
{ "andromeda.se", true },
{ "andromedacenter.com", true },
- { "andronika.net", false },
+ { "androtech.xyz", true },
{ "androticsdirect.com", true },
{ "androzoom.com", true },
{ "andruvision.cz", true },
{ "andsat.org", true },
- { "andschwa.com", false },
- { "andso.cn", true },
+ { "andschwa.com", true },
{ "anduril.de", true },
{ "anduril.eu", true },
{ "andybrett.com", true },
{ "andyc.cc", true },
+ { "andycraftz.eu", true },
{ "andycrockett.io", true },
- { "andymoore.info", true },
{ "andys-place.co.uk", true },
{ "andyt.eu", true },
{ "andzia.art.pl", true },
@@ -2963,8 +3784,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "anextraordinaryday.net", true },
{ "angehardy.com", true },
{ "angel-body.com", true },
- { "angelcojuelo.com", true },
+ { "angelcloudworld.com", true },
{ "angelesydemonios.es", true },
+ { "angeletakis.net", true },
{ "angelicare.co.uk", true },
{ "angelinahair.com", true },
{ "angeljmadrid.com", true },
@@ -2992,13 +3814,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "anhaffen.lu", true },
{ "ani-man.de", true },
{ "anicam.fr", true },
- { "animacurse.moe", true },
{ "animaemundi.be", true },
{ "animal-liberation.com", true },
{ "animal-rights.com", true },
{ "animalistic.io", true },
{ "animaltesting.fr", true },
- { "animan.ca", true },
{ "animationsmusicales.ch", true },
{ "anime-culture.com", true },
{ "anime-rg.com", true },
@@ -3008,25 +3828,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "anime1.moe", true },
{ "anime1.pw", true },
{ "animeai.com", true },
+ { "animeclub.in.ua", true },
+ { "animefever.tv", true },
+ { "animefire.net", true },
{ "animefluxxx.com", true },
{ "animeinsights.net", true },
{ "animeone.me", true },
+ { "animes-portal.info", true },
{ "animesharp.com", true },
{ "animetriad.com", true },
{ "animojis.es", true },
{ "animorphsfanforum.com", true },
{ "anipassion.com", false },
{ "anitaalbersen.nl", true },
+ { "anitaxcph.dk", true },
{ "anitube.ch", true },
{ "aniwhen.com", true },
+ { "anjocerdena.com", true },
{ "anjoola.com", true },
{ "ankane.org", true },
+ { "ankaraevdenevenakliyat.name.tr", true },
{ "ankarakart.com.tr", true },
{ "ankaraprofesyonelwebtasarim.com", true },
{ "ankaraseo.name.tr", true },
{ "ankarauzmanlarnakliyat.com", true },
- { "ankarayilmaznakliyat.com", true },
- { "ankarayucelnakliyat.com", true },
+ { "ankitha.in", true },
{ "ankitpati.in", true },
{ "ankiuser.net", true },
{ "ankiweb.net", true },
@@ -3040,10 +3866,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "anlovegeek.net", true },
{ "anna.info", true },
{ "annaenemma.nl", true },
- { "annafiore.com.br", true },
+ { "annalitvinova.pro", true },
{ "annangela.moe", true },
{ "annarokina.com", true },
- { "annasvapor.se", true },
{ "annawagner.pl", true },
{ "annedaniels.co.uk", true },
{ "anneeden.de", true },
@@ -3052,16 +3877,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "annema.biz", true },
{ "annemakeslovelycandles.co.uk", true },
{ "annetta.com", true },
+ { "annetta.net", true },
{ "annettewindlin.ch", true },
{ "annevankesteren.nl", true },
{ "anniversary-cruise.com", true },
{ "annmariewaltsphotography.com", true },
{ "annonasoftware.com", true },
{ "annoyingasfuk.com", true },
+ { "anns.eu", true },
{ "annuaire-jcb.com", true },
{ "annuaire-photographe.fr", false },
{ "annunciationbvmchurch.org", true },
- { "anoboy.org", true },
{ "anodas.lt", true },
{ "anohana.org", true },
{ "anojan.com", true },
@@ -3070,15 +3896,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "anoncrypto.org", true },
{ "anoneko.com", true },
{ "anongoth.pl", true },
+ { "anonoriviera.com", true },
+ { "anons.fr", true },
{ "anonym-surfen.de", true },
{ "anonyme-spieler.at", true },
{ "anopan.tk", true },
- { "anorak.tech", true },
{ "another.ch", true },
{ "anotherchef.com", true },
{ "anotherfatgeek.net", true },
{ "anothervps.com", true },
- { "anowicki.pl", false },
+ { "anowicki.pl", true },
{ "ans-delft.nl", true },
{ "ans-ge.ch", true },
{ "ansas.eu", true },
@@ -3088,9 +3915,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ansgar-sonntag.de", true },
{ "ansgarsonntag.de", true },
{ "anshar.eu", true },
+ { "anshumanbiswas.com", true },
{ "ansibeast.net", true },
{ "ansichtssache.at", true },
- { "ansogning-sg.dk", true },
{ "anstaskforce.gov", true },
{ "antama.eu", true },
{ "antama.nl", true },
@@ -3109,12 +3936,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "antennistaroma.it", true },
{ "antennisti.milano.it", true },
{ "antennisti.roma.it", true },
- { "anteprima.info", true },
{ "antfie.com", true },
- { "anthedesign.fr", true },
{ "anthisis.tv", true },
+ { "anthony-bardon.eu", true },
{ "anthony.codes", true },
- { "anthonycarbonaro.com", true },
+ { "anthonyellis.com", true },
{ "anthonyfontanez.com", true },
{ "anthonygaidot.fr", true },
{ "anthonyvadala.me", true },
@@ -3124,12 +3950,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "antiaz.com", true },
{ "anticopyright.com", true },
{ "antiekboerderijgraafland.nl", true },
+ { "antifilter.network", true },
{ "antihype.space", true },
{ "antik-trodelmarkt.de", true },
- { "antikvariat.ru", true },
+ { "antikvariat.ru", false },
{ "antikvarius.ro", true },
{ "antilaserpriority.com", true },
{ "antimine.me", true },
+ { "antincendio.roma.it", true },
{ "antipolygraph.org", true },
{ "antique-pedalcars.ch", true },
{ "antirepressionbayarea.com", true },
@@ -3139,6 +3967,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "antocom.com", true },
{ "antoga.eu", true },
{ "antoinedeschenes.com", true },
+ { "antoineelizabe.com", true },
{ "antoinemary.com", true },
{ "antonchen.com", true },
{ "antonellabb.eu", true },
@@ -3151,31 +3980,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "antragsgruen.de", true },
{ "antroposboutique.it", true },
{ "antroposofica.com.br", true },
- { "anttitenhunen.com", true },
{ "antvklik.com", true },
{ "antyblokada.pl", true },
{ "anulowano.pl", true },
{ "anvartay.com", false },
+ { "anvorte.com", false },
{ "anwalt.us", true },
{ "anwaltsindex.com", true },
{ "anxietyspace.com", true },
{ "anxiolytics.com", true },
+ { "anyad.at", true },
+ { "anyi.in", true },
{ "anymetrix.io", true },
- { "anynode.net", true },
{ "anyon.com", true },
{ "anypeer.net", true },
{ "anyquestions.govt.nz", true },
{ "anystack.xyz", true },
{ "anzeiger.ag", true },
+ { "ao-dev.com", true },
{ "ao2.it", true },
{ "aoa.gov", true },
{ "aoadatacommunity.us", true },
{ "aoaprograms.net", true },
{ "aobeauty.com.au", true },
{ "aod-tech.com", true },
+ { "aoe9.com", true },
{ "aoeuaoeu.com", true },
{ "aofusa.net", true },
{ "aoil.gr", true },
+ { "aokae.com", true },
{ "aopedeure.nl", true },
{ "aopsy.de", true },
{ "aori.com", true },
@@ -3189,18 +4022,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apache-portal.com", true },
{ "apachehaus.de", false },
{ "apachelounge.com", true },
+ { "apachezone.com", true },
{ "apadvantage.com", true },
- { "aparaatti.org", true },
+ { "apartamentosemindaiatuba.com.br", true },
{ "apartmanicg.me", true },
{ "apartment-in-rijeka.com", true },
- { "apartment-natik.fr", true },
{ "apartmentkroatien.at", true },
{ "apartmentregister.com.au", true },
- { "apasaja.tech", true },
{ "apbank.ch", true },
{ "apbox.de", true },
+ { "apc.ec", true },
{ "apcemporium.co.uk", true },
{ "apcube.com", true },
+ { "apdfawl.com", true },
{ "apdx.com", true },
{ "apef.ch", true },
{ "apercloud.es", true },
@@ -3208,12 +4042,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aperturesciencelabs.de", true },
{ "apervita.net", true },
{ "apexitsolutions.ca", true },
- { "apfelcholest.de", true },
{ "apgw.jp", true },
{ "aphelionentertainment.com", true },
{ "aphotrax.eu", true },
{ "api-connect.com", true },
- { "api-geek.com", true },
{ "api.biz.tr", true },
{ "api.cloudflare.com", true },
{ "api.intercom.io", true },
@@ -3223,12 +4055,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "api.xero.com", false },
{ "apiary.blog", true },
{ "apiary.clothing", true },
- { "apiary.shop", true },
{ "apiary.store", true },
{ "apiary.supplies", true },
{ "apiary.supply", true },
+ { "apicruz.com", true },
{ "apila.care", true },
- { "apila.us", true },
{ "apimo.net", true },
{ "apimon.de", true },
{ "apination.com", true },
@@ -3240,6 +4071,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apiu.me", true },
{ "apk.li", true },
{ "apk4fun.com", true },
+ { "apkmod.id", true },
{ "aplikaceproandroid.cz", true },
{ "aplpackaging.co.uk", true },
{ "aplu.fr", true },
@@ -3255,7 +4087,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apoly.de", true },
{ "aponkral.net", true },
{ "aporia.io", true },
- { "aposke.com", true },
{ "aposke.net", true },
{ "aposke.org", true },
{ "apothes.is", true },
@@ -3265,12 +4096,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "app.simpletax.ca", true },
{ "app.yinxiang.com", false },
{ "app2get.de", true },
+ { "appagility.co.nz", true },
{ "appapi.link", true },
{ "apparelfashionwiki.com", true },
{ "appartement-andrea.at", true },
{ "appartement-evolene.net", true },
{ "appartementhaus-badria.de", true },
{ "appartementmarsum.nl", true },
+ { "appassionata.ru", true },
{ "appchive.net", true },
{ "appearance-plm.de", true },
{ "appelaprojets.fr", true },
@@ -3284,7 +4117,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "applelife.ru", true },
{ "applemon.com", true },
{ "appleoosa.com", true },
- { "appleranch.com", true },
{ "applesencia.com", true },
{ "applian.jp", true },
{ "applicationmanager.gov", true },
@@ -3295,47 +4127,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apponic.com", true },
{ "apponline.com", true },
{ "apprank.in", true },
+ { "apprendre-le-russe-avec-ania.fr", true },
{ "apprenticeship.gov", true },
{ "apprenticeships.gov", true },
{ "approbo.com", true },
{ "approvedtreecare.com", true },
- { "apps-perso.com", true },
{ "apps.co", true },
{ "apps.facebook.com", false },
{ "apps.fedoraproject.org", true },
{ "apps.stg.fedoraproject.org", true },
{ "apps4inter.net", true },
{ "appscloudplus.com", true },
+ { "appsdisosa.com", true },
{ "appseccalifornia.org", false },
{ "appsforlondon.com", true },
- { "appshuttle.com", true },
{ "appspace.com", true },
+ { "appspacehosted.com", true },
+ { "appspacestatic.com", true },
+ { "appspaceusercontent.com", true },
{ "appt.ch", true },
{ "apptomics.com", true },
{ "appuals.com", true },
{ "appui-de-fenetre.fr", true },
{ "appveyor.com", true },
- { "appxcrypto.com", true },
{ "appzoojoo.be", true },
{ "apratimsaha.com", true },
+ { "aprefix.com", true },
{ "apretatuercas.es", true },
{ "aprikaner.de", true },
{ "aprogend.com.br", true },
{ "aproposcomputing.com", true },
{ "aprovpn.com", true },
{ "aprr.org", true },
+ { "aprsdroid.org", true },
{ "aprz.de", true },
{ "apsa.paris", true },
{ "apstudynotes.org", true },
{ "aptitudetests.org", true },
+ { "aptumseguros.mx", true },
{ "apu-board.de", true },
+ { "apunkt.dk", true },
{ "apv-ollon.ch", true },
+ { "apviz.io", true },
+ { "aqarategypt.com", true },
{ "aqdun.com", true },
{ "aqsiq.net", true },
{ "aqua-bucht.de", true },
{ "aqua-fitness-nacht.de", true },
{ "aqua-fotowelt.de", true },
- { "aquabar.co.il", true },
{ "aquabio.ch", true },
{ "aquadonis.ch", true },
{ "aquagarden.com.pl", true },
@@ -3344,10 +4183,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aqualife.com.gr", true },
{ "aqualifeprojects.com", true },
{ "aqualysis.nl", true },
+ { "aquamarin.icu", true },
{ "aquapoint.kiev.ua", true },
{ "aquarium-supplement.net", true },
{ "aquaselect.eu", true },
{ "aquatechnologygroup.com", true },
+ { "aquaterm72.ru", true },
{ "aquaundine.net", true },
{ "aquavitaedayspa.com.au", true },
{ "aquelarreweb.com", true },
@@ -3356,14 +4197,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aquitroc.com", true },
{ "ar-informatique.ch", true },
{ "arab.dating", true },
- { "arabicxz.com", true },
+ { "arabhardware.net", true },
+ { "arabsexi.info", true },
{ "arachina.com", true },
{ "arackiralama.name.tr", true },
{ "arados.de", true },
+ { "aragon.fun", true },
{ "arai21.net", true },
{ "araleeniken.com", true },
- { "aramado.com", true },
{ "aramido.de", true },
+ { "aramloebmd.com", true },
{ "aranchhomes.com", true },
{ "aranycsillag.net", true },
{ "araraexpress.com.br", true },
@@ -3378,12 +4221,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arbejdsdag.dk", true },
{ "arbitrarion.com", true },
{ "arbitrary.ch", true },
- { "arcaea.net", true },
{ "arcaik.net", true },
{ "arcbouncycastles.co.uk", true },
{ "arcenergy.co.uk", true },
{ "archaeoadventures.com", true },
{ "archeologicatoscana.it", true },
+ { "archerygearonline.com", true },
{ "archimedicx.com", true },
{ "archined.nl", true },
{ "archit.in", true },
@@ -3392,17 +4235,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "architectureandgovernance.com", true },
{ "archivero.es", true },
{ "archivesdelavieordinaire.ch", true },
+ { "archivium.biz", true },
{ "archivosstl.com", true },
{ "archiweb.pl", false },
{ "archlinux.de", true },
{ "archlinux.org", true },
{ "arclandholdings.com.au", true },
- { "arcobalabs.ca", false },
+ { "arcobalabs.ca", true },
{ "arcridge.ca", true },
+ { "arctic.ca", true },
{ "arctic.gov", true },
+ { "arctica.io", true },
+ { "arctus-security.com", true },
{ "arcueil-cachan.fr", false },
{ "arcusnova.de", true },
{ "arda-audio.pt", true },
+ { "ardadanal.com", true },
+ { "ardia.ovh", true },
{ "ardor.noip.me", true },
{ "ardtrade.ru", true },
{ "area4pro.com", true },
@@ -3413,6 +4262,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arekatieandchrisgettingmarried.com", true },
{ "arekatieandchrisgettingmarried.today", true },
{ "arekatieandchrismarriedyet.com", true },
+ { "arena-lemgo.de", true },
{ "arendburgers.nl", true },
{ "arenlor.com", true },
{ "arenlor.info", true },
@@ -3421,14 +4271,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ares-trading.de", true },
{ "arethsu.se", true },
{ "arfad.ch", true },
- { "arg.zone", true },
- { "argama-nature.com", true },
{ "arganaderm.ch", true },
{ "argb.de", true },
+ { "argecord.com", true },
{ "argekultur.at", true },
+ { "argentinatrabaja.org", true },
{ "argonium.com.au", true },
{ "argot.com", true },
{ "argovpay.com", true },
+ { "ariacreations.net", true },
{ "ariadermspa.com", true },
{ "arian.io", true },
{ "ariana.wtf", true },
@@ -3439,40 +4290,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arigato-java.download", true },
{ "arijitdg.net", true },
{ "arikar.eu", true },
+ { "arilto.com", true },
{ "arima.co.ke", true },
{ "arinde.ee", true },
{ "arise19.com", true },
- { "arisevendor.net", true },
+ { "arisechurch.com", true },
+ { "ariseconference.org.nz", true },
{ "aristocrates.co", true },
{ "aritec-la.com", true },
{ "arivo.com.br", true },
- { "arizonaautomobileclub.com", true },
{ "arizonabondedtitle.com", true },
- { "arizonahomeownerinsurance.com", true },
+ { "arjan.nl", true },
{ "arjandejong.eu", true },
+ { "arjanenthijs.nl", true },
+ { "arjansteevels.nl", true },
{ "arjanvaartjes.net", true },
{ "arjunasdaughter.pub", true },
{ "arjweb.co.uk", true },
{ "arkacrao.org", true },
{ "arkadiyt.com", true },
- { "arkaic.dyndns.org", true },
+ { "arkhvoid.xyz", true },
{ "arkulagunak.com", false },
+ { "arlartistadigital.com.mx", true },
{ "arlen.tv", true },
{ "arlenarmageddon.com", true },
{ "arletalibrary.com", true },
{ "arlingtonelectric.com", true },
+ { "arlingtonwine.net", true },
{ "arm-host.com", true },
{ "arm.gov", true },
+ { "armadale.wa.gov.au", 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 },
- { "armeo.top", true },
{ "armil.it", true },
{ "armin-cme.de", true },
{ "armin-cpe.de", true },
@@ -3483,29 +4338,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "armstrongsengineering.com", true },
{ "army24.cz", true },
{ "armyprodej.cz", true },
- { "arnakdanielian.com", true },
{ "arnaudb.net", true },
{ "arnaudfeld.de", true },
- { "arne.codes", true },
+ { "arnaudlanna.com", true },
+ { "arnevankauter.com", true },
{ "arniescastles.co.uk", true },
{ "arno-klein.de", true },
{ "arno-klein.eu", true },
- { "arno-klein.fr", true },
- { "arno.pm", true },
{ "arnoldkontz-occasions.lu", true },
{ "arnonerba.com", true },
{ "arnor.org", true },
{ "arnoudraeven.nl", true },
{ "arnoudvandalen.nl", true },
+ { "arnove.net", true },
{ "arnsmedia.nl", true },
{ "arod.tk", true },
{ "arogov.com", true },
- { "arogyadhamhealth.com", true },
{ "arokha.com", true },
+ { "aromachat.eu", true },
{ "aromacos.ch", true },
{ "aromatlas.com", true },
{ "aron.host", true },
- { "aroonchande.com", true },
+ { "aroonchande.com", false },
{ "aros.pl", true },
{ "arose.io", true },
{ "around-cms.de", true },
@@ -3525,19 +4379,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arrow-api.nl", true },
{ "arrowfastener.com", true },
{ "arrowheadaddict.com", true },
- { "arrowheadflats.com", true },
- { "arrowit.net", true },
{ "arrowwebprojects.nl", true },
+ { "ars-online.pl", true },
{ "arschkrebs.org", true },
+ { "arshell.me", true },
{ "arslankaynakmetal.com", true },
{ "arsplus.ru", false },
{ "arswb.men", true },
{ "art-auction.jp", true },
{ "art-et-culture.ch", true },
+ { "art-et-tonneaux.fr", true },
{ "art-pix.com", true },
{ "art-pix.de", true },
{ "art-pix.net", true },
- { "art2web.net", true },
+ { "art-shinbi.com", true },
+ { "artacadia.org", true },
{ "artboja.com", true },
{ "artdeco-photo.com", true },
{ "arte-soft.co", true },
@@ -3553,34 +4409,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "artedellavetrina.it", true },
{ "artedona.com", true },
{ "arteequipamientos.com.uy", true },
+ { "artefakt.es", true },
{ "artefeita.com.br", true },
{ "arteinstudio.it", true },
{ "artelt.com", true },
- { "artemis.re", true },
{ "arterienundvenen.ch", true },
+ { "arterydb.ru", true },
+ { "arteseideias.com.pt", true },
{ "arteshow.ch", true },
- { "artetrama.com", false },
{ "artfabrics.com", true },
{ "artforum.sk", true },
{ "artfullyelegant.com", true },
{ "arthan.me", true },
{ "arthermitage.org", true },
- { "arthur.cn", true },
+ { "arthritisrheumaticdiseases.com", true },
{ "arthurlaw.ca", true },
+ { "arthuryidi.com", true },
{ "articu.no", true },
{ "artificial.army", true },
{ "artificialgrassandlandscaping.com", true },
+ { "artigianociao.jp", true },
{ "artik.cloud", true },
+ { "artikelpendidikan.id", true },
{ "artimpact.ch", true },
{ "artioml.net", true },
{ "artionet.ch", true },
{ "artis-game.net", true },
- { "artisan-cheminees-poeles-design.fr", true },
+ { "artisan-cheminees-poeles-design.fr", false },
{ "artisans-libres.com", true },
{ "artisansoftaste.com", true },
{ "artisavotins.com", true },
{ "artistagenda.com", true },
+ { "artistedeparis.fr", true },
{ "artistrunwebsite.com", true },
+ { "artiwear.com.tw", true },
{ "artlantis.nl", true },
{ "artleading.ru", true },
{ "artlifeisgood.com", true },
@@ -3591,14 +4453,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "artmarketingnews.com", true },
{ "artmoney.com", true },
{ "artofcode.co.uk", true },
+ { "artofhomeorganizing.com", true },
{ "artofmonitoring.com", false },
{ "artofwhere.com", true },
+ { "artozoul.fr", true },
+ { "artplasticsurgeons.com", true },
{ "artratio.net", true },
{ "artroot.jp", true },
{ "artroscopiaperlosport.it", true },
{ "arts.gov", true },
{ "artschmidtoptical.com", true },
{ "artspac.es", true },
+ { "arttel-media.ru", true },
{ "arturopinto.com.mx", true },
{ "arturrossa.de", true },
{ "arturszalak.com", true },
@@ -3609,11 +4475,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arunjoshua.com", true },
{ "arveron.ch", true },
{ "arvid.io", true },
- { "arviksa.co.uk", true },
{ "arvindhariharan.com", true },
{ "arvindhariharan.me", true },
{ "arvutiladu.ee", true },
{ "arweth.com", true },
+ { "arx8x.net", true },
{ "arxell.com", true },
{ "aryabusines.com", true },
{ "aryalaroca.de", true },
@@ -3624,8 +4490,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "as200753.com", true },
{ "as200753.net", true },
{ "as44222.net", true },
+ { "as8423.net", true },
{ "asadatec.de", true },
- { "asadzulfahri.com", true },
{ "asafaweb.com", true },
{ "asafilm.co", true },
{ "asandu.eu", true },
@@ -3634,33 +4500,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "asbestosthedarkarts.com", true },
{ "asbito.de", true },
{ "ascamso.com", true },
- { "ascendprime.com", true },
{ "ascension.run", true },
{ "ascensori.biz", true },
{ "ascgathering.com", true },
+ { "aschismatic.com", true },
{ "ascii.moe", true },
{ "asciitable.tips", true },
{ "asciiwwdc.com", true },
+ { "ascpaphilatelie.eu", true },
{ "asd.gov.au", true },
- { "asdyx.de", true },
{ "asec01.net", true },
{ "asegem.es", true },
- { "aseith.com", true },
+ { "asemanhotel.com", true },
{ "asenno.com", true },
{ "aserver.co", true },
{ "asexualitat.cat", true },
+ { "asfaleianet.gr", true },
{ "asgapps.co.za", true },
- { "asge-handel.de", true },
- { "ashastalent.com", true },
{ "ashd1.goip.de", true },
{ "ashd2.goip.de", true },
{ "ashd3.goip.de", true },
+ { "ashenm.ml", true },
{ "ashessin.com", true },
{ "ashkan-rechtsanwalt-arbeitsrecht-paderborn.de", true },
{ "ashleyedisonuk.com", true },
+ { "ashleykaryl.com", true },
+ { "ashleymadison.com", true },
{ "ashleythouret.com", true },
{ "ashlocklawgroup.com", true },
{ "ashmportfolio.com", true },
+ { "ashridgetrees.co.uk", true },
+ { "ashtonc.ca", true },
{ "ashutoshmishra.org", true },
{ "asia-gazette.com", true },
{ "asia-global-risk.com", true },
@@ -3674,20 +4544,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "asiesvenezuela.com", true },
{ "asiinc-tex.com", true },
{ "asile-colis.fr", true },
+ { "asilo.roma.it", true },
{ "asinetasima.com", true },
{ "asirigbakaute.com", true },
- { "asirviablog.com", true },
{ "asisee.photography", true },
{ "ask.fi", true },
{ "ask.pe", true },
{ "ask1.org", true },
- { "askcaisse.com", true },
{ "askcascade.com", true },
{ "askeustache.com", true },
{ "askizzy.org.au", true },
{ "askkaren.gov", true },
- { "askme24.de", true },
- { "asksatya.com", true },
{ "askv6.net", true },
{ "askvg.com", true },
{ "askwhy.cz", true },
@@ -3696,11 +4563,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "asmdz.com", true },
{ "asmeets.nl", true },
{ "asmood.net", true },
- { "asoul.tw", true },
{ "aspargesgaarden.no", true },
{ "aspatrimoine.com", true },
{ "aspcl.ch", true },
- { "aspectcontext.com", true },
{ "aspectuw.com.au", true },
{ "asperti.com", true },
{ "aspformacion.com", true },
@@ -3721,7 +4586,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "assempsaibiza.com", true },
{ "assertion.de", true },
{ "assessoriati.com.br", true },
- { "assetvault.co.za", true },
+ { "assetbacked.capital", true },
+ { "assetsec.io", true },
{ "assguidesporrentruy.ch", true },
{ "assign-it.co.uk", false },
{ "assistel.com", true },
@@ -3729,46 +4595,51 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "assistenzafrigorifero.org", true },
{ "assistenzalavatrice.org", true },
{ "assistenzamicroonde.org", true },
+ { "associatedwomenshealthcare.com", true },
{ "assodigitale.it", true },
{ "asspinter.me", true },
{ "assumptionpj.org", true },
{ "astal.rs", true },
+ { "astaninki.com", true },
{ "astarbouncycastles.co.uk", true },
- { "astarforu.com", true },
{ "astarmathsandphysics.com", true },
{ "astaxanthin-sport.de", true },
{ "astaxanthin.de", true },
{ "astec-informatica.com", true },
{ "astengox.com", true },
{ "astenotarili.online", true },
- { "astral-imperium.uk", true },
+ { "astral-imperium.com", true },
{ "astral.org.pl", true },
+ { "astrath.net", true },
{ "astroalloys.com.au", true },
{ "astrology42.com", true },
+ { "astropaykasa.org", true },
{ "astroscopy.ch", true },
- { "astrovandalistas.cc", true },
{ "astural.org", true },
{ "astutikhonda.com", true },
+ { "asu.moe", true },
{ "asuclassfinder.com", true },
- { "asuka.io", true },
{ "asun.co", true },
{ "asurbernardo.com", true },
{ "asurepay.cc", false },
{ "asustreiber.de", true },
{ "asvsa.ch", true },
{ "asws.nl", true },
+ { "asylbarn.no", true },
{ "asystent-dzierzawy.pl", true },
{ "at.search.yahoo.com", false },
+ { "at5.nl", true },
{ "at7s.me", true },
{ "ataber.pw", true },
{ "atac.no", true },
{ "atacadocervejeiro.com.br", true },
{ "atacadodesandalias.com.br", true },
+ { "atahualpa.com", true },
{ "atallo.com", true },
{ "atallo.es", true },
{ "ataton.ch", true },
+ { "atbwebservices.co.uk", true },
{ "atc.cuneo.it", true },
- { "atc.io", true },
{ "atchleyjazz.com", true },
{ "atchleyjazz.org", true },
{ "atchleylab.org", true },
@@ -3790,13 +4661,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ateliernaruby.cz", true },
{ "ateliers-veronese-nantes.fr", true },
{ "atelierssud.ch", true },
- { "atelierssud.swiss", true },
{ "atencionbimbo.com", false },
+ { "atendimentodelta.com.br", true },
{ "aterlectric.com", true },
{ "aterskapa-data.se", true },
- { "atg.soy", true },
+ { "atf.gov", true },
{ "atgoetschel.ch", true },
- { "atgroup.gr", true },
{ "atgseed.co.uk", true },
{ "atgseed.uk", true },
{ "ath0.org", false },
@@ -3804,11 +4674,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "atheistfrontier.com", true },
{ "athekiu.com", true },
{ "athena-bartholdi.com", true },
+ { "athenacle.xyz", true },
{ "athenadynamics.com", true },
{ "athenaneuro.com", true },
{ "athlin.de", true },
{ "atigerseye.com", true },
{ "atimbertownservices.com", true },
+ { "atinylittle.space", true },
{ "atishchenko.com", true },
{ "atisoft.biz", true },
{ "atisoft.com.tr", true },
@@ -3829,8 +4701,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "atlantiswaterproofing.com", true },
{ "atlas-heritage.com", true },
{ "atlas-multimedia.de", true },
+ { "atlasauthority.com", true },
{ "atlasbrown.com", true },
- { "atlaschiropractic.org", true },
{ "atlascoffeeclub.com", true },
{ "atlascultural.com", true },
{ "atlasdev.nl", true },
@@ -3839,15 +4711,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "atlassignsandplaques.com", true },
{ "atletika.hu", true },
{ "atmalta.com", true },
+ { "atmind.nl", true },
{ "atmschambly.com", true },
{ "atnis.com", true },
{ "ato4sound.com", true },
{ "atolm.net", true },
- { "atom-china.org", true },
{ "atom.solutions", true },
{ "atom86.net", true },
{ "atombase.org", true },
- { "atomic-bounce.com", true },
+ { "atomicbounce.co.uk", true },
{ "atomism.com", true },
{ "atorcidabrasileira.com.br", true },
{ "atplonline.co", true },
@@ -3860,8 +4732,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "atspeeds.com", true },
{ "attac.us", true },
{ "atte.fi", true },
+ { "attendanceondemand.com", true },
{ "attendantdesign.com", true },
{ "attendu.cz", true },
+ { "attentigroup.com", true },
{ "attention.horse", true },
{ "attilagyorffy.com", true },
{ "attilavandervelde.nl", true },
@@ -3869,7 +4743,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "attitudes-bureaux.fr", true },
{ "attogtech.com", true },
{ "attorney.org.il", true },
+ { "attuned.se", true },
{ "attwood.org", true },
+ { "atuendomr.com", true },
{ "atviras.lt", false },
{ "atvirtual.at", true },
{ "atvsafety.gov", true },
@@ -3889,19 +4765,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aubg.org", true },
{ "aubio.org", true },
{ "aubonmanger.fr", true },
+ { "aubreysnider.com", true },
+ { "auburnmedicalservices.com", true },
{ "aucarresainteloi.com", true },
{ "aucielrose.com", true },
{ "aucklandcastles.co.uk", true },
{ "aucubin.de", true },
- { "audialbuquerqueparts.com", true },
{ "audiense.com", false },
{ "audio-detector.com", true },
{ "audiobookboo.com", true },
{ "audiobookstudio.com", true },
+ { "audioboom.com", true },
{ "audiolibri.org", true },
{ "audiolot.com", true },
{ "audion.cc", true },
- { "audion.hr", true },
{ "audiophile.ch", true },
{ "audiophix.com", true },
{ "audiorecording.me", true },
@@ -3920,25 +4797,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "auerbach-verlag.de", true },
{ "auf-feindgebiet.de", true },
{ "augen-seite.de", true },
+ { "augenlaser-chemnitz.de", true },
+ { "augenlaser-dresden.de", true },
+ { "augenlasercenter-dresden.de", true },
+ { "augenlaserzentrum-dresden.com", true },
+ { "augenlaserzentrum-dresden.eu", true },
{ "augiero.it", true },
{ "augix.net", true },
- { "augmentable.de", false },
- { "augmented-portal.com", true },
{ "august-don.site", true },
{ "augustian-life.cz", true },
{ "augustiner-kantorei-erfurt.de", true },
{ "augustiner-kantorei.de", true },
{ "aukaraoke.su", true },
{ "aulasvirtualesperu.com", true },
+ { "aulica-conseil.com", true },
{ "aulo.in", false },
{ "aumilieudumonde.gf", true },
- { "aunali1.com", true },
{ "auntie-eileens.com.au", true },
- { "aupasdecourses.com", true },
+ { "auntmia.com", true },
{ "auplidespages.fr", true },
+ { "aura7chakr.com", true },
{ "aurelieburn.fr", true },
{ "aurelienaltarriba.fr", true },
- { "aureus.pw", true },
{ "auri.ga", true },
{ "auricblue.com", true },
{ "auriko-games.de", true },
@@ -3949,13 +4829,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "auroz.tech", true },
{ "auroz.video", true },
{ "aus-ryugaku.info", true },
+ { "ausec.ch", true },
+ { "auskunftsbegehren.at", true },
{ "ausmwoid.de", true },
{ "auspicacious.org", true },
{ "ausrecord.com", true },
{ "ausschreibungen-suedtirol.it", true },
{ "aussiefunadvisor.com", true },
{ "aussieservicedown.com", true },
- { "aussiestoresonline.com", true },
{ "austenplumbing.com", true },
{ "austin-pearce.com", true },
{ "austin-security-cameras.com", true },
@@ -3977,18 +4858,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "auszeit-walsrode.de", true },
{ "auszeit.bio", true },
{ "auth.adult", true },
+ { "authcom.ca", true },
{ "authenticationhub.io", true },
{ "authenticwoodcraft.com", true },
+ { "authinfo-bestellen.de", true },
{ "authinity.com", true },
{ "authland.com", false },
{ "author24.biz", true },
{ "author24.info", true },
{ "authoritysolutions.com", true },
{ "autimatisering.nl", true },
+ { "autismewoerden.nl", true },
{ "auto-anleitung.de", true },
{ "auto-dealership-news.com", true },
+ { "auto-i-dat.ch", true },
{ "auto-motor-i-sport.pl", true },
+ { "auto-none.com", true },
{ "auto-plus.tn", true },
+ { "auto-res.ru", true },
{ "auto-spurgo.com", true },
{ "auto.nl", true },
{ "auto1.fi", true },
@@ -3997,10 +4884,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "autobahnco.com", true },
{ "autobarn.co.nz", true },
{ "autobedrijfgarant.nl", true },
+ { "autobella-hurtownia.pl", true },
{ "autobelle.it", true },
{ "autobourcier.com", true },
- { "autoclean-plus.ch", true },
- { "autocmall.com", true },
+ { "autocartruck.com", true },
+ { "autocobot.com", true },
{ "autocontrol.online", true },
{ "autocorner.com", true },
{ "autocrypt.org", true },
@@ -4010,24 +4898,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "autodidacticstudios.com", true },
{ "autodidacticstudios.net", true },
{ "autodidacticstudios.org", true },
+ { "autoelettricaperbambini.com", true },
{ "autoentrepreneurinfo.com", true },
- { "autoeshop.eu", true },
- { "autohaus-snater.de", true },
+ { "autofficina.roma.it", true },
+ { "autohomehub.com", true },
{ "autoi.ch", true },
{ "autoinsurancehavasu.com", true },
{ "autokeyreplacementsanantonio.com", true },
+ { "autokovrik-diskont.ru", true },
{ "autolawetawroclaw.pl", true },
{ "autoledky.sk", true },
- { "automaan.nl", true },
- { "automacity.com", true },
+ { "automagischeberegening.nl", true },
{ "automatethis.com.au", true },
{ "automatic.com", true },
{ "automationpro.me", true },
+ { "automationsmarthome.com", true },
{ "automotivegroup-usedcars.be", true },
{ "automotivemechanic.org", true },
{ "automoto-tom.net", true },
{ "automy.de", true },
{ "autonewssite.com", true },
+ { "autonoleggio.milano.it", true },
{ "autoosijek.com", true },
{ "autopapo.com.br", true },
{ "autoparts.im", true },
@@ -4038,17 +4929,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "autoproshouston.com", true },
{ "autorando.com", true },
{ "autoreinigung-noack.de", true },
+ { "autorepairseattle.com", true },
+ { "autorijschooljohanbos.nl", true },
{ "autorijschoolrichardschut.nl", true },
{ "autos-mertens.com", true },
+ { "autosaan.ro", true },
{ "autoschadeschreuder.nl", true },
{ "autoscuola.roma.it", true },
{ "autosecurityfinance.com", true },
{ "autoshinka72.ru", true },
- { "autoshopsolutions.com", true },
{ "autoshun.org", true },
{ "autoskola.hr", true },
{ "autoskolaplzen.cz", true },
{ "autoskole.hr", true },
+ { "autospurghi.milano.it", true },
{ "autospurgo.it", true },
{ "autospurgo.milano.it", true },
{ "autostodulky.cz", true },
@@ -4057,17 +4951,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "autoterminus-used.be", true },
{ "autoto.hr", true },
{ "autotransportquoteservices.com", true },
+ { "autouncle.at", true },
+ { "autouncle.co.uk", true },
+ { "autouncle.com", true },
+ { "autouncle.de", true },
+ { "autouncle.dk", true },
+ { "autouncle.fi", true },
+ { "autouncle.fr", true },
+ { "autouncle.it", true },
+ { "autouncle.pl", true },
+ { "autouncle.pt", true },
+ { "autouncle.ro", true },
+ { "autouncle.se", true },
{ "autoverzekeringafsluiten.com", true },
{ "autowerkstatt-puchheim.de", true },
{ "autozane.com", true },
{ "autres-talents.fr", true },
{ "autshir.com", true },
{ "auvernet.org", true },
+ { "auvidos.ru", true },
{ "aux-arts-de-la-table.com", true },
{ "auxiliame.com", true },
{ "auxille.com", true },
{ "auxquatrevents.ch", true },
{ "av-yummy.com", true },
+ { "av01.tv", true },
{ "av0ndale.de", true },
{ "ava-creative.de", false },
{ "ava-software.at", true },
@@ -4076,8 +4984,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "avacariu.me", true },
{ "avaemr-development-environment.ca", true },
{ "avaeon.com", true },
+ { "available.direct", true },
{ "availablecastles.com", true },
- { "avalon-island.ru", true },
{ "avalon-rpg.com", true },
{ "avanet.ch", true },
{ "avanet.com", true },
@@ -4091,8 +4999,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "avdagic.net", true },
{ "ave.zone", true },
{ "aveapps.com", false },
+ { "aveclunettesoleil.fr", true },
{ "avedesk.org", false },
+ { "avelinodiaz.gal", true },
{ "aventurische-allianz.de", true },
+ { "avenuedesbebes.com", true },
{ "avenueeyecare.com", true },
{ "avepol.cz", true },
{ "avepol.eu", true },
@@ -4106,24 +5017,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aviapoisk.kz", true },
{ "aviationstrategies.aero", true },
{ "aviationstrategy.aero", true },
+ { "aviationweather.gov", true },
{ "avid.blue", true },
{ "avidmode-dev.com", true },
{ "avidmode-staging.com", true },
{ "avidmode.com", true },
- { "avidthink.com", true },
{ "avietech.com", true },
- { "aviv.nyc", true },
+ { "avinilo.com", true },
{ "avlhostel.com", true },
{ "avm-multimedia.com", true },
+ { "avmoo.com", true },
{ "avmrc.nl", true },
{ "avmup.com", true },
- { "avocatbeziau.com", true },
+ { "avnet.ws", true },
{ "avocode.com", true },
{ "avonture.be", true },
{ "avova.de", true },
{ "avpres.net", true },
{ "avptp.org", true },
- { "avqueen.cn", true },
+ { "avqueen.cn", false },
+ { "avs-building-services.co.uk", true },
+ { "avselectrical.co.uk", true },
{ "avsox.com", true },
{ "avtek.pl", true },
{ "avticket.ru", false },
@@ -4136,6 +5050,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "avvaterra.ch", true },
{ "avvcorda.com", true },
{ "avvocato.bologna.it", true },
+ { "aw.gov.pl", true },
+ { "awakenedmind.com", true },
{ "awardplatform.com", true },
{ "awardsplatform.com", true },
{ "awaremi-tai.com", true },
@@ -4145,32 +5061,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "awarify.me", true },
{ "awaro.net", true },
{ "awbouncycastlehire.com", true },
- { "awecademy.org", true },
+ { "awen.me", true },
{ "awesome-coconut-software.fr", true },
{ "awesomebouncycastles.co.uk", true },
+ { "awesomenamegenerator.com", true },
{ "awic.ca", true },
{ "awk.tw", true },
{ "awksolutions.com", true },
{ "awningcanopyus.com", true },
{ "awningsaboveus.com", true },
- { "awningsatlantaga.com", true },
+ { "awomansplacenj.com", true },
{ "awplasticsurgery.com", true },
{ "awscloudrecipes.com", true },
{ "awsmdev.de", true },
{ "awsome-books.co.uk", true },
+ { "awsumchan.org", true },
{ "awxg.com", true },
{ "ax25.org", true },
- { "axchap.ir", true },
+ { "axel-fischer.net", true },
+ { "axel-voss.eu", true },
{ "axelname.ru", true },
{ "axelteichmann.net", true },
+ { "axelvoss.eu", true },
{ "axiatancell.com", true },
{ "axiomer.com", true },
- { "axiomer.es", true },
- { "axiomer.eu", true },
- { "axiomer.me", true },
- { "axiomer.net", true },
- { "axiomer.org", true },
- { "axisfleetmanagement.co.uk", true },
+ { "axishw.com", true },
{ "axispara-bg.com", true },
{ "axolotlfarm.org", false },
{ "axon-toumpa.gr", true },
@@ -4178,12 +5093,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "axre.de", true },
{ "axrec.de", true },
{ "ay-net.jp", true },
- { "ayahya.me", true },
+ { "ayahya.me", false },
{ "ayanomimi.com", true },
{ "aycomba.de", true },
{ "ayesh.me", true },
{ "aying.love", true },
- { "ayj.solutions", true },
{ "aykutcevik.com", true },
{ "aylak.com", true },
{ "aylavblog.com", true },
@@ -4191,29 +5105,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aymerick.fr", true },
{ "aymericlagier.com", true },
{ "ayothemes.com", true },
- { "ayrohq.com", true },
{ "ayrshirebouncycastlehire.co.uk", true },
+ { "ayumi.network", true },
{ "ayumindev.net", true },
+ { "ayumix3.xyz", true },
{ "ayurveda-mantry.com", true },
{ "az-moga.bg", true },
+ { "az.net.au", true },
{ "az.search.yahoo.com", false },
{ "azabani.com", true },
{ "azadliq.info", true },
{ "azarus.ch", true },
{ "azazy.net", false },
{ "azgfd.com", true },
+ { "azh-kunden.de", true },
+ { "aziende.com.ar", true },
{ "azimut.fr", true },
- { "azino777.ru", true },
{ "azizvicdan.com", false },
{ "azlk-team.ru", true },
- { "azmusica.biz", true },
+ { "aznews.site", true },
{ "azort.com", true },
+ { "azotobacter.nl", true },
{ "azrazalea.net", true },
{ "azsgeniedev.azurewebsites.net", true },
{ "azso.pro", true },
{ "azsupport.com", true },
{ "aztraslochi.it", true },
{ "aztrix.me", true },
+ { "aztummytuck.com", true },
{ "azu-l.com", true },
{ "azu-l.jp", true },
{ "azuki.cloud", true },
@@ -4221,6 +5140,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "azurecrimson.com", true },
{ "azuriasky.com", true },
{ "azuriasky.net", true },
+ { "azurlane.cool", true },
+ { "azuxul.fr", true },
{ "azzorti.com", true },
{ "azzurrapelletterie.it", true },
{ "b-b-law.com", true },
@@ -4228,29 +5149,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "b-cyclesshop.ch", true },
{ "b-f-s.pl", true },
{ "b-freerobux.ga", true },
+ { "b-performance.de", true },
{ "b-root-force.de", true },
{ "b-services.net", true },
+ { "b00de.ga", true },
{ "b0k.org", true },
{ "b0rk.com", true },
{ "b1788.net", false },
{ "b1c1l1.com", true },
{ "b2and.com", false },
{ "b2bmuzikbank.com", true },
+ { "b2families.com.au", true },
{ "b303.me", true },
{ "b4bouncycastles.co.uk", true },
{ "b4ckbone.de", true },
{ "b4z.eu", true },
- { "b64.club", true },
+ { "b5197.co", true },
+ { "b6729.co", true },
+ { "b6957.co", true },
{ "b72.com", true },
{ "b72.net", true },
{ "b767.net", true },
+ { "b8a.me", true },
+ { "b9297.co", true },
+ { "b9728.co", true },
+ { "b9999ff.com", true },
+ { "b9999hh.com", true },
+ { "b9999ii.com", true },
+ { "b9999jj.com", true },
+ { "b9999ll.com", true },
+ { "b9999mm.com", true },
+ { "b9999nn.com", true },
+ { "b9999oo.com", true },
+ { "b9999pp.com", true },
+ { "b9999qq.com", true },
+ { "b9999tt.com", true },
+ { "b9999uu.com", true },
+ { "b9999vv.com", true },
+ { "b9999ww.com", true },
+ { "b9999yy.com", true },
+ { "b9999zz.com", true },
+ { "b99iosapp.com", true },
{ "baalsworld.de", true },
+ { "baas-becking.biology.utah.edu", true },
{ "baazee.de", true },
{ "babacasino.net", true },
{ "babai.ru", true },
{ "babeleo.com", true },
- { "bablodel.biz", true },
- { "bablodel.com", true },
+ { "babineaux.zone", true },
{ "babsbibs.com", true },
{ "baby-bath-tub.com", true },
{ "baby-digne.com", true },
@@ -4264,12 +5210,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "babypibu.com", true },
{ "babyshoprimini.com", true },
{ "bachata.info", true },
- { "baches-piscines.com", true },
+ { "bachkhoa.net.vn", true },
{ "baciu.ch", true },
{ "backeby.eu", true },
{ "backgroundchecks.online", true },
{ "backmountaingas.com", true },
{ "backpacker.dating", true },
+ { "backscattering.de", false },
{ "backschues.com", true },
{ "backschues.de", true },
{ "backschues.net", true },
@@ -4284,7 +5231,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "baconismagic.ca", true },
{ "bacontreeconsulting.com", true },
{ "bacoux.com", true },
- { "bacsituvansuckhoe.com", true },
{ "bacula.jp", true },
{ "bad.horse", true },
{ "bad.pet", true },
@@ -4293,24 +5239,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "badanteinfamiglia.it", true },
{ "badaparda.com", true },
{ "badblock.fr", true },
- { "badboyzclub.de", true },
- { "badf00d.de", true },
+ { "badedesign.no", true },
{ "badgersystems.de", true },
{ "badges.fedoraproject.org", true },
{ "badges.stg.fedoraproject.org", true },
{ "badgesenpatches.nl", true },
- { "badhusky.com", true },
+ { "badgirlsbible.com", true },
+ { "badgr.io", true },
+ { "badhusky.com", false },
{ "badkamermarkt.nl", true },
- { "badlink.org", true },
{ "badmania.fr", true },
{ "badmintonbible.com", true },
{ "badoo.com", true },
{ "badoo.de", true },
{ "badoo.eu", true },
{ "badoo.us", true },
- { "badpackets.net", true },
{ "badrequest.me", true },
- { "badseacoffee.com", true },
{ "baeder-luboss.de", true },
{ "baer.im", false },
{ "baer.one", false },
@@ -4318,17 +5262,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bag.bg", true },
{ "bageez.us", true },
{ "bagelcraft.net", true },
- { "bagelsbakery.com", false },
{ "bageluncle.com", true },
{ "baggy.me.uk", true },
{ "bagheera.me.uk", true },
{ "baglu.com", false },
{ "bagni-chimici.roma.it", true },
+ { "bagnichimici.milano.it", true },
+ { "bagnichimici.roma.it", true },
{ "bagsofbounce.co.uk", true },
{ "bagspecialist.nl", true },
{ "bagwrap.com", true },
{ "bah.im", false },
+ { "bahadirh.ml", true },
{ "bahaiprayers.io", true },
+ { "bahana.net", true },
{ "bahnbonus-praemienwelt.de", true },
{ "bahnenimbild.de", true },
{ "bahnenimbild.eu", true },
@@ -4341,43 +5288,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bailakomigo.com.br", true },
{ "baildonbouncycastles.co.uk", true },
{ "baileebee.com", true },
+ { "baileybae.com", true },
{ "bailonga.com", true },
- { "baitaplamvan.com", true },
{ "baitcon.com", true },
- { "baiyangliu.com", true },
{ "bajic.ch", true },
{ "baka-gamer.net", true },
- { "baka.network", true },
{ "baka.org.cn", true },
- { "bakaproxy.moe", true },
{ "bakermen.com", true },
{ "bakersafari.co", true },
+ { "bakerviewdentalcentre.com", true },
{ "bakeup.be", true },
{ "bakibal.com", true },
+ { "bakim.li", true },
{ "bakingstone.com", true },
{ "bakkerinjebuurt.be", true },
+ { "bakongcondo.com", true },
{ "balade-commune.ch", true },
{ "baladecommune.ch", true },
{ "balancascia.com.br", true },
{ "balance7.jp", true },
{ "balancedbrawl.net", true },
{ "balancenaturalhealthclinic.ca", true },
+ { "balaskas.gr", true },
{ "balboa.io", true },
+ { "balboa.org.uk", true },
{ "balcaonet.com.br", true },
+ { "balcarek.pl", true },
{ "balconnr.com", true },
{ "balconsverdun.com", true },
{ "baldur.cc", true },
- { "baldwin.com.au", true },
+ { "baldy.blog", true },
+ { "baleen.us", true },
{ "balia.de", true },
{ "balicekzdravi.cz", true },
- { "balidesignshop.com.br", true },
{ "balikonos.cz", true },
{ "balinese.dating", true },
- { "balist.es", true },
{ "balivillassanur.com", true },
+ { "balkenbushmechanical.com", true },
{ "balkonien.org", true },
{ "ball-bizarr.de", true },
- { "ball.holdings", true },
+ { "ball3d.es", true },
{ "ballarin.cc", true },
{ "ballejaune.com", true },
{ "balletcenterofhouston.com", true },
@@ -4388,23 +5338,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ballothero.com", true },
{ "ballparkbuns.com", false },
{ "ballroom.info", true },
+ { "balmeo.co.uk", true },
{ "balmofgilead.org.uk", true },
{ "balslev.io", true },
{ "balter.com", true },
+ { "balticer.de", true },
{ "balticmed.pl", true },
{ "balticnetworks.com", true },
{ "bamahammer.com", true },
- { "bambooforest.nl", true },
{ "bamboorelay.com", true },
{ "bamily.rocks", true },
- { "bananavapes.com", true },
+ { "ban.moe", true },
+ { "bananabandy.com", true },
{ "bananice.moe", true },
- { "banburybid.com", true },
{ "bancacrs.it", true },
- { "bancaolhares.com.br", true },
{ "bancobai.ao", true },
{ "bancoctt.pt", true },
+ { "bancomap.ch", true },
{ "bancor.network", true },
+ { "bancosdominicanos.net", true },
{ "bandagastrica.es", true },
{ "bandeira1.com.br", true },
{ "banderasdelmundo.xyz", true },
@@ -4419,18 +5371,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bangridho.com", true },
{ "bangumi.co", true },
{ "bangyu.wang", true },
- { "banham.co.uk", true },
+ { "banham.co.uk", false },
{ "banham.com", true },
{ "bani99.com", true },
{ "banjostringiz.com", true },
+ { "bank.barclays.co.uk", true },
{ "bank.simple.com", false },
+ { "banka.space", true },
{ "bankanswers.gov", true },
{ "bankbranchlocator.com", true },
{ "bankcardoffer.com", true },
{ "bankee.us", true },
- { "bankerbuch.de", true },
+ { "bankerscaddy.com", true },
{ "banketbesteld.nl", true },
- { "bankfreeoffers.com", true },
{ "bankgradesecurity.com", true },
{ "bankin.com", true },
{ "bankinter.pt", true },
@@ -4442,6 +5395,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "banksiaparkcottages.com.au", true },
{ "bankstownapartments.com.au", true },
{ "bankvanbreda.be", true },
+ { "banland.net", true },
{ "banned-bitches.tk", true },
{ "bannermarquees.ie", true },
{ "bannsecurity.com", true },
@@ -4452,35 +5406,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "baopublishing.it", true },
{ "baptistedeleris.fr", true },
{ "bar-harcourt.com", true },
- { "bara1.se", true },
+ { "bar.pl", true },
{ "barabrume.fr", true },
+ { "baranhotel.ir", true },
+ { "barankababra.hu", true },
{ "barans2239.com", true },
{ "baravalle.com", true },
{ "baraxolka.ru", true },
+ { "barbara-fuchs-gruene-fuerth.de", true },
{ "barbarabowersrealty.com", true },
{ "barbarafabbri.com", true },
{ "barbarafeldman.com", true },
{ "barbarians.com", false },
- { "barbaros.info", true },
{ "barbate.fr", true },
- { "barberlegalcounsel.com", true },
- { "barbershop-harmony.org", true },
{ "barbershop-lasvillas.com", true },
- { "barbiere.it", true },
{ "barbu.family", true },
{ "barburas.com", true },
{ "barcamp.koeln", true },
{ "barcel.com.mx", true },
+ { "barcelonabagels.cat", true },
+ { "barcelonapremium.es", true },
+ { "barcelonapremiummini.es", true },
{ "barclays.net", true },
- { "barcodeberlin.com", true },
{ "bardes.org", true },
{ "bardiharborow.com", true },
{ "bardiharborow.tk", true },
{ "baresquare.com", true },
+ { "bargainsettelement.com", true },
+ { "bariatrica.es", true },
{ "baripedia.org", true },
{ "bariseau-mottrie.be", true },
{ "barisi.me", true },
- { "bariskaragoz.nl", true },
{ "baristador.com", true },
{ "bariumoxide.com", true },
{ "barkerjr.xyz", true },
@@ -4489,24 +5445,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "barnabycolby.io", true },
{ "barnel.com", true },
{ "barneveldcentrum.nl", true },
+ { "barneydavey.com", true },
{ "barnfotografistockholm.se", true },
- { "barpodsosnami.pl", true },
+ { "baron14.be", true },
{ "barracuda.com.tr", true },
{ "barrera.io", true },
{ "barriofut.com", true },
{ "barrydenicola.com", true },
- { "barryswebdesign.co.uk", true },
{ "bars.kh.ua", true },
{ "barsashop.com.br", true },
- { "barsil.de", true },
- { "barslecht.com", true },
- { "barslecht.nl", true },
+ { "barsgroup.com", true },
{ "bart-f.com", true },
- { "barta.me", true },
{ "bartbania.com", true },
{ "bartel.ws", true },
{ "bartelt.name", true },
{ "barter4crypto.com", true },
+ { "barth.services", true },
{ "barthonia-showroom.de", true },
{ "bartkramer.nl", true },
{ "bartlamboo.nl", true },
@@ -4523,17 +5477,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "baseconvert.com", true },
{ "basedonline.nl", true },
{ "baselang.com", true },
- { "baseline.ba", true },
+ { "basement961.co.nz", true },
{ "basementdoctornorthwest.com", true },
{ "basementfinishingohio.com", true },
{ "basementwaterproofingdesmoines.com", true },
{ "baserverz.ga", true },
+ { "baseweb.design", true },
{ "bashing-battlecats.com", true },
{ "bashstreetband.co.uk", true },
{ "basicapparel.de", true },
{ "basicattentiontoken.org", true },
{ "basics.net", true },
{ "basketball-brannenburg.de", true },
+ { "basketforex.com", true },
{ "basnoslovno.ru", true },
{ "basonlinemarketing.nl", true },
{ "bass-pro.ru", true },
@@ -4541,9 +5497,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bassment.ph", true },
{ "bassresource.com", true },
{ "bassrider.eu", true },
- { "bassys.com.co", true },
{ "bastelzauberwelt.de", true },
- { "bastianstalder.ch", true },
{ "bastiv.com", true },
{ "bastolino.de", true },
{ "basw.eu", true },
@@ -4552,32 +5506,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "basyspro.net", true },
{ "batcave.tech", true },
{ "batch.com", true },
+ { "batch.engineering", true },
+ { "baterioverolety.cz", true },
{ "bati-alu.fr", true },
{ "batiburrillo.net", true },
{ "batipresta.ch", true },
+ { "batiskaf.ua", true },
{ "batistareisfloresonline.com.br", true },
- { "batkave.net", true },
{ "batlab.ch", true },
{ "batolis.com", true },
{ "batook.org", true },
{ "batschu.de", true },
+ { "batteryboys.ca", true },
+ { "batteryboys.com", true },
{ "batterystaple.pw", true },
{ "battle-game.com", true },
{ "battleboxx.com", false },
- { "battleofthegridiron.com", true },
+ { "battleground.com.au", true },
+ { "batuhanbensoy.com.tr", true },
{ "bauer.network", true },
{ "bauernmarkt-fernitz.at", true },
{ "baugeldspezi.de", true },
+ { "baugelitt.eu", true },
{ "baugemeinschaftbernstein.de", true },
{ "baumannfabrice.com", true },
{ "baumkuchen-aus-dresden.de", true },
{ "baur.de", true },
{ "bausep.de", true },
- { "baustils.com", true },
{ "bauthier-occasions.be", true },
{ "bautied.de", true },
{ "bauunternehmen-herr.de", true },
- { "bauwens.cloud", true },
+ { "bavarianhiker.de", false },
+ { "bavaroparadise.com", true },
+ { "bavarovillage.com", true },
{ "bavartec.de", true },
{ "bawbby.com", true },
{ "bayareaenergyevents.com", true },
@@ -4592,7 +5553,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bayerstefan.eu", true },
{ "bayherbalist.com", true },
{ "bayilelakiku.com", true },
- { "baykatre.com", true },
{ "bayly.eu", true },
{ "baymard.com", true },
{ "bayportbotswana.com", true },
@@ -4601,20 +5561,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bayporttanzania.com", true },
{ "bayportuganda.com", true },
{ "bayportzambia.com", true },
+ { "baystreet.com.mt", true },
{ "baytalebaa.com", true },
+ { "baytownent.com", true },
{ "baywatch.io", true },
{ "bayz.de", true },
{ "baza-gai.com.ua", true },
{ "bazaarbhaav.com", true },
{ "bazaarcompass.com", true },
+ { "bazari.com.pl", true },
{ "bazdell.com", true },
+ { "bazinga-events.nl", true },
{ "bazos.at", true },
{ "bazos.cz", true },
{ "bazos.pl", true },
{ "bazos.sk", true },
{ "bazziergraphik.com", true },
{ "bb1718.net", true },
- { "bb37roma.it", true },
+ { "bb5197.co", true },
+ { "bb6729.com", true },
+ { "bb6957.co", true },
+ { "bb9297.co", true },
+ { "bb9721.com", true },
+ { "bb9728.co", true },
{ "bbalposticino.it", true },
{ "bbcastles.com", true },
{ "bbgeschenke.ch", true },
@@ -4624,19 +5593,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bbkaforum.co.uk", true },
{ "bbkworldwide.jp", true },
{ "bbld.de", true },
- { "bblove.me", true },
{ "bblsa.ch", true },
- { "bbnbb.de", true },
{ "bbnx.net", true },
- { "bbs8080.net", true },
{ "bbsec.xyz", true },
{ "bbuio.com", false },
{ "bbw.dating", true },
{ "bbwcs.co.uk", true },
+ { "bbyouthco.com", true },
{ "bc-bd.org", false },
{ "bc-diffusion.com", true },
+ { "bc-reloaded.net", true },
{ "bcansw.com.au", true },
{ "bcbulle.ch", true },
+ { "bcdiesel.ca", true },
{ "bcdonadio.com", true },
{ "bcdonadio.com.br", true },
{ "bcdonadio.org", true },
@@ -4645,7 +5614,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bchep.com", true },
{ "bck-koethen.de", true },
{ "bck-lelystad.nl", true },
- { "bck.me", true },
{ "bckaccompressoroz.com", true },
{ "bclogandtimberbuilders.com", true },
{ "bclrk.us", true },
@@ -4657,7 +5625,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bcswampcabins.com", true },
{ "bcubic.net", true },
{ "bcvps.com", true },
- { "bcyw56.live", false },
{ "bd2positivo.com", true },
{ "bda-boulevarddesairs.com", true },
{ "bdbxml.net", true },
@@ -4674,48 +5641,50 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "be2cloud.de", true },
{ "beacham.online", true },
{ "beachcitycastles.com", true },
+ { "beachmarketing.co.uk", true },
{ "beadare.com", true },
{ "beadare.nl", true },
{ "beaglesecurity.com", true },
{ "bealpha.pl", true },
- { "beamer-discount.de", true },
- { "beamstat.com", true },
{ "beanbagaa.com", true },
{ "beanilla.com", true },
{ "beanjuice.me", true },
{ "beans-one.com", false },
+ { "beansgalore.com.au", true },
{ "bearcms.com", true },
{ "bearcosports.com.br", true },
+ { "beardboys.co.za", true },
{ "bearded.sexy", true },
{ "beardic.cn", true },
{ "bearingworks.com", true },
{ "bearlakelife.com", true },
{ "beastiejob.com", true },
- { "beastowner.li", true },
{ "beatfeld.de", true },
{ "beatnikbreaks.com", true },
{ "beatrizaebischer.ch", true },
+ { "beau.pw", true },
{ "beaumelcosmetiques.fr", true },
{ "beaute-eternelle.ch", true },
- { "beauty-hippie-schmuck.de", true },
{ "beauty-italy.ru", true },
- { "beauty-yan-enterprise.com", true },
{ "beauty24.de", true },
{ "beautybear.dk", true },
+ { "beautybh.com", true },
{ "beautyby.tv", true },
+ { "beautycarepack.com.ng", true },
{ "beautyevent.fr", true },
{ "beautykat.ru", true },
{ "beaverdamautos.com", true },
{ "beavertales.ca", true },
- { "bebeautiful.business", true },
{ "bebef.de", true },
{ "bebefofuxo.com.br", true },
{ "bebes.uno", true },
{ "bebest.gov", false },
{ "bebetrotteur.com", true },
+ { "beboldpr.com", true },
{ "bebout.pw", true },
{ "beckenhamcastles.co.uk", true },
{ "beckerantiques.com", true },
+ { "beckyhirstconsulting.com.au", true },
{ "becs.ch", true },
{ "becydog.cz", true },
{ "bedamedia.com", true },
@@ -4725,16 +5694,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bedels.nl", true },
{ "bedfordnissanparts.com", true },
{ "bedrijfsfotoreportages.nl", true },
- { "bedrijfshulpverleningfriesland.nl", true },
- { "bedrijfsportaal.nl", true },
{ "bedrocklinux.org", true },
{ "bedste10.dk", true },
{ "bee-creative.nl", true },
{ "bee-line.org.uk", true },
- { "bee-social.it", true },
+ { "bee-removal-dublin.com", true },
{ "bee.clothing", true },
+ { "bee.supply", true },
{ "bee.tools", true },
- { "beechwoodmetalworks.com", true },
{ "beehive.govt.nz", true },
{ "beehive42.com", true },
{ "beehive42.eu", true },
@@ -4751,7 +5718,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beekeeping.clothing", true },
{ "beekeeping.tools", true },
{ "beeksnetwork.nl", true },
- { "beelen.fr", true },
{ "beelit.com", true },
{ "beeming.net", true },
{ "beer9.com", true },
@@ -4764,31 +5730,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beerjet.sk", true },
{ "beerjetcz.cz", true },
{ "beerly.eu", true },
- { "beermedlar.com", true },
{ "beerradar.no", true },
{ "beerradar.party", true },
{ "beersconf.com", true },
+ { "beeswarmrehoming.com.au", 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 },
+ { "beforesunrise.de", true },
{ "beforeyoueatoc.com", true },
{ "beframed.ch", true },
{ "befreewifi.info", true },
{ "befundonline.de", true },
+ { "begabungsfoerderung.info", true },
{ "begbie.com", true },
- { "beginatzero.com", true },
{ "beginner.nl", true },
- { "beginwp.top", true },
{ "behamepresrdce.sk", true },
{ "behamzdarma.cz", true },
{ "behead.de", true },
{ "beherit.pl", true },
- { "behindthethrills.com", true },
+ { "behindertenagentur.de", true },
{ "behna24hodin.cz", true },
{ "behoreal.cz", true },
{ "bei18.com", true },
@@ -4820,8 +5785,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "belfastlocks.com", true },
{ "belfasttechservices.co.uk", true },
{ "belfor-probleme.de", true },
+ { "belfordroxo.net.br", true },
{ "belge.rs", true },
{ "belgers.com", true },
+ { "belgicaservices.be", true },
{ "belhopro.be", true },
{ "belics.com", true },
{ "belien-tweedehandswagens.be", true },
@@ -4831,20 +5798,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bella.network", true },
{ "bellaklein.de", true },
{ "bellamodeling.com", true },
+ { "bellezzasenzalimiti.it", true },
{ "bellinghamdetailandglass.com", true },
{ "belloy.ch", true },
{ "belloy.net", true },
- { "bellthrogh.com", true },
{ "bellthrough.com", true },
{ "belly-button-piercings.com", true },
{ "bellyandbrain.amsterdam", true },
+ { "belmarresort.com", true },
{ "belmontgoessolar.org", true },
{ "belos.at", true },
{ "belouga.org", true },
{ "belt.black", true },
{ "beltar.nl", true },
{ "belvoirbouncycastles.co.uk", true },
- { "bely-mishka.by", true },
{ "belyoung.com.br", true },
{ "bemcorp.de", true },
{ "bemindly.com", true },
@@ -4858,7 +5825,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "benary.org", true },
{ "benbalter.com", true },
{ "benbozsa.ca", true },
- { "benburwell.com", true },
{ "benc.io", true },
{ "benceskorka.com", true },
{ "benchling.com", true },
@@ -4867,10 +5833,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bencorby.com", true },
{ "bendemaree.com", true },
{ "bendigoland.com.au", true },
+ { "bendingtheending.com", true },
{ "bendix.co", true },
{ "bendyworks.com", true },
{ "beneathvt.com", true },
{ "benedict-balzer.de", true },
+ { "benediktgeissler.de", true },
+ { "benefits.gov", true },
+ { "benefitsbookcase.com", true },
{ "benefitshub.io", true },
{ "benefitshub.xyz", true },
{ "benepiscinas.com.br", true },
@@ -4884,8 +5854,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "benhavenarchives.org", true },
{ "benjamin-hering.com", true },
{ "benjamin.pe", true },
- { "benjaminbedard.com", true },
{ "benjaminblack.net", true },
+ { "benjamindietrich.com", true },
+ { "benjamindietrich.de", true },
{ "benjaminjurke.com", true },
{ "benjaminkopelke.com", true },
{ "benjaminpiquet.fr", true },
@@ -4893,7 +5864,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "benjaminvasel.de", true },
{ "benjii.me", true },
{ "benjijaldoner.nl", true },
- { "benleemd.com", true },
{ "benmatthews.com.au", true },
{ "benmillett.us", false },
{ "bennettsbouncycastlehire.co.uk", true },
@@ -4902,7 +5872,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bennierobinson.com", true },
{ "bennink.me", true },
{ "benno.frl", true },
- { "benny003.de", true },
{ "bennygommers.nl", true },
{ "benriya.shiga.jp", true },
{ "bensbouncycastles.co.uk", true },
@@ -4911,6 +5880,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "benshoof.org", true },
{ "bensinflatables.co.uk", true },
{ "bensokol.com", true },
+ { "benstevinson.com", true },
{ "bentertain.de", true },
{ "bentley.blog", true },
{ "bentley.link", true },
@@ -4920,30 +5890,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "benvds.com", true },
{ "benz-hikaku.com", true },
{ "benzi.io", true },
+ { "benzina.cn", true },
{ "beoordelingen.be", true },
{ "bepenak.com", true },
{ "bephoenix.org.uk", true },
+ { "beproduct.ru", true },
{ "bepsvpt.me", true },
{ "bequiia.com", true },
{ "beranovi.com", true },
- { "berasavocate.com", true },
{ "beraten-entwickeln-steuern.de", true },
{ "berati.tv", true },
+ { "beratungswelt.dvag", true },
{ "berdu.id", true },
- { "berg-freunde.at", true },
- { "berg-freunde.ch", true },
+ { "bereaplumber.co.za", true },
+ { "bereginy.com.ua", true },
+ { "berend.tk", true },
{ "bergenhave.nl", true },
{ "berger-chiro.com", true },
{ "bergevoet-fa.nl", true },
- { "bergfreunde.de", true },
- { "bergfreunde.dk", true },
- { "bergfreunde.es", true },
- { "bergfreunde.eu", true },
- { "bergfreunde.fi", true },
- { "bergfreunde.it", true },
- { "bergfreunde.nl", true },
- { "bergfreunde.no", true },
- { "bergfreunde.se", true },
{ "berglust-pur.de", true },
{ "bergmanbeachproperties.com", true },
{ "bergmann-fotografin-berlin.de", true },
@@ -4958,11 +5922,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bergstoneware.com", true },
{ "berichtsheft-vorlage.de", true },
{ "berikod.ru", true },
- { "berlin-flirt.de", true },
+ { "beringsoegaard.dk", true },
+ { "berkat-luqs.ddns.net", true },
{ "berlin.dating", true },
{ "bermeitinger.eu", true },
- { "bermos.net", true },
+ { "bermytraq.bm", true },
+ { "berna.fr", true },
{ "bernadetteanderes.ch", true },
+ { "bernama.com.my", true },
+ { "bernar.do", true },
{ "bernardcontainers.be", true },
{ "bernarddickens.com", true },
{ "bernardez-photo.com", true },
@@ -4970,6 +5938,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bernardo.fm", true },
{ "bernat.ch", true },
{ "bernat.im", true },
+ { "bernbrucher.com", true },
+ { "bernbrucher.de", true },
{ "bernd-leitner-fotodesign.com", true },
{ "bernd-leitner-fotodesign.de", true },
{ "bernd-leitner.de", true },
@@ -4979,7 +5949,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bernhardluginbuehl.ch", true },
{ "bernhardluginbuehl.com", true },
{ "bernieware.de", true },
- { "berodes.be", true },
+ { "bernyweb.net", true },
{ "berr.yt", true },
{ "berra.se", true },
{ "berruezoabogados.com", true },
@@ -4997,15 +5967,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bertrandkeller.info", true },
{ "bertsmithvwparts.com", true },
{ "beryl.net", true },
- { "besb.io", true },
- { "beschriftung-metz.de", true },
{ "bescover.com", true },
{ "beserberg.tk", true },
{ "besole.ch", true },
{ "bespaarenergie.click", true },
+ { "bespokebathrooms.com.au", 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 },
@@ -5030,76 +5998,70 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "best-wallpaper.net", true },
{ "best10websitebuilders.com", true },
{ "best2pay.net", true },
+ { "best66.me", true },
{ "bestattungen-kammerer.de", true },
{ "bestattungshaus-kammerer.de", true },
{ "bestautoinsurance.com", true },
{ "bestbatteriesonline.com", true },
{ "bestbefore.com", true },
{ "bestbrakes.com", true },
- { "bestbridal.top", true },
+ { "bestbrokerindia.com", true },
{ "bestbyte.com.br", true },
- { "bestcellular.com", false },
- { "bestdating.today", false },
- { "bestdoc.com.br", true },
+ { "bestdating.today", true },
{ "bestdownloadscenter.com", true },
{ "bestelectricnd.com", true },
- { "bestemailmarketingsoftware.org", true },
{ "bestessaycheap.com", true },
{ "bestessayhelp.com", true },
+ { "bestfotostudio.com", true },
{ "bestfriendsequality.org", true },
{ "bestgiftever.ca", true },
- { "bestgifts4you.com", true },
{ "besti.it", true },
- { "bestinductioncooktop.us", true },
{ "bestinshowing.com", true },
{ "bestinver.es", false },
{ "bestjumptrampolines.be", true },
{ "bestkenmoredentists.com", true },
+ { "bestladyshaver.co.uk", true },
{ "bestlooperpedalsguide.com", true },
{ "bestmotherfucking.website", true },
{ "bestoffert.club", true },
{ "bestoliveoils.com", true },
- { "bestpal.eu", true },
{ "bestpartyhire.com", true },
- { "bestperfumebrands.com", true },
+ { "bestpig.fr", true },
{ "bestplumbing.com", true },
{ "bestpractice.domains", true },
{ "bestschools.io", true },
- { "bestschools.top", true },
{ "bestseries.tv", true },
{ "bestshoesmix.com", true },
+ { "bestwarezone.com", true },
{ "bestwebsite.gallery", true },
- { "bet.eu", true },
{ "betaal.my", true },
{ "betacavi.com", true },
- { "betacloud.io", true },
{ "betaclouds.net", true },
- { "betalenviainternet.nl", true },
{ "betaprofiles.com", true },
{ "betaworx.de", true },
{ "betaworx.eu", true },
{ "betecnet.de", true },
{ "bethanyduke.com", true },
+ { "bethanypeds.com", true },
{ "bethpage.net", true },
{ "betobaccofree.gov", true },
{ "betonbit.com", true },
{ "betonmarkets.info", true },
+ { "betor.cz", true },
{ "betpamm.com", true },
- { "betrallyarabia.com", false },
+ { "betrifft-mich-dsgvo.ch", true },
{ "bets.gg", true },
{ "betseybuckheit.com", true },
{ "betsharpangles.com", true },
- { "betsyshilling.com", true },
+ { "betshoot.com", true },
{ "bett1.de", true },
+ { "bettaline.com.au", true },
{ "better-bounce.co.uk", true },
{ "better.com", true },
{ "better.fyi", true },
- { "betterbabyshop.com.au", true },
+ { "bettercareclinic.co.uk", true },
{ "betterconsult.com", true },
{ "bettercrypto.org", true },
- { "betterhelp.com", true },
- { "betterjapanese.blog", true },
- { "betterjapanese.xyz", true },
{ "betterna.me", true },
{ "betterscience.org", true },
{ "bettersecurity.co", true },
@@ -5121,91 +6083,96 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beulen.pro", true },
{ "beuteugeu.com", true },
{ "bevedo.cz", true },
+ { "bevedo.sk", true },
{ "beveiligingscamerawestland.nl", true },
{ "bevelpix.com", true },
{ "beverlyinternational.com", true },
+ { "bevhills.com", true },
{ "bevinco2020.com", true },
{ "bevinsco.org", true },
{ "bevnut.com", true },
{ "bewegigsruum.ch", true },
{ "bewegungsfluss.com", false },
{ "bewerbungsfibel.de", true },
- { "bewerbungsfoto-deinfoto.ch", true },
+ { "bewertet.de", true },
{ "bewonderen.com", true },
+ { "bexit-security.eu", true },
+ { "bexit-security.nl", true },
{ "bexit.nl", true },
{ "bexleycastles.co.uk", true },
{ "beybiz.com", true },
{ "beyerautomation.com", true },
+ { "beyerm.de", true },
{ "beyond-infinity.org", false },
- { "beyond-rational.com", true },
{ "beyondalderaan.net", true },
{ "beyondbounce.co.uk", true },
+ { "beyondordinarylife.com", true },
{ "beyondpricing.com", true },
- { "beyondthecode.io", true },
{ "beyondtodaymediagroup.com", true },
{ "beyondweb.net", true },
- { "beyonic.com", true },
{ "beyours.be", true },
+ { "bez-energie.de", true },
+ { "bezahlbare-praemien.ch", true },
{ "bezemkast.nl", true },
{ "bezlampowe.pl", true },
+ { "bezlepkovamatka.cz", true },
+ { "bezmlska.cz", false },
{ "bezpecnostsiti.cf", true },
{ "bezposrednio.net.pl", true },
- { "bezr.co.uk", true },
{ "bezzia.com", true },
+ { "bf5.ru", true },
{ "bf7088.com", true },
{ "bf7877.com", true },
{ "bfam.tv", true },
{ "bfcgermania88.de", true },
{ "bfem.gov", true },
- { "bfgcdn.com", true },
+ { "bfh.science", true },
+ { "bfkcloud.ddns.net", true },
{ "bflix.tv", true },
{ "bfob.gg", true },
{ "bforb.sk", true },
{ "bfp-mail.de", true },
{ "bfpg.org", true },
{ "bft-media.com", true },
- { "bftbradio.com", true },
{ "bfw-online.de", true },
- { "bgbhsf.top", true },
- { "bgeo.io", true },
+ { "bgbaby.net", true },
+ { "bgfashion.net", true },
{ "bgfoto.info", true },
{ "bghost.xyz", true },
{ "bgkoleda.bg", true },
- { "bglsingles.de", true },
{ "bgmn.me", true },
{ "bgp.space", true },
{ "bgr34.cz", true },
- { "bgs-game.com", true },
{ "bgtgames.com", true },
{ "bgtoyou.com", true },
{ "bguidinger.com", true },
- { "bgwfans.com", true },
{ "bh-oberland.de", true },
{ "bh.sb", true },
{ "bharath-g.in", true },
{ "bhodisoft.com", true },
- { "bhost.net", true },
+ { "bhserralheria.com.br", true },
{ "bhtelecom.ba", true },
{ "bhuntr.com", true },
{ "bhxch.moe", true },
{ "bi.search.yahoo.com", false },
+ { "bi1gif.radio", true },
+ { "bi8cku.club", true },
+ { "bi8cku.tech", true },
{ "biaggeo.com", true },
+ { "biancapulizie.it", true },
{ "biano-ai.com", true },
{ "biasmath.es", true },
{ "biathloncup.ru", true },
{ "bibica.net", true },
{ "bible-maroc.com", true },
- { "bible.ru", true },
- { "bibleonline.ru", true },
- { "bibles.com.tw", true },
- { "biblethoughts.blog", true },
+ { "bibleversesfordailyliving.com", true },
{ "bibliaon.com", true },
- { "biblio.wiki", true },
{ "biblioblog.fr", true },
{ "bibliomarkt.ch", true },
{ "biblionaut.net", true },
{ "biblioporn.com", true },
- { "bibliotekarien.se", true },
+ { "bibliotecadeseguranca.com.br", true },
+ { "bibliotherapie-existentiale.com", true },
{ "biboumail.fr", true },
{ "bibuch.com", true },
{ "bicecontracting.com", true },
@@ -5222,27 +6189,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bidu.com.br", true },
{ "bie.edu", false },
{ "bie08.com", true },
- { "bie35.com", true },
{ "bie79.com", true },
+ { "biec.moe", true },
{ "biegal.ski", true },
{ "biegner-technik.de", true },
- { "biehl.tech", true },
{ "biehlsoft.info", true },
{ "bielefailed.de", true },
{ "bien-etre-sante.info", true },
+ { "bienestarinmobiliarioyaliadas.com", true },
{ "bienici.com", true },
{ "bienoubien.org", true },
+ { "bienstar.tv", true },
{ "bierbaumer.net", true },
{ "biergaizi.info", true },
+ { "bierwebshop.be", true },
{ "bieser.ch", true },
{ "biester.pro", true },
- { "bieumau.net", true },
{ "bifrost.cz", true },
{ "big-andy.co.uk", true },
{ "big-bounce.co.uk", true },
{ "big-fluglaerm-hamburg.de", true },
+ { "bigadcompany.com", true },
{ "bigbendguide.com", true },
{ "bigbluedoor.net", true },
+ { "bigboris.tk", true },
{ "bigbouncebouncycastles.co.uk", true },
{ "bigbouncetheory.co.uk", true },
{ "bigbounceuk.com", true },
@@ -5250,37 +6220,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bigcakes.dk", true },
{ "bigclassaction.com", true },
{ "bigdinosaur.org", true },
- { "biggreenexchange.com", true },
+ { "bighouse-events.co.uk", true },
{ "bigideasnetwork.com", true },
{ "bigio.com.br", true },
{ "biglou.com", false },
{ "bigorbitgallery.org", true },
+ { "bigpicture-learning.com", true },
{ "bigserp.com", true },
{ "bigshopper.com", true },
{ "bigshopper.nl", true },
{ "bigsisterchannel.com", true },
{ "bigskylifestylerealestate.com", true },
{ "bigskymontanalandforsale.com", true },
- { "bigwiseguide.com", true },
{ "bihub.io", true },
{ "biilo.com", true },
{ "bijancompany.com", true },
- { "bijoux.com.br", true },
{ "bijouxcherie.com", true },
{ "biju-neko.jp", true },
{ "bijuteriicualint.ro", true },
- { "bike-discount.de", true },
{ "bike-kurse.ch", true },
{ "bike-shack.com", true },
{ "bikebay.it", true },
{ "bikehistory.org", true },
{ "biker.dating", true },
- { "bikerebel.com", true },
+ { "bikhof.com", true },
{ "bikiniatoll.com", true },
{ "bikiniseli.com", true },
{ "bikkelbroeders.com", false },
{ "bikkelbroeders.nl", false },
- { "bilalic.com", true },
{ "bilalkilic.de", true },
{ "bilbayt.com", true },
{ "bilder-designs.de", true },
@@ -5292,41 +6259,73 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bilgo.com", true },
{ "bilibili.link", true },
{ "bilibili.red", true },
+ { "bilibili.sh", true },
{ "bilimoe.com", true },
{ "bilke.org", true },
{ "billaud.eu.org", true },
{ "billfazz.com", true },
{ "billgoldstein.name", true },
{ "billhartzer.com", true },
+ { "billigastehemsidan.se", 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 },
+ { "billogr.am", true },
+ { "billogram.be", true },
+ { "billogram.ch", true },
+ { "billogram.co", true },
+ { "billogram.co.uk", true },
{ "billogram.com", true },
+ { "billogram.de", true },
+ { "billogram.es", true },
+ { "billogram.eu", true },
+ { "billogram.fi", true },
+ { "billogram.fr", true },
+ { "billogram.io", true },
+ { "billogram.it", true },
+ { "billogram.me", true },
+ { "billogram.net", true },
+ { "billogram.nl", true },
+ { "billogram.nu", true },
+ { "billogram.org", true },
+ { "billogram.se", true },
+ { "billogramcontent.com", true },
+ { "billograminternal.com", true },
+ { "billogramstatic.com", true },
+ { "billogramtest.com", true },
+ { "billopay.com", true },
+ { "billopay.de", true },
+ { "billopay.se", true },
{ "billpro.com", false },
- { "billrhodesbakery.com", true },
- { "billsqualityautocare.com", true },
{ "billy.pictures", true },
{ "billyoh.com", true },
{ "billysbouncycastlehire.co.uk", true },
{ "billywig.stream", true },
{ "biltullen.com", true },
+ { "bim.physio", true },
{ "bimbo.com", false },
{ "bimbo.com.ar", false },
{ "bimbobakeriesusa.com", false },
+ { "bimibroccoli.co.uk", true },
+ { "bimibroccoli.com", true },
+ { "bimibroccoli.dk", true },
+ { "bimibroccoli.it", true },
+ { "bimibroccoli.nl", true },
+ { "bimibroccoli.se", true },
+ { "bimibrocoli.es", true },
+ { "bimibrocoli.fr", true },
+ { "bimibrokkoli.de", true },
{ "bimmerlabs.com", true },
{ "bin95.com", true },
{ "bina.az", true },
- { "binans.co", true },
{ "binans.com", true },
{ "binans.com.tr", true },
- { "binans.io", true },
{ "binans.net", true },
- { "binans.xyz", true },
+ { "binary.house", true },
{ "binaryapparatus.com", true },
{ "binaryappdev.com", true },
{ "binarycreations.scot", true },
@@ -5339,11 +6338,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bing.com", true },
{ "bingobank.org", true },
{ "binhex.net", true },
+ { "binhp.com", true },
+ { "biniou.net", true },
{ "binkconsulting.be", true },
{ "binnenmeer.de", true },
{ "binsp.net", true },
- { "bintangsyurga.com", true },
- { "bintelligence.info", true },
{ "binti.com", true },
{ "bintooshoots.com", true },
{ "bio-disinfestazione.it", true },
@@ -5360,30 +6359,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "biodots.eu", true },
{ "biodots.info", true },
{ "biodots.it", true },
+ { "bioedilizia.roma.it", true },
{ "bioemsan.cz", true },
{ "bioequivalence.design", true },
{ "bioetco.ch", true },
{ "bioexploratorium.pl", true },
+ { "biofrequenze.it", true },
{ "biogecho.ch", true },
{ "biogecho.swiss", true },
{ "biogeist.de", true },
- { "biogeniq.ca", true },
{ "biohappiness.com", true },
{ "bioharmony.ca", true },
{ "biointelligence-explosion.com", true },
- { "bioknowme.com", true },
{ "bioleev.sklep.pl", true },
{ "bioligo.ch", true },
{ "biologis.ch", true },
{ "biology-colleges.com", true },
{ "biomag.it", true },
{ "biomasscore.com", true },
+ { "biomathalliance.org", true },
{ "biomed-hospital.ch", true },
{ "biomed.ch", true },
{ "biometrics.es", true },
- { "biomin.co.uk", true },
+ { "biomin.co.uk", false },
{ "biomodra.cz", true },
- { "biopronut.com", true },
+ { "bionima.com", true },
{ "biopsychiatry.com", true },
{ "bioresonanz-ibiza.com", true },
{ "biosafe.ch", true },
@@ -5403,11 +6403,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "birdiehosting.nl", true },
{ "birdslabel.com", true },
{ "birdymanbestreviews.com", true },
- { "birgerschwarz.de", true },
+ { "birgerschwarz.de", false },
{ "birgit-rydlewski.de", true },
- { "birgitandmerlin.com", true },
{ "birkenstab.de", true },
- { "birminghamcastlehire.co.uk", true },
{ "birminghamsunset.com", true },
{ "birthdaytip.com", true },
{ "birthmatters.us", true },
@@ -5415,9 +6413,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "birzan.org", true },
{ "bisa-sis.net", true },
{ "bischoff-mathey.family", true },
- { "biscoint.io", true },
{ "biscuitcute.com.br", true },
{ "biser-borisov.eu", true },
+ { "biser.online", true },
{ "bishopscourt-hawarden.co.uk", true },
{ "bismarck-tb.de", true },
{ "biso.ga", true },
@@ -5428,6 +6426,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bistrocean.com", true },
{ "bistroservice.de", true },
{ "bistrotdelagare.fr", true },
+ { "biswas.me", true },
{ "bit-cloud.de", true },
{ "bit-rapid.com", true },
{ "bit-sentinel.com", true },
@@ -5442,7 +6441,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bitbucket.io", true },
{ "bitbucket.org", true },
{ "bitburner.de", true },
- { "bitcert.com", true },
{ "bitchigo.com", true },
{ "bitcoin-india.net", true },
{ "bitcoin-india.org", true },
@@ -5455,13 +6453,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bitcoin.org", true },
{ "bitcoin.us", true },
{ "bitcoinbitcoin.com", true },
+ { "bitcoincasinos.pro", true },
{ "bitcoincore.org", true },
{ "bitcoinfees.net", true },
{ "bitcoinindia.com", true },
{ "bitcoinkarlsruhe.de", true },
{ "bitcoinrealestate.com.au", true },
{ "bitcointhefts.com", true },
- { "bitcoinx.gr", true },
+ { "bitcointrade.com.br", true },
{ "bitcoinx.ro", true },
{ "bitcork.io", true },
{ "bitcqr.io", true },
@@ -5469,12 +6468,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bitex.la", true },
{ "bitfasching.de", false },
{ "bitfehler.net", true },
- { "bitfence.io", true },
{ "bitfinder.nl", true },
{ "bitfuse.net", true },
{ "bitgo.com", true },
{ "bitgrapes.com", true },
- { "bithap.com", true },
+ { "bitguerrilla.com", true },
{ "bithir.co.uk", true },
{ "bititrain.com", true },
{ "bitlish.com", true },
@@ -5489,7 +6487,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bitmessage.ch", true },
{ "bitmidi.com", true },
{ "bitminter.com", true },
- { "bitmoe.com", true },
{ "bitok.com", true },
{ "bitpoll.de", true },
{ "bitpoll.org", true },
@@ -5506,7 +6503,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bitsoffreedom.nl", true },
{ "bitstorm.nl", true },
{ "bitstorm.org", true },
- { "bitsum.com", true },
{ "bitsy.com", true },
{ "bitsync.nl", true },
{ "bitten.pw", true },
@@ -5520,14 +6516,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "biurokarier.edu.pl", true },
{ "bixbydevelopers.com", true },
{ "bixservice.com", true },
+ { "biyori.moe", true },
{ "biyou-homme.com", true },
{ "biz4x.com", true },
{ "bizbudding.com", true },
{ "bizcash.co.za", true },
- { "bizeau.ch", true },
{ "biznesonline.info", true },
{ "bizniskatalog.mk", true },
{ "biznpro.ru", true },
+ { "bizpare.com", true },
{ "bizstarter.cz", true },
{ "biztera.com", true },
{ "biztok.eu", true },
@@ -5537,11 +6534,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bjarnerest.de", true },
{ "bjmgeek.science", true },
{ "bjmun.cn", true },
+ { "bjoe2k4.de", true },
+ { "bjoernengel.de", true },
+ { "bjoernengel.eu", true },
{ "bjolanta.pl", true },
{ "bjornhelmersson.se", true },
{ "bjornjohansen.no", true },
{ "bjs.gov", true },
{ "bjsbouncycastles.com", true },
+ { "bjut.photos", true },
+ { "bk-wife.com", true },
{ "bkentertainments.co.uk", true },
{ "bkhayes.com", true },
{ "bkhpilates.co.uk", true },
@@ -5559,24 +6561,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bl4ckb0x.org", true },
{ "blaauwgeers.pro", true },
{ "blabber.im", true },
- { "blablacar.co.uk", false },
- { "blablacar.com", false },
- { "blablacar.com.tr", false },
- { "blablacar.com.ua", false },
- { "blablacar.de", false },
- { "blablacar.es", false },
- { "blablacar.fr", false },
- { "blablacar.hr", false },
- { "blablacar.hu", false },
- { "blablacar.in", false },
- { "blablacar.it", false },
- { "blablacar.mx", false },
- { "blablacar.nl", false },
- { "blablacar.pl", false },
- { "blablacar.pt", false },
- { "blablacar.ro", false },
- { "blablacar.rs", false },
- { "blablacar.ru", false },
+ { "blablacar.co.uk", true },
+ { "blablacar.com", true },
+ { "blablacar.com.tr", true },
+ { "blablacar.com.ua", true },
+ { "blablacar.de", true },
+ { "blablacar.es", true },
+ { "blablacar.fr", true },
+ { "blablacar.hr", true },
+ { "blablacar.hu", true },
+ { "blablacar.in", true },
+ { "blablacar.it", true },
+ { "blablacar.mx", true },
+ { "blablacar.nl", true },
+ { "blablacar.pl", true },
+ { "blablacar.pt", true },
+ { "blablacar.ro", true },
+ { "blablacar.rs", true },
+ { "blablacar.ru", true },
+ { "black-gay-porn.biz", true },
+ { "black-holes.org", true },
{ "black-khat.com", true },
{ "black-mail.nl", true },
{ "black-raven.fr", true },
@@ -5585,14 +6589,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "black1ce.com", true },
{ "blackandpony.de", true },
{ "blackbag.nl", true },
- { "blackbase.de", true },
+ { "blackbam.at", true },
+ { "blackberryforums.be", true },
{ "blackbird-whitebird.com", true },
- { "blackbyte.it", true },
+ { "blackboxconnections.com", true },
{ "blackcat.ca", true },
{ "blackcatinformatics.ca", true },
{ "blackcatinformatics.com", true },
- { "blackdotbrewery.com", true },
+ { "blackcountrymetalworks.co.uk", true },
{ "blackdown.de", true },
+ { "blackdragoninc.org", true },
{ "blackedbyte.com", true },
{ "blackevent.be", true },
{ "blackfire.io", true },
@@ -5605,7 +6611,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blackislegroup.com", true },
{ "blackjackballroomcasino.info", true },
{ "blackl.net", true },
- { "blacklightparty.be", true },
{ "blackmagicshaman.com", true },
{ "blackmonday.gr", true },
{ "blacknetwork.eu", true },
@@ -5614,8 +6619,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blackpapermoon.de", true },
{ "blackpayment.ru", true },
{ "blackphoenix.de", true },
- { "blackpi.dedyn.io", true },
{ "blackroadphotography.de", true },
+ { "blackroot.eu", true },
{ "blackscytheconsulting.com", true },
{ "blackseals.net", true },
{ "blacktown.eu", true },
@@ -5629,28 +6634,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blameomar.com", true },
{ "blancodent.com", true },
{ "blanket.technology", true },
- { "blantr.com", true },
{ "blasorchester-runkel.de", true },
+ { "blastair.fr", true },
{ "blastentertainment.com.au", true },
{ "blastersklan.com", true },
{ "blastzoneentertainments.co.uk", true },
- { "blatnice.cf", true },
- { "blatnice.ga", true },
- { "blatnice.gq", true },
- { "blatnice.ml", true },
- { "blatnice.tk", true },
{ "blaudev.es", true },
- { "blauerhunger.de", true },
{ "blayne.me", true },
{ "blayneallan.com", true },
{ "blazing.cz", true },
{ "blazor.nl", true },
+ { "blblblblbl.fr", true },
{ "bleaching-tipps.de", true },
+ { "blechbuexn.de", true },
{ "bleche-onlineshop.at", true },
{ "bleche-onlineshop.de", true },
{ "blechinger.io", true },
{ "blechschmidt.saarland", true },
- { "blend.guru", true },
{ "blenderinsider.com", true },
{ "blenderrecipereviews.com", true },
{ "blending.kr", true },
@@ -5663,24 +6663,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blessedguy.com", true },
{ "blewebprojects.com", true },
{ "blichmann.eu", true },
- { "blicy.net", true },
+ { "blideobames.com", true },
{ "blidz.com", true },
{ "blieque.co.uk", true },
{ "bliesekow.net", true },
{ "blikk.no", true },
+ { "blikund.swedbank.se", true },
{ "blinder.com.co", true },
{ "blindpigandtheacorn.com", true },
- { "blinds-unlimited.com", true },
{ "blingsparkleshine.com", true },
{ "blingwang.cn", true },
{ "blink-security.com", true },
+ { "blinkdrivex.com", true },
{ "blinking.link", true },
- { "blinkspeed.eu", true },
{ "blio.tk", true },
{ "blip.website", true },
{ "blissjoe.com", true },
{ "blissplan.com", true },
- { "blitzprog.org", true },
{ "blivawesome.dk", true },
{ "blivvektor.dk", true },
{ "blizhost.com", true },
@@ -5689,7 +6688,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blkbx.eu", true },
{ "blm.gov", true },
{ "blo-melchiorshausen.de", true },
+ { "blobemoji.com", true },
{ "blobfolio.com", true },
+ { "blobs.gg", true },
{ "blocher.ch", true },
{ "blochoestergaard.com", true },
{ "block-this.com", true },
@@ -5698,14 +6699,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blockchain.info", true },
{ "blockchainced.com", true },
{ "blockchaindaigakko.jp", true },
- { "blockchainevents.nl", true },
{ "blockchainwhiz.com", true },
{ "blockcheck.network", true },
+ { "blockclique.io", true },
{ "blockedyourcar.com", true },
{ "blockedyourcar.net", true },
{ "blockedyourcar.org", true },
{ "blockified.io", true },
{ "blockmetry.com", true },
+ { "blocknodes.live", true },
{ "blockstream.com", true },
{ "blockxit.de", true },
{ "bloemenbesteld.nl", true },
@@ -5718,6 +6720,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bloganchoi.com", true },
{ "blogarts.net", true },
{ "blogbooker.com", true },
+ { "blogcast.com", true },
{ "blogconcours.net", true },
{ "blogdelosjuguetes.com", true },
{ "blogdieconomia.it", true },
@@ -5726,13 +6729,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blogexpert.ca", true },
{ "bloggermumofthreeboys.com", true },
{ "blogging-life.com", true },
- { "bloggingwithchildren.com", true },
- { "bloggytalky.com", true },
{ "bloginbeeld.nl", true },
{ "blogit.fi", true },
{ "bloglines.co.za", true },
{ "bloglogistics.com", true },
{ "bloglyric.com", true },
+ { "blognr.com", true },
{ "blogom.at", true },
{ "blogpentrusuflet.ro", true },
{ "blogreen.org", true },
@@ -5745,7 +6747,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bloodsports.org", true },
{ "bloody.pw", true },
{ "bloom-avenue.com", true },
- { "bloom.sh", false },
+ { "bloom.sh", true },
+ { "blopezabogado.es", true },
{ "bltc.co.uk", true },
{ "bltc.com", true },
{ "bltc.net", true },
@@ -5758,43 +6761,56 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blue-gmbh.de", true },
{ "blue-leaf81.net", true },
{ "blue42.net", true },
+ { "blueangel.org.tw", true },
{ "bluebahari.gq", true },
{ "blueblou.com", true },
+ { "bluecanvas.io", true },
{ "bluechilli.com", true },
- { "bluecon.ninja", true },
{ "bluecrazii.nl", true },
{ "blued.moe", true },
{ "bluedeck.org", true },
{ "blueflare.org", true },
{ "bluefrag.com", true },
{ "bluefuzz.nl", true },
+ { "bluehelixmusic.com", true },
{ "blueimp.net", true },
{ "bluekrypt.com", true },
{ "blueliquiddesigns.com.au", true },
+ { "bluemarmalade.co.uk", true },
{ "bluemeda.web.id", true },
+ { "bluemoonroleplaying.com", true },
{ "bluemosh.com", true },
{ "bluemtnrentalmanagement.ca", true },
{ "bluenote9.com", true },
{ "blueoakart.com", true },
{ "blueperil.de", true },
+ { "blueplumbinggroup.com.au", true },
{ "bluepoint.one", true },
{ "bluepostbox.de", true },
+ { "blueprintrealtytn.com", true },
{ "bluepromocode.com", true },
{ "bluerootsmarketing.com", true },
{ "blueskycoverage.com", true },
+ { "blueskydigitalstrategy.com", true },
{ "bluestardiabetes.com", true },
{ "bluesuncamping.com", true },
{ "bluesunhotels.com", true },
{ "blueswandaily.com", true },
{ "bluetexservice.com", true },
{ "bluewavewebdesign.com", true },
+ { "bluewizardart.net", true },
{ "bluex.im", true },
{ "bluex.info", true },
{ "bluex.net", true },
{ "bluex.org", true },
{ "blueyed.eu", true },
+ { "bluffplumber.co.za", true },
+ { "blui.cf", true },
+ { "blui.xyz", true },
{ "bluiandaj.ml", true },
+ { "bluicraft.tk", true },
{ "bluimedia.com", true },
+ { "bluinet.com", true },
{ "blumenfeldart.com", true },
{ "blumiges-fischbachtal.de", false },
{ "bluntandsnakes.com", true },
@@ -5803,6 +6819,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blurringexistence.net", true },
{ "blusens.com", true },
{ "blusmurf.net", true },
+ { "blutopia.xyz", false },
{ "blyat.science", true },
{ "blyth.me.uk", true },
{ "blzrk.com", true },
@@ -5812,41 +6829,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bmk-kramsach.at", true },
{ "bmoattachments.org", true },
{ "bmone.net", true },
- { "bmriv.com", true },
{ "bmros.com.ar", true },
{ "bmw-motorradclub-seefeld.de", true },
{ "bmwcolors.com", true },
{ "bn1digital.co.uk", true },
{ "bn4t.me", true },
{ "bnbsinflatablehire.co.uk", true },
+ { "bnck.me", true },
{ "bngs.pl", true },
{ "bnin.org", true },
{ "bnjscastles.co.uk", true },
{ "bnstree.com", true },
{ "bnty.net", true },
+ { "bnusd.cn", true },
{ "bnzblowermotors.com", true },
{ "bo4tracker.com", true },
{ "boardgamegeeks.de", true },
{ "boards.ie", true },
+ { "boardspot.com", true },
{ "boat-engines.eu", true },
- { "boatme.de", true },
{ "boattrader.com", true },
{ "boattrader.com.au", true },
{ "bobaly.es", true },
{ "bobancoamigo.com", true },
+ { "bobasy.pl", true },
{ "bobazar.com", true },
+ { "bobbyhensley.com", true },
{ "bobcopeland.com", true },
+ { "bobep.ru", true },
{ "bobkidbob.com", true },
{ "bobkoetsier.nl", true },
{ "bobnbouncedublin.ie", true },
{ "bobobox.net", true },
- { "boboolo.com", true },
{ "bobstronomie.fr", true },
{ "bocamo.it", true },
+ { "boccabell.com", true },
+ { "bochantinobgyn.com", true },
{ "bochs.info", true },
{ "bockenauer.at", true },
- { "bocloud.eu", true },
{ "bocreation.fr", true },
+ { "bodemplaten4x4.nl", true },
{ "bodhi.fedoraproject.org", true },
{ "bodis.nl", true },
{ "bodsch.com", true },
@@ -5857,8 +6879,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bodypainter.pl", true },
{ "bodypainting.waw.pl", true },
{ "bodyshopnews.net", true },
- { "bodyweb.com.br", true },
- { "bodyworkbymichael.com", true },
{ "bodyworksautorebuild.com", true },
{ "boeddhashop.nl", true },
{ "boekenlegger.nl", true },
@@ -5867,7 +6887,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bogdancornianu.com", true },
{ "bogdanepureanu.ro", true },
{ "bogner.sh", true },
- { "bogobeats.com", true },
{ "bogosity.se", true },
{ "bohan.co", true },
{ "bohramt.de", true },
@@ -5881,10 +6900,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bokka.com", true },
{ "bokkeriders.com", true },
{ "bokutake.com", true },
+ { "bol.io", true },
{ "boldmediagroup.com", true },
{ "boldt-metallbau.de", true },
{ "bolektro.de", true },
{ "boleyn.su", true },
+ { "bolgarka.kz", true },
{ "bolgarnyelv.hu", true },
{ "bolivarfm.com.ve", true },
{ "bologna-disinfestazioni.it", true },
@@ -5892,8 +6913,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bolt.cm", false },
{ "boltbeat.com", true },
{ "bolte.org", true },
+ { "boltenergy.ca", true },
+ { "boltmobile.ca", true },
{ "bomb.codes", true },
{ "bombe-lacrymogene.fr", true },
+ { "bomboniere.roma.it", true },
{ "bomhard.de", true },
{ "bonaccorso.eu", true },
{ "bonami.cz", true },
@@ -5903,21 +6927,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bonami.sk", true },
{ "bonawehouse.co.uk", true },
{ "bonbonmania.com", true },
- { "bondank.com", true },
+ { "bondagefetishstore.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 },
+ { "bongbabyhouse.vn", true },
+ { "bongloy.com", true },
{ "bongo.cat", true },
{ "bonifacius.be", true },
{ "bonito.pl", true },
{ "bonnant-associes.ch", true },
{ "bonnant-partners.ch", true },
- { "bonnebouffe.fr", true },
{ "bonniecoloring.com", true },
{ "bonniedraw.com", true },
{ "bonniekitchen.com", true },
@@ -5928,47 +6953,50 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bonnyprints.es", true },
{ "bonnyprints.fr", true },
{ "bonprix.co.uk", true },
- { "bonqoeur.ca", true },
{ "bonrecipe.com", true },
{ "bonsaimedia.nl", true },
{ "bonsi.net", true },
+ { "bonus.ca", true },
+ { "bonus.net.nz", true },
+ { "bonus.pl", true },
+ { "bonussource.com", true },
{ "bonux.co", true },
{ "boodmo.com", true },
- { "boogaerdtmakelaars.nl", true },
{ "boogiebouncecastles.co.uk", true },
{ "book-in-hotel.com", true },
{ "booker.ly", true },
{ "bookingapp.be", true },
{ "bookingapp.nl", true },
- { "bookingready.com", true },
{ "bookingslog.com", true },
{ "bookingworldspeakers.com", true },
{ "bookluk.com", true },
{ "bookmein.in", true },
+ { "bookofdenim.com", true },
{ "booksearch.jp", true },
+ { "bookshopofindia.com", true },
{ "booksinthefridge.at", true },
{ "booksouthafrica.travel", true },
+ { "booktoan.com", true },
{ "booktracker-org.appspot.com", true },
+ { "bookwave.art", true },
{ "bookzaga.com", true },
{ "bool.be", true },
- { "boombv.com", true },
+ { "boombv.com", false },
{ "boomersurf.com", true },
{ "boomshelf.com", true },
{ "boomshelf.org", true },
- { "boomvm.pw", true },
{ "boonbox.com", true },
- { "booox.biz", true },
{ "booox.cc", true },
{ "booox.info", true },
{ "booox.net", true },
{ "booox.org", true },
- { "booox.pw", true },
{ "boop.gq", true },
{ "boop.pro", true },
{ "booplab.com", true },
- { "booq.org", true },
{ "booquiz.com", true },
{ "boosinflatablegames.co.uk", true },
+ { "boosman.nu", true },
+ { "boosmanpoolservice.com", true },
{ "boost.fyi", true },
{ "boost.ink", true },
{ "boothlabs.me", true },
@@ -5977,6 +7005,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bopiweb.com", true },
{ "bopp.org", true },
{ "borahan.net", true },
+ { "boran.cl", true },
{ "borchers.ninja", true },
{ "bordadoenpedreria.com", true },
{ "bordes.me", true },
@@ -5985,45 +7014,51 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "borg.cloud", true },
{ "borgodigatteraia.it", true },
{ "boringsmith.com", true },
- { "boris64.net", true },
{ "borisenko.by", true },
- { "borisschapira.com", true },
{ "borja.io", true },
{ "born2bounce.co.uk", true },
{ "bornandgrazed.com", true },
{ "borneodictionary.com", true },
{ "bornfiber.dk", true },
{ "bornhack.dk", true },
+ { "borowski.pw", true },
{ "borrelpartybus.nl", true },
{ "borysek.net", true },
+ { "borysenko.se", true },
{ "bosabosa.org", true },
{ "boscoyacht.ch", true },
{ "boskeopolis-stories.com", true },
{ "boss.az", true },
{ "bostadsportal.se", true },
{ "bostonadvisors.com", true },
+ { "bostonaoii.com", true },
{ "bosufitness.cz", true },
{ "bosun.io", true },
{ "bot-manager.pl", true },
+ { "botealis.ch", true },
{ "botezdepoveste.ro", true },
{ "botguard.net", true },
{ "bothellwaygarage.net", true },
+ { "botmastery.com", true },
{ "botoes-primor.pt", true },
{ "botox.bz", true },
{ "botserver.de", true },
{ "bottaerisposta.net", true },
{ "bottineauneighborhood.org", true },
+ { "bottinquebec.com", true },
{ "bottke.berlin", true },
{ "bottledstories.de", true },
{ "bou.cloud", true },
+ { "bou.ke", true },
{ "bou.lt", true },
{ "bouah.net", true },
{ "bouchard-mathieux.com", true },
{ "bouchonville-knifemaker.com", true },
{ "bouckaert-usedcars.be", true },
{ "boudah.pl", true },
- { "bougeret.fr", true },
{ "boukoubengo.com", true },
+ { "bouldercolorado.gov", true },
+ { "boulderlibrary.org", true },
{ "boulderswap.com", true },
{ "boulzicourt.fr", true },
{ "bounce-a-mania.co.uk", true },
@@ -6040,6 +7075,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncea-bout.com", true },
{ "bounceaboutandplay.co.uk", true },
{ "bounceaboutnewark.co.uk", true },
+ { "bounceaboutsussex.co.uk", true },
{ "bouncealotcastlehire.co.uk", true },
{ "bouncealotnorthwest.co.uk", true },
{ "bounceandwobble.co.uk", true },
@@ -6052,13 +7088,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncecrazy.ie", true },
{ "bouncejumpboston.co.uk", true },
{ "bouncekingdom.co.uk", true },
- { "bouncemania.org", true },
{ "bouncemaniaevents.co.uk", true },
{ "bouncemaniainflatables.co.uk", true },
{ "bouncemonkeys.co.uk", true },
{ "bouncenortheast.co.uk", true },
{ "bouncenpaint.co.uk", true },
- { "bouncenslidenortheast.co.uk", true },
{ "bouncepartycastles.com", true },
{ "bounceroosevents.co.uk", true },
{ "bouncers-bouncycastlehire.co.uk", true },
@@ -6078,7 +7112,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncingscotland.com", true },
{ "bouncourseplanner.net", true },
{ "bouncy-castles-surrey.co.uk", true },
- { "bouncy-tots.co.uk", true },
{ "bouncybaileys.co.uk", true },
{ "bouncyball.eu", true },
{ "bouncyballs.org", true },
@@ -6088,6 +7121,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncycastlehire-norwich.com", true },
{ "bouncycastlehire-sheffield.co.uk", true },
{ "bouncycastlehire.co.uk", true },
+ { "bouncycastlehireauckland.co.nz", true },
{ "bouncycastlehirebarnstaple.co.uk", true },
{ "bouncycastlehirebexley.co.uk", true },
{ "bouncycastlehirechelmsford.org.uk", true },
@@ -6123,23 +7157,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncymacs.co.uk", true },
{ "bouncyrainbows.co.uk", true },
{ "bouncytime.co.uk", true },
- { "bouncytown.co.uk", true },
{ "bouncywouncy.co.uk", true },
{ "bound2bounce.co.uk", true },
{ "boundarybrighton.com", true },
{ "bountyfactory.io", true },
{ "bourasse.fr", true },
{ "bourdon.fr.eu.org", true },
- { "bourhis.info", true },
+ { "bourgeoisdoorco.com", true },
{ "bournefun.co.uk", true },
{ "bourqu.in", true },
+ { "bourseauxservices.com", true },
{ "boutiquedecanetas.com.br", true },
- { "boutiquefutebol.com.br", true },
{ "boutiqueguenaelleverdin.com", true },
+ { "boutoncoupdepoing.fr", true },
{ "bouw.live", true },
{ "bouzouada.com", true },
{ "bouzouks.net", true },
{ "bovenwebdesign.nl", true },
+ { "bovworkplacepensions.com", true },
{ "bowdens.me", true },
{ "bowedwallcrackrepair.com", true },
{ "boweryandvine.com", true },
@@ -6154,27 +7189,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bownty.it", true },
{ "bownty.nl", true },
{ "bowntycdn.net", true },
+ { "bowtie.com.hk", true },
+ { "boxcritters.wiki", true },
+ { "boxcryptor.com", false },
{ "boxpeg.com", true },
{ "boxpirates.to", true },
{ "boxspringbett-160x200.de", true },
{ "boxvergelijker.nl", true },
- { "boyerassoc.com", true },
{ "boyfriendcookbook.com", true },
{ "boyhost.cn", true },
{ "boyinglanguage.com", true },
- { "boyntonobserver.org", true },
+ { "boypoint.de", true },
{ "boysontech.com", true },
- { "boz.nl", false },
{ "bozdoz.com", true },
{ "bozit.com.au", true },
{ "bozosbouncycastles.co.uk", true },
{ "bpa.gov", true },
{ "bpastudies.org", true },
+ { "bphostels.com", true },
{ "bpo.ovh", true },
{ "bpol-forum.de", true },
+ { "bpreguica.com.br", true },
{ "bps.vc", true },
+ { "bpvboekje.nl", true },
{ "bqp.io", true },
{ "bqr.ch", true },
+ { "bqtoolbox.com", true },
{ "br.search.yahoo.com", false },
{ "br3in.nl", false },
{ "br7.ru", true },
@@ -6182,13 +7222,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "braathe.no", true },
{ "bracho.xyz", true },
{ "brachotelborak.com", true },
- { "brackets-salad.com", true },
{ "bradbrockmeyer.com", true },
- { "bradfergusonrealestate.com", true },
{ "bradfordhottubhire.co.uk", true },
{ "bradfordmascots.co.uk", true },
{ "bradkovach.com", true },
- { "bradler.net", true },
+ { "bradler.net", false },
{ "bradlinder.org", true },
{ "bradypatterson.com", true },
{ "braeunlich-gmbh.com", true },
@@ -6206,17 +7244,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brainserve.swiss", true },
{ "brainsik.net", true },
{ "brainster.co", true },
- { "brainvation.de", true },
+ { "braintreegateway.com", true },
{ "brainvoyagermusic.com", true },
{ "brainwav.es", true },
{ "brainwork.space", true },
+ { "brainyapp.net", true },
+ { "braithwaites.ltd", true },
{ "brakemanpro.com", true },
{ "brakpanplumber24-7.co.za", true },
{ "bralnik.com", true },
{ "brambogaerts.nl", true },
{ "bramhallsamusements.com", true },
{ "brammingfys.dk", true },
- { "bramsikkens.be", true },
{ "bramstaps.nl", true },
{ "bramvanaken.be", true },
{ "bramygrozy.pl", true },
@@ -6225,20 +7264,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "branchtrack.com", true },
{ "brandand.co.uk", true },
{ "brandbil.dk", true },
- { "brandcodeconsulting.com", true },
{ "brandcodestyle.com", true },
{ "brandingclic.com", true },
- { "brando753.xyz", true },
+ { "brandingclick.com", true },
+ { "brandondivorcelawyer.com", true },
{ "brandongomez.me", true },
+ { "brandonhaynesmd.com", true },
{ "brandonhubbard.com", true },
+ { "brandonlui.com", true },
{ "brandonwalker.me", true },
{ "brandrocket.dk", true },
{ "brandstead.com", true },
{ "brandtrapselfie.nl", true },
+ { "brandweerbarboek.nl", true },
{ "brandweerfraneker.nl", true },
{ "brandweertrainingen.nl", true },
{ "brandweeruitgeest.nl", true },
{ "brank.as", true },
+ { "branno.org", true },
{ "branw.xyz", false },
{ "brasal.ma", true },
{ "brasalcosmetics.com", true },
@@ -6265,8 +7308,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bravehearts.org.au", true },
{ "braviskindenjeugd.nl", true },
{ "bravisziekenhuis.nl", false },
- { "brazenfol.io", true },
+ { "bravor.pe", true },
{ "brazilian.dating", true },
+ { "braziliex.com", true },
{ "brazillens.com", true },
{ "brazoriabar.org", true },
{ "brb.city", true },
@@ -6275,9 +7319,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "breadandlife.org", true },
{ "breadofgod.org", true },
{ "breakingtech.it", true },
- { "breakpoint.at", true },
- { "breakwall.ml", true },
+ { "breakingvap.fr", true },
{ "breaky.de", true },
+ { "breard.tf", true },
{ "breathedreamgo.com", true },
{ "breathingblanket.com", true },
{ "brecht.ch", true },
@@ -6295,12 +7339,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brefy.com", true },
{ "brege.org", true },
{ "breitband.bz.it", true },
+ { "breizh.me", true },
{ "brejoc.com", true },
{ "brelahotelberulia.com", true },
{ "bremen-restaurants.de", true },
{ "bremerfriedensforum.de", true },
+ { "brenbarnes.com", true },
+ { "brenbarnes.com.au", true },
{ "brendanbatliner.com", true },
- { "brendanscherer.com", true },
{ "brentacampbell.com", true },
{ "brentnewbury.com", true },
{ "bressier.fr", true },
@@ -6308,12 +7354,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brettabel.com", true },
{ "brettcornwall.com", true },
{ "brettlawyer.com", true },
- { "brettw.xyz", true },
{ "bretzner.fr", true },
{ "brevboxar.se", true },
+ { "brewercollinsleadership.com", true },
{ "brewsouth.com", true },
{ "brewspark.co", true },
{ "brewvo.com", true },
+ { "breznet.com", true },
{ "brgins.com", true },
{ "brian-gordon.name", true },
{ "brianalaway.com", true },
@@ -6323,8 +7370,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brianjohnson.co.za", true },
{ "brianlanders.us", true },
{ "brianroadifer.com", true },
+ { "briansemrau.com", true },
{ "briansmith.org", true },
{ "briantkatch.com", true },
+ { "brianwalther.com", true },
{ "brianwesaala.com", true },
{ "briarproject.org", true },
{ "brickftp.com", true },
@@ -6338,8 +7387,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bridgeglobalmarketing.com", true },
{ "bridgehomeloans.com", true },
{ "bridgement.com", true },
- { "bridgevest.com", true },
{ "bridgingdirectory.com", true },
+ { "bridholm.se", true },
{ "bridltaceng.com", true },
{ "brie.tech", true },
{ "briefassistant.com", true },
@@ -6357,6 +7406,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brightside.com", true },
{ "brightworkcreative.com", true },
{ "brigidaarie.com", true },
+ { "brigitte.nyc", true },
{ "brilliantbouncyfun.co.uk", true },
{ "brilliantproductions.co.nz", true },
{ "brimspark.systems", true },
@@ -6364,14 +7414,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "briograce.com.mx", true },
{ "brioukraine.store", true },
{ "brisbanelogistics.com.au", true },
+ { "brisignshop.com.au", true },
{ "bristebein.com", true },
{ "bristolandwestonsuperbounce.com", true },
- { "britanniacateringyeovil.co.uk", true },
{ "britanniapandi.com", true },
{ "britelocate.com", true },
{ "britishbeef.com", true },
{ "britishbookmakers.co.uk", true },
{ "britishgroupsg.com", true },
+ { "britishmeat.com", true },
{ "britishpearl.com", true },
{ "britishsciencefestival.org", true },
{ "britishscienceweek.org", true },
@@ -6380,6 +7431,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "britneyclause.com", true },
{ "brittanyferriesnewsroom.com", true },
{ "britton-photography.com", true },
+ { "brizawen.com", true },
{ "brk.st", true },
{ "brmsalescommunity.com", true },
{ "brn.by", true },
@@ -6403,21 +7455,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bronevichok.ru", true },
{ "bronwynlewis.com", true },
{ "broodbesteld.nl", true },
- { "brookehatton.com", false },
+ { "brooklyncosmetics.net", true },
+ { "brooklynentdoc.com", true },
{ "brooklynrealestateblog.com", true },
{ "brookworth.com", true },
{ "brossmanit.com", true },
{ "brouillard.ch", true },
+ { "brouskat.be", true },
{ "brouwerijdeblauweijsbeer.nl", true },
{ "brovelton.com", true },
{ "brownfieldstsc.org", true },
+ { "brownforces.desi", true },
+ { "brownforces.org", true },
{ "brownihc.com", true },
{ "browntowncountryclub.com", true },
{ "browsemycity.com", true },
{ "browserleaks.com", true },
{ "brrd.io", true },
{ "brring.com", true },
- { "brrr.fr", true },
{ "bru6.de", true },
{ "brubank.com", true },
{ "brubankv1-staging.azurewebsites.net", true },
@@ -6425,18 +7480,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brucemartin.net", true },
{ "brucemobile.de", false },
{ "bruck.me", true },
+ { "bruckmuehler-kanu-club.de", true },
{ "bruckner.li", true },
{ "brudkista.nu", true },
{ "brudkista.se", true },
{ "brudkistan.nu", true },
{ "brudkistan.se", true },
{ "brueser-gmbh.de", true },
- { "bruna-cdn.nl", true },
+ { "brunetderochebrune.com", true },
{ "brunick.de", false },
{ "brunn.email", true },
{ "brunner.ninja", true },
{ "brunohenc.from.hr", true },
{ "brunoproduit.ch", true },
+ { "brunoramos.com", true },
+ { "brunoramos.org", true },
{ "brunosouza.org", true },
{ "brush.ninja", true },
{ "brushcreekyachts.com", true },
@@ -6447,7 +7505,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bryansmith.net", true },
{ "bryansmith.tech", true },
{ "bryantzheng.com", true },
- { "bryantzheng.org", true },
{ "brycecanyon.net", true },
{ "brycecanyonnationalpark.com", true },
{ "bryggebladet.dk", true },
@@ -6458,6 +7515,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bs.to", true },
{ "bs12v.ru", true },
{ "bsa157.org", true },
+ { "bsaft.ml", true },
{ "bsapack564.org", true },
{ "bsatroop794.org", true },
{ "bsc-rietz.at", true },
@@ -6471,20 +7529,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bserved.de", true },
{ "bsg.ro", true },
{ "bsgamanet.ro", true },
+ { "bsgcredit.ro", true },
{ "bsidesf.com", true },
{ "bsidesf.org", true },
{ "bsidessf.com", true },
{ "bsimerch.com", true },
{ "bslim-e-boutique.com", true },
+ { "bsmn.ga", true },
{ "bsmomo-api.com", true },
{ "bso-buitengewoon.nl", true },
{ "bsociabl.com", true },
{ "bsp-southpool.com", true },
- { "bst.gg", true },
{ "bstoked.net", true },
{ "bsw-solution.de", true },
{ "bt123.xyz", true },
+ { "bt780.com", true },
{ "bta.lv", false },
+ { "bta00.com", true },
+ { "bta55.com", true },
{ "btcarmory.com", true },
{ "btcbolsa.com", true },
{ "btcpop.co", true },
@@ -6497,10 +7559,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "btshe.net", true },
{ "btsoft.eu", true },
{ "btsow.com", false },
+ { "btt-39.com", true },
+ { "btt-59.com", true },
+ { "btt0303.com", true },
+ { "btt1212.com", true },
+ { "btt138g.com", true },
+ { "btt2020.com", true },
+ { "btt2121.com", true },
+ { "btt213.com", true },
+ { "btt217.com", true },
+ { "btt219.com", true },
+ { "btt225.com", true },
+ { "btt256.com", true },
+ { "btt3535.com", true },
+ { "btt381g.com", true },
+ { "btt529g.com", true },
+ { "btt686.com", true },
+ { "btt776.com", true },
+ { "btt8.me", true },
+ { "btt88.net", true },
+ { "btt88818.com", true },
+ { "btt891.com", true },
+ { "btt8989a.com", true },
+ { "btt907.com", true },
+ { "btt9090.com", true },
+ { "btt918.cn", true },
+ { "btt945g.com", true },
+ { "btt9797.com", true },
+ { "btt9898.com", true },
+ { "btta13.com", true },
+ { "btta15.com", true },
+ { "btta27.com", true },
+ { "btta30.com", true },
{ "bttc.co.uk", true },
{ "btth.pl", true },
{ "btth.tv", true },
+ { "bttna.com", true },
{ "bttorj45.com", true },
+ { "bttt222.com", true },
+ { "bttt333.com", true },
+ { "bttt999.com", true },
+ { "bttyulecheng0.com", true },
+ { "bttyulecheng7.com", true },
{ "buayacorp.com", true },
{ "bubblegumblog.com", true },
{ "bubblespetspa.com", true },
@@ -6516,13 +7616,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "buck-hydro.de", true },
{ "buckelewrealtygroup.com", true },
{ "bucketlist.co.ke", true },
+ { "buckscountyobgyn.com", true },
{ "buckypaper.com", true },
{ "buddhismus.net", true },
{ "buddie5.com", true },
{ "buddlycrafts.com", true },
+ { "buddycompany.net", true },
{ "buddyworks.net", true },
{ "budeanu.com", true },
- { "buderus-family.be", true },
{ "budger.nl", true },
{ "budget.gov", true },
{ "budgetalk.com", true },
@@ -6531,12 +7632,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "budgetlovers.nl", true },
{ "budgiesballoons.com", true },
{ "budntod.com", true },
+ { "budolangnau.ch", true },
{ "budolfs.de", true },
{ "bueltge.de", true },
{ "buena-vista.cz", true },
{ "buena.me", true },
{ "bueny.com", true },
{ "bueny.net", true },
+ { "buerger-lenke.de", true },
{ "bueroplus.de", true },
{ "bueroschwarz.design", true },
{ "bueroshop24.de", true },
@@ -6555,11 +7658,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "build.chromium.org", true },
{ "buildbox.io", true },
{ "buildbytes.com", true },
- { "buildfaith.ca", true },
{ "buildhoscaletraingi.com", true },
- { "buildingclouds.de", true },
+ { "buildiffuse.com", true },
+ { "building-cost-estimators.com", true },
{ "buildingcostestimators.co.uk", true },
- { "builditfl.com", true },
+ { "builditfl.com", false },
{ "builditsolutions.net", true },
{ "buildkite.com", true },
{ "buildmorebuslanes.com", true },
@@ -6573,13 +7676,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bukivallalkozasok.hu", true },
{ "bukkenfan.jp", true },
{ "bukpcszerviz.hu", true },
- { "bul3seas.eu", true },
{ "bulario.com", true },
{ "bulario.net", true },
- { "bulbcompare.com", true },
+ { "bularmas.com", true },
{ "bulgarianwine.com", true },
+ { "bulk-pagerank-checker.com", true },
{ "bulkcandystore.com", true },
- { "bulkingtime.com", true },
{ "bulkowespacerkowo.nl", true },
{ "bulktrade.de", true },
{ "bulktshirtsjohannesburg.co.za", true },
@@ -6587,7 +7689,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bulldog-hosting.de", false },
{ "bulldoghire.co.uk", true },
{ "bulledair-savons.ch", true },
- { "bulletpoint.cz", true },
{ "bullettags.com", true },
{ "bullpendaily.com", true },
{ "bullshitmail.nl", true },
@@ -6602,14 +7703,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bunix.de", true },
{ "bunkyo-life.com", true },
{ "bunny-rabbits.com", true },
+ { "bunny.parts", true },
{ "bunnycarenotes.com", true },
{ "bunnydiamond.de", true },
{ "bunnyvishal.com", true },
{ "bunq.love", true },
{ "bunzy.ca", true },
+ { "buonventosbt.eu", true },
{ "bupropion.com", true },
- { "buqi.cc", true },
- { "buradangonder.com", true },
{ "burakogun.com", true },
{ "burakogun.com.tr", true },
{ "burakogun.net", true },
@@ -6623,7 +7724,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "burghardt.pl", true },
{ "buri.be", false },
{ "burialinsurancenetwork.com", true },
+ { "burienergy.com", true },
{ "burke.services", true },
+ { "burkhardt.at", true },
{ "burlapsac.ca", true },
{ "burncorp.org", true },
{ "burnerfitness.com", true },
@@ -6634,7 +7737,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "burntfish.com", true },
{ "burnworks.com", true },
{ "buronwater.com", true },
- { "burotec-sarl.com", true },
+ { "burotec-sarl.com", false },
{ "burr.is", true },
{ "bursaries-southafrica.co.za", true },
{ "burtplasticsurgery.com", true },
@@ -6648,11 +7751,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "burzstudios.com", true },
{ "burzum.ch", true },
{ "buscandolosmejores.com", true },
+ { "buscasimple.com", true },
{ "bushbaby.com", true },
{ "busindre.com", true },
+ { "business-creators.ru", true },
{ "business-garden.com", true },
{ "business.facebook.com", false },
+ { "business.gov", true },
{ "businesscentermarin.ch", true },
+ { "businesscircle.com.my", true },
{ "businessesdirectory.eu", true },
{ "businessfactors.de", true },
{ "businessloanconnection.org", false },
@@ -6663,31 +7770,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "busit.be", true },
{ "busiteyiengelle.com", true },
{ "busold.ws", true },
+ { "bustabit.com", true },
{ "bustadice.com", true },
- { "bustimes.org", true },
+ { "bustany.org", true },
{ "bustup-tips.com", true },
{ "busuttil.org.uk", true },
{ "butarque.es", true },
{ "buthowdoyoubuygroceries.com", true },
- { "butikpris.se", true },
{ "butikvip.ru", true },
+ { "butlercountyhistory.org", true },
{ "butlerfm.dk", true },
+ { "butter.horse", true },
{ "butteramotors.com", true },
{ "buttonline.ch", true },
{ "buttonrun.com", true },
+ { "butts-are.cool", true },
{ "butzies.ddnss.org", true },
{ "buurtgenotencollectief.nl", true },
{ "buurtpreventiefraneker.nl", true },
{ "buxum-communication.ch", true },
{ "buy-out.jp", true },
{ "buy2dollars.com", true },
+ { "buyamerican.gov", true },
{ "buybike.shop", true },
{ "buycarpet.shop", true },
{ "buycbd.store", true },
+ { "buycoins.top", true },
{ "buycook.shop", true },
{ "buydissertations.com", true },
- { "buyebook.xyz", true },
{ "buyerdocs.com", true },
+ { "buyessay.org", true },
+ { "buyessays.net", true },
{ "buyhealth.shop", true },
{ "buyinginvestmentproperty.com", true },
{ "buyjewel.shop", true },
@@ -6696,37 +7809,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "buyplussize.shop", true },
{ "buyprofessional.shop", true },
{ "buyritefairview.com", true },
- { "buysellinvestproperties.com", true },
{ "buyseo.store", true },
{ "buysuisse.shop", true },
{ "buytermpaper.com", true },
{ "buywine.shop", true },
+ { "buziaczki.pl", true },
{ "buzz.tools", true },
+ { "buzzconf.io", true },
{ "buzzcontent.com", true },
{ "buzzprint.it", true },
- { "bvalle.com", true },
+ { "bvbmedia.nl", true },
+ { "bvionline.eu", true },
{ "bvisible.be", true },
{ "bvl.aero", true },
+ { "bvv-europe.eu", true },
{ "bw.codes", true },
+ { "bwanglab.com", true },
{ "bwcscorecard.org", true },
{ "bwe-seminare.de", true },
{ "bwfc.nl", true },
+ { "bwgjms.com", true },
+ { "bwgjms.net", true },
+ { "bwgjms.org", true },
{ "bwh1.net", false },
- { "bwilkinson.co.uk", true },
- { "bwin8601.com", true },
- { "bwin8602.com", true },
- { "bwin8603.com", true },
- { "bwin8604.com", true },
- { "bwin8605.com", true },
- { "bwin8606.com", true },
+ { "bwhbwh.com", true },
+ { "bwhbwh.net", true },
{ "bwl-earth.club", true },
{ "bws16.de", true },
{ "bwserhoscaletrainaz.com", true },
{ "bx-n.de", true },
+ { "bx49.cc", true },
{ "bxp40.at", true },
+ { "by777.com", true },
{ "byange.pro", true },
{ "byatte.com", true },
- { "bye-bye.us", true },
{ "byeskille.no", true },
{ "bygningsregistrering.dk", true },
{ "byhe.me", true },
@@ -6736,16 +7852,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bymark.co", true },
{ "bymike.co", true },
{ "bynder.com", true },
+ { "bynet.cz", true },
{ "bynumlaw.net", true },
{ "bypass.sh", true },
{ "bypetula.cz", true },
{ "byr.moe", true },
{ "byrko.cz", true },
- { "byrko.sk", true },
{ "byronkg.us", true },
{ "byrtz.de", true },
{ "bytanchan.com", true },
- { "byte-time.com", true },
+ { "byte.nl", true },
{ "byte128.com", true },
{ "bytearts.net", false },
{ "bytebucket.org", true },
@@ -6753,12 +7869,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bytecrafter.com", true },
{ "bytecrafter.net", true },
{ "byteflies.com", true },
+ { "bytegoing.com", true },
{ "bytejail.com", true },
{ "bytema.cz", true },
{ "bytema.eu", true },
{ "bytema.re", true },
{ "bytema.sk", true },
{ "bytemix.cloud", true },
+ { "bytenoc.nl", true },
{ "bytepen.com", true },
{ "bytes.co", true },
{ "bytes.fyi", true },
@@ -6768,10 +7886,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bytesizedalex.com", true },
{ "bytesunlimited.com", true },
{ "bytesystems.com", true },
+ { "byteterrace.com", true },
{ "bythen.cn", true },
{ "bythisverse.com", true },
{ "bytrain.net", true },
- { "byvshie.com", true },
+ { "bzh.tf", true },
{ "bziaks.xyz", true },
{ "bzsparks.com", false },
{ "bztech.com.br", true },
@@ -6779,6 +7898,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bztraveler.net", true },
{ "bzv-fr.eu", true },
{ "c-aeroconsult.com", true },
+ { "c-ma-copro.com", true },
{ "c-path.org", true },
{ "c-rom.fr", true },
{ "c-rtx.com", true },
@@ -6786,6 +7906,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "c-webdesign.net", true },
{ "c-world.co.uk", true },
{ "c.cc", true },
+ { "c00ke.com", true },
{ "c0rporation.com", true },
{ "c2design.it", true },
{ "c2lab.net", true },
@@ -6794,20 +7915,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "c3vo.de", true },
{ "c3w.at", true },
{ "c3wien.at", true },
- { "c3woc.de", true },
+ { "c3woc.de", false },
{ "c4539.com", true },
{ "c4k3.net", true },
+ { "c5197.co", true },
{ "c5h8no4na.net", true },
+ { "c6729.co", true },
+ { "c6729.com", true },
+ { "c6957.co", true },
{ "c7dn.com", true },
+ { "c8ms113.com", true },
+ { "c9297.co", true },
+ { "c9397.com", true },
+ { "c9721.com", true },
+ { "c9728.co", true },
{ "ca-key.de", 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 },
- { "cabanactf.com", true },
+ { "cabarave.com", true },
{ "cabforum.org", true },
{ "cabineritten.nl", true },
{ "cabinet-bedin.com", true },
@@ -6815,26 +7944,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cablemod.com", true },
{ "cablesandkits.com", true },
{ "cabotfinancial.co.uk", true },
+ { "cabuna.hr", true },
{ "cacao-chocolate.com", true },
{ "cacao.supply", true },
{ "cacaolalina.com", true },
{ "cacaumidade.com.br", true },
+ { "cacd.eu", true },
{ "caceis.bank", true },
{ "cachacacha.com", true },
{ "cachedview.nl", true },
- { "cachetagalong.com", true },
{ "cachetur.no", true },
{ "cackette.com", true },
+ { "cacr.pw", true },
{ "cad-noerdlingen.de", true },
- { "cadafamilia.de", true },
{ "cadams.io", true },
- { "cadcreations.co.ke", true },
{ "cadetsge.ch", true },
{ "cadmail.nl", true },
{ "cadman.pw", true },
+ { "cadmanlaw.ca", true },
+ { "cadmanlaw.com", true },
{ "cadooz.com", true },
{ "cadorama.fr", true },
{ "cadoth.net", true },
+ { "cadra.nl", true },
{ "cadre.com", true },
{ "cadsys.net", true },
{ "cadusilva.com", true },
@@ -6845,31 +7977,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cafedupont.de", true },
{ "cafedupont.nl", true },
{ "cafeimsueden.de", true },
+ { "cafejulian.com", true },
{ "cafelandia.net", true },
{ "cafeobscura.nl", true },
{ "caferagazzi.de", true },
- { "caferestor.com", true },
{ "cafericoy.com", true },
- { "cafesdomundo.pt", true },
+ { "cafermin.com", true },
{ "cafeterasbaratas.net", true },
{ "caffeinatedcode.com", true },
+ { "caffeinefiend.org", true },
{ "cafled.org", true },
{ "cagalogluyayinevi.com", false },
{ "caglarcakici.com", true },
- { "caibi.io", true },
+ { "caiben.org", true },
{ "caijunyi.net", false },
{ "cainhosting.com", false },
{ "caitcs.com", true },
- { "caiwenjian.xyz", true },
{ "caizx.com", false },
{ "caja-pdf.es", true },
{ "cajio.ru", true },
{ "cajunuk.co.uk", true },
{ "cake-time.co.uk", true },
{ "cakearific.com", true },
+ { "cakeoffencesact.uk", true },
{ "cakestart.net", true },
{ "caketoindia.com", true },
{ "cakingandbaking.com", true },
+ { "cakirlarshipyard.com", true },
{ "cal9000.com", true },
{ "calaad.net", true },
{ "calabasaselectric.com", true },
@@ -6881,7 +8015,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "calabasasoutdoorlighting.com", true },
{ "calaborlawnews.com", true },
{ "calafont.cat", false },
- { "calatoruldigital.ro", true },
{ "calc.pw", true },
{ "calcedge.com", true },
{ "calcinacci.com", true },
@@ -6889,34 +8022,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "calculadoraconversor.com", true },
{ "calcularis.ch", true },
{ "calculateaspectratio.com", true },
+ { "calculates.org", true },
{ "calculator-imt.com", true },
{ "calculator.tf", true },
{ "calcworkshop.com", true },
- { "caldaro.de", true },
{ "caldoletto.com", true },
{ "caleb.cx", true },
- { "caleb.host", true },
- { "calebennett.com", true },
{ "calebthompson.io", true },
{ "calehoo.com", true },
{ "calendar.cf", true },
+ { "calendar.google.com", true },
{ "calendarr.com", true },
{ "calendarsnow.com", true },
{ "calendly.com", true },
{ "calenfil.com", true },
- { "calentadores-solares-sunshine.com", true },
{ "caletka.cz", true },
{ "calgoty.com", true },
{ "calibreapp.com", true },
{ "calibso.net", true },
{ "caliderumba.com", true },
+ { "californiawomensmedicalclinic.com", true },
{ "calixte-concept.fr", true },
- { "calkinsmusic.com", true },
+ { "call-centervko.kz", true },
{ "call.me", true },
{ "callanan.nl", true },
{ "callantonia.com", true },
{ "callawayracing.se", false },
{ "callear.org", true },
+ { "callerstrom.se", true },
{ "callfunc.com", true },
{ "callhub.io", true },
{ "callidus-vulpes.de", true },
@@ -6933,7 +8066,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "calvin.my", true },
{ "calvinallen.net", false },
{ "calyxengineers.com", true },
- { "calyxinstitute.org", false },
+ { "calzadonline1-latam.com", true },
+ { "calzadonline1.com", true },
{ "camara360grados.com", true },
{ "camaradivisas.com", true },
{ "camaras.uno", true },
@@ -6953,15 +8087,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cambridge-security.com", true },
{ "cambridgebouncers.co.uk", true },
{ "cambridgesecuritygroup.org", true },
+ { "cambuslangharriers.org", true },
{ "camcapital.com", true },
{ "camconn.cc", true },
- { "camda.online", true },
+ { "camdenboneandjoint.com", true },
{ "camdesign.pl", true },
+ { "camelforensics.com", true },
{ "camelservers.com", true },
{ "cameo-membership.uk", true },
{ "cameraviva.com.br", true },
+ { "cameronthomson.racing", true },
{ "camerweb.es", true },
{ "camilomodzz.net", true },
+ { "camisetasmalwee.com.br", true },
{ "camolist.com", true },
{ "camp-pleinsoleil.ch", true },
{ "camp.co.uk", true },
@@ -6980,24 +8118,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "campertrailerfinance.com.au", true },
{ "camperverzekerd.nl", true },
{ "campfiretails.org", true },
+ { "campgesher.com", true },
+ { "camping-landes.com", true },
{ "camping-le-pasquier.com", true },
{ "camping-seilershof.de", true },
{ "campinghuntingshooting.com", true },
+ { "campingshop.pl", true },
{ "campingskyhooks.com", true },
{ "campistry.net", true },
+ { "campsoulfestival.com", true },
{ "campula.cz", true },
{ "campus-discounts.com", true },
{ "campus-finance.com", true },
{ "campusdrugprevention.gov", false },
+ { "campusfit.co", true },
{ "campuswire.com", true },
{ "campvana.com", true },
{ "campwabashi.org", true },
+ { "camshowdir.com", true },
+ { "camshowdir.to", true },
+ { "camshowhub.com", true },
+ { "camshowhub.to", true },
{ "camshowstorage.com", true },
+ { "camshowstorage.to", true },
{ "camshowverse.com", true },
+ { "camshowverse.to", true },
{ "camsky.de", false },
+ { "camzroofing.ca", true },
{ "canada-tourisme.ch", true },
{ "canadabread.com", false },
{ "canadalife.de", true },
+ { "canadaradon.com", true },
{ "canadasmotorcycle.ca", true },
{ "canadian-nurse.com", true },
{ "canadian.dating", true },
@@ -7006,10 +8157,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "canadianoutdoorequipment.com", true },
{ "canadiantouristboard.com", true },
{ "canal-onanismo.org", true },
+ { "canalecontracting.com", true },
{ "canalsidehouse.be", true },
{ "canalsidehouse.com", true },
{ "canariculturacolor.com", true },
{ "canarymod.net", true },
+ { "canavillage.net", true },
+ { "canavillagepuntacana.com", true },
+ { "canavillageresidences.com", true },
{ "canberraoutletcentre.com.au", true },
{ "cancerdata.nhs.uk", true },
{ "candaceplayforth.com", true },
@@ -7019,31 +8174,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "candguchocolat.com", true },
{ "candicecity.com", true },
{ "candidasa.com", true },
+ { "candidateexperiencemarketing.nl", true },
{ "candidaturedunprix.com", true },
- { "candlcastles.co.uk", true },
+ { "candinya.com", true },
+ { "candinya.me", true },
{ "cando.eu", true },
- { "candyout.com", true },
- { "cangelloplasticsurgery.com", true },
{ "cangku.in", true },
{ "cangku.moe", true },
{ "canglong.net", true },
{ "canhazip.com", true },
{ "canicaprice.com", true },
{ "canihavesome.coffee", true },
+ { "caniuse.email", true },
{ "canker.org", true },
{ "canlidoviz.com", true },
{ "canmipai.com", true },
{ "cannabis-marijuana.com", true },
+ { "cannabiscare.ca", true },
{ "cannabismd.com", true },
{ "cannacards.ca", true },
+ { "cannaffiliate.com", true },
{ "cannahealth.com", true },
{ "cannoli.london", true },
{ "cannyfoxx.me", true },
{ "canoonic.se", true },
- { "canopy.ninja", true },
{ "canopycleaningmelbourne.com.au", true },
+ { "canopytax.com", true },
{ "cant.at", true },
{ "cantatio.ch", true },
+ { "canterbury.ws", true },
{ "canterburybouncycastlehire.co.uk", true },
{ "cantonroadjewelry.com", true },
{ "cantrack.com", true },
@@ -7056,10 +8215,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cao.la", true },
{ "caoshan60.com", true },
{ "capachitos.cl", true },
+ { "capacitacionyautoempleo.com", true },
{ "capacityproject.org", true },
+ { "capbig.com", true },
+ { "capeannpediatrics.com", true },
{ "capebretonpiper.com", true },
{ "capekeen.com", true },
- { "capellidipremoli.com", true },
+ { "caph.info", true },
{ "caphane.com", true },
{ "capimlimaoflores.com.br", true },
{ "capitainebaggy.ch", true },
@@ -7083,7 +8245,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "capstansecurity.co.uk", true },
{ "capstansecurity.com", true },
{ "capstoneinsights.com", true },
- { "capsulesubs.fr", true },
{ "captain-dandelion.com", true },
{ "captainark.net", true },
{ "captainsfarm.in", true },
@@ -7091,22 +8252,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "captivationtheory.com", true },
{ "capturapp.com", false },
{ "capture-app.com", true },
- { "captured-symphonies.com", true },
{ "capuchinox.com", true },
{ "caputo.com", true },
{ "caputodesign.com", true },
- { "car-shop.top", true },
+ { "car-insurance-quotes.biz", true },
{ "car.info", true },
{ "car24.de", true },
{ "car24portal.de", true },
+ { "caraccio.li", true },
{ "carassure.de", true },
{ "carauctionnetwork.com", true },
{ "carauctionsalabama.com", true },
{ "carauctionscarolina.com", true },
{ "carauctionsgeorgia.com", true },
{ "carauctionsillinois.com", true },
+ { "caravanserail.info", true },
{ "carbon-designz.com", true },
{ "carbon-project.org", true },
+ { "carbon.coop", true },
{ "carbon12.org", true },
{ "carbon12.software", true },
{ "carboneselectricosnettosl.info", false },
@@ -7115,17 +8278,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "carbontv.com", true },
{ "carburetorcycleoi.com", true },
{ "carcloud.ch", true },
+ { "card-cashing.com", true },
+ { "cardano.eco", true },
{ "cardboard.cx", true },
{ "cardcaptorsakura.jp", true },
{ "carddreams.be", true },
{ "carddreams.de", true },
{ "carddreams.es", true },
{ "carddreams.nl", true },
- { "cardelmar.com", true },
- { "cardelmar.de", true },
- { "cardelmar.es", true },
{ "cardexchangesolutions.com", true },
- { "cardgames.com", true },
+ { "cardioc.ru", true },
{ "cardios.srv.br", true },
{ "cardranking.jp", true },
{ "cardrecovery.fr", true },
@@ -7143,15 +8305,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "care-spot.us", true },
{ "care4all.com", true },
{ "careeapp.com", true },
- { "career.support", true },
{ "careeroptionscoach.com", true },
- { "careerpower.co.in", true },
{ "careers.plus", true },
{ "carefour.nl", true },
{ "caremad.io", true },
{ "carepassport.com", true },
{ "carespot.biz", true },
{ "carespot.co", true },
+ { "carespot.com", true },
{ "carespot.mobi", true },
{ "carespot.net", true },
{ "carespot.org", true },
@@ -7168,39 +8329,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "caretta.co.uk", true },
{ "careyshop.cn", true },
{ "carezone.com", false },
+ { "carezzaperu.com", true },
+ { "carfinancehelp.com", true },
{ "carfraemill.co.uk", true },
- { "cargobay.net", true },
+ { "cargobas.com", true },
{ "cargomaps.com", true },
{ "cargorestraintsystems.com.au", true },
{ "carhunters.cz", true },
{ "caribbean.dating", true },
- { "caribbeanarthritisfoundation.org", true },
{ "caribbeanexams.com", true },
+ { "caribougrill.com", true },
{ "carigami.fr", true },
{ "caringladies.org", true },
{ "carinthia.eu", true },
- { "cariocacooking.com", true },
{ "carisenda.com", true },
{ "carkeysanantonio.com", true },
+ { "carlavitalesteticista.com", true },
{ "carlgo11.com", true },
{ "carlife-at.jp", true },
{ "carlili.fr", true },
{ "carlingfordapartments.com.au", true },
{ "carlinmack.com", true },
- { "carlmjohnson.net", true },
+ { "carlislepassionplay.org", true },
+ { "carlitoxxpro.com", true },
+ { "carlmjohnson.net", false },
{ "carlo.mx", false },
{ "carlobiagi.de", true },
{ "carlocksmith--dallas.com", true },
{ "carlocksmithbaltimore.com", true },
+ { "carlocksmithcarrollton.com", true },
{ "carlocksmithellicottcity.com", true },
{ "carlocksmithfallbrook.com", true },
{ "carlocksmithkey.com", true },
{ "carlocksmithlewisville.com", true },
{ "carlocksmithmesquite.com", true },
{ "carlocksmithtucson.com", true },
+ { "carlosabarbamd.com", true },
{ "carlosfelic.io", true },
{ "carlosjeurissen.com", true },
+ { "carlosjeurissen.nl", true },
{ "carlot-j.com", true },
+ { "carls-fallout-4-guide.com", true },
+ { "carmelglenane.com", true },
{ "carmelrise.co.uk", true },
{ "carnaticalifornia.com", true },
{ "carnet-du-voyageur.com", true },
@@ -7215,26 +8385,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "caroli.net", true },
{ "carolina.cz", true },
{ "carolinaclimatecontrolsc.com", true },
+ { "carolinapainandspine.com", true },
+ { "carolineeball.com", true },
+ { "carolinehanania.com", true },
{ "carolynjoyce.com.au", true },
{ "carpetandhardwoodflooringpros.com", true },
{ "carpetcleaningtomball.com", true },
+ { "carplus.net", true },
{ "carrando.com", true },
{ "carre-lutz.com", true },
- { "carrentalsathens.com", true },
{ "carriedin.com", true },
{ "carrierplatform.com", true },
{ "carringtonrealtygroup.com", true },
{ "carroattrezzimilanodaluiso.it", true },
{ "carroceriascarluis.com", true },
- { "carrouselcompany.fr", true },
{ "cars4salecy.com", true },
- { "carseatchecks.ca", true },
{ "carshippingcarriers.com", true },
{ "carson-aviation-adventures.com", true },
{ "carson-matthews.co.uk", true },
{ "carsoug.com", true },
{ "carspneu.cz", true },
{ "carteirasedistintivos.com.br", true },
+ { "cartelloni.roma.it", true },
{ "carterdan.net", true },
{ "carterstad.se", true },
{ "cartertonscouts.org.nz", true },
@@ -7248,10 +8420,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cartouche24.eu", true },
{ "cartucce24.it", true },
{ "cartwrightrealestate.com", true },
- { "carun.us", true },
{ "carusorealestate.com", true },
{ "carwellness-hinkelmann.de", true },
- { "caryefurd.com", true },
{ "casa-app.de", true },
{ "casa-due-pur.com", true },
{ "casa-due-pur.de", true },
@@ -7260,12 +8430,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "casa-lunch-break.de", true },
{ "casa-lunchbreak.de", true },
{ "casa-mea-inteligenta.ro", true },
- { "casa-su.casa", true },
+ { "casaamor.ph", true },
{ "casaanastasia.ro", true },
{ "casabouquet.com", true },
{ "casacameo.com", false },
{ "casacazoleiro.com", true },
{ "casacochecurro.com", true },
+ { "casacomcharme.com.br", true },
{ "casadasportasejanelas.com", true },
{ "casadoarbitro.com.br", true },
{ "casadopulpo.com", true },
@@ -7287,8 +8458,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "case-vacanza-salento.com", true },
{ "casecoverkeygi.com", true },
{ "casecurity.org", true },
+ { "caseificio.roma.it", true },
{ "caseof.fr", true },
{ "caseplus-daem.de", true },
+ { "cases.lu", true },
{ "caseycapitalpartners.com", true },
{ "cash-4x4.com", true },
{ "cashati.com", true },
@@ -7299,30 +8472,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cashlogic.ch", true },
{ "cashmaxtexas.com", true },
{ "cashplk.com", true },
+ { "casian.ir", true },
{ "casino-cash-flow.su", true },
{ "casino-cashflow.ru", true },
{ "casino-online.info", true },
{ "casino-trio.com", true },
{ "casinobonuscodes.online", true },
+ { "casinocashflow.ru", true },
+ { "casinochecking.com", true },
{ "casinolegal.pt", true },
+ { "casinolistings.com", true },
+ { "casinomegaslotos.com", true },
{ "casinomucho.com", true },
{ "casinomucho.org", true },
{ "casinomucho.se", true },
{ "casinoonlinesicuri.com", true },
{ "casinoportugal.pt", true },
{ "casinorewards.info", true },
- { "casinovergleich.com", true },
{ "casio-caisses-enregistreuses.fr", true },
{ "casirus.com", true },
- { "casjay.cloud", true },
- { "casjay.info", true },
- { "casjay.us", true },
- { "casjaygames.com", true },
+ { "casjenprome.cz", true },
{ "caspar.ai", true },
+ { "casperfirm.com", true },
{ "casperpanel.com", true },
{ "caspicards.com", true },
{ "cassimo.com", true },
{ "castbulletassoc.org", false },
+ { "castelannenberg.com", true },
{ "casteloinformatica.com.br", true },
{ "castible.de", true },
{ "castle-engine.io", true },
@@ -7331,17 +8507,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "castleking.net", true },
{ "castlekingdomstockport.co.uk", true },
{ "castlekingkent.co.uk", true },
+ { "castlemail.io", true },
{ "castleparty.co.uk", true },
+ { "castlepointanime.com", true },
{ "castles-in-the-sky.co.uk", true },
{ "castles4kidz.com", true },
{ "castles4rascalsiow.co.uk", true },
{ "castlesrus-kent.com", true },
- { "casualdesignsfurniture.com", true },
+ { "castleswa.com.au", true },
+ { "casualgaming.no", true },
{ "casusgrillcaribbean.com", true },
- { "cat-blum.com", true },
{ "cat.net", true },
{ "cat73.org", true },
- { "cat93.com", true },
{ "catalog.beer", true },
{ "catalogobiblioteca.com", true },
{ "catalogoreina.com", true },
@@ -7349,6 +8526,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "catalyconv.com", true },
{ "catalystapp.co", true },
{ "catbold.space", true },
+ { "catbox.moe", true },
{ "catbull.com", true },
{ "catburton.co.uk", true },
{ "catchers.cc", true },
@@ -7357,17 +8535,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "catchief.com", true },
{ "catchkol.com", true },
{ "catcoxx.de", true },
- { "catdecor.ru", true },
{ "catenacondos.com", true },
+ { "catenariadiscos.com", true },
{ "catering-xanadu.cz", true },
{ "catfooddispensersreviews.com", true },
- { "catgirl.science", true },
{ "catharinesomerville.com", true },
{ "catharisme.eu", true },
- { "catharisme.net", true },
{ "catherinejf.com", true },
+ { "cathiebrousse.com", true },
+ { "catholic8964.org", true },
{ "catholics.dating", true },
+ { "catholicteacherresources.com", true },
{ "cathosa.nl", true },
+ { "cathouse.me", true },
{ "cathy.guru", true },
{ "cathy.website", true },
{ "cathyfitzpatrick.com", true },
@@ -7378,25 +8558,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cathyjfitzpatrick.com", true },
{ "cativa.net", true },
{ "catl.st", true },
+ { "catlovingcare.com", true },
{ "catmoose.ca", true },
- { "catnet.dk", false },
- { "catram.org", true },
+ { "catmoz.fr", true },
{ "cattivo.nl", false },
{ "catuniverse.org", true },
+ { "catus.moe", true },
{ "catveteran.com", true },
- { "caudo.net", true },
- { "caudohay.com", true },
+ { "caughtredhanded.co.nz", true },
{ "caulfieldeastapartments.com.au", true },
{ "caulfieldracecourseapartments.com.au", true },
- { "caulong-ao.net", true },
+ { "causae-fincas.es", true },
{ "cav.ac", true },
{ "cavac.at", true },
+ { "cavern.tv", true },
{ "cavzodiaco.com.br", true },
{ "caxalt.com", true },
{ "caylercapital.com", true },
{ "cazaviajes.es", true },
- { "cazes.info", true },
{ "cb-crochet.com", true },
+ { "cb1388.com", true },
+ { "cb1588.com", true },
{ "cbbank.com", true },
{ "cbc-hire.co.uk", true },
{ "cbcf.info", true },
@@ -7414,19 +8596,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cbr-xml-daily.ru", true },
{ "cbsdeheidevlinder.nl", true },
{ "cbw.sh", true },
- { "cc-brantomois.fr", true },
- { "ccac.gov", true },
+ { "cc-customer.de", true },
+ { "cc5197.co", true },
+ { "cc6729.co", true },
+ { "cc6729.com", true },
+ { "cc6957.co", true },
+ { "cc9297.co", true },
+ { "cc9397.com", true },
+ { "cc9721.com", true },
+ { "cc9728.co", true },
{ "ccattestprep.com", true },
{ "ccavenue.com", true },
{ "ccc-ch.ch", true },
+ { "ccc-cloud.de", true },
{ "cccwien.at", true },
+ { "cceputnam360.com", true },
{ "ccgx.de", true },
{ "cclasabana.com.co", true },
{ "ccoooss.com", true },
{ "ccprwebsite.org", true },
- { "ccsource.org", true },
{ "ccss-cces.com", true },
- { "cctvcanada.net", true },
{ "cctvview.info", true },
{ "ccu.plus", true },
{ "cd-shopware.de", true },
@@ -7434,15 +8623,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cd.search.yahoo.com", false },
{ "cd5k.net", true },
{ "cda-aigle.ch", true },
- { "cda-nw.co.uk", true },
{ "cdasenegal.com", true },
{ "cdasiaonline.com", false },
{ "cdbf.ch", true },
- { "cdbtech.com", true },
+ { "cdbtech.com", false },
{ "cdburnerxp.se", true },
{ "cdda.ch", true },
{ "cdepot.eu", true },
{ "cdkeykopen.com", true },
+ { "cdkeyprices.com", true },
{ "cdkeyworld.de", true },
{ "cdn.ampproject.org", true },
{ "cdn6.de", true },
@@ -7452,46 +8641,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cdnsys.net", true },
{ "cdom.de", true },
{ "cdsdigital.de", true },
+ { "cdshh.club", true },
{ "cdshining.com", true },
- { "cdu-wilgersdorf.de", true },
- { "cduckett.net", true },
+ { "cdu-gebhardshain.de", true },
{ "cdvl.org", true },
{ "ce-agentur.de", false },
{ "ce-pimkie.fr", true },
+ { "ce-webdesign.de", true },
{ "ceanimalhealth.com", true },
{ "cebz.org", true },
{ "cecame.ch", true },
{ "ceciliacolombara.com", true },
{ "cecipu.gob.cl", true },
- { "ced-services.nl", true },
{ "cedarcitydining.com", true },
{ "cedarslodge.com", true },
+ { "cedricbonhomme.org", true },
{ "cedriccassimo.ch", true },
{ "cedriccassimo.com", true },
- { "cedricmartineau.com", true },
{ "ceebee.com", true },
+ { "cegss.org.gt", true },
+ { "ceiphr.com", true },
{ "cejhon.cz", false },
{ "celcomhomefibre.com.my", true },
{ "cele.bi", true },
{ "celebmasta.com", true },
- { "celebphotos.club", true },
+ { "celebrasianconference.com", true },
{ "celebrityhealthcritic.com", true },
{ "celebrityscope.net", true },
{ "celectro-pro.com", true },
+ { "celestebonito.pt", true },
{ "celiendev.ch", true },
{ "celine-patisserie.fr", true },
+ { "cell-lookup.com", true },
+ { "cellartracker.com", true },
{ "cellebrite.com", true },
+ { "celliberate.co.uk", true },
+ { "cellsheet.me", true },
{ "celltek-server.de", false },
{ "celltesequ.com", true },
+ { "celltick.com", true },
{ "celluliteorangeskin.com", true },
{ "celluliteremovaldiet.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 },
+ { "cendata.co.uk", true },
{ "cennelley.com", true },
{ "cennelly.com", true },
{ "censurfridns.dk", true },
@@ -7501,17 +8698,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "centaur.de", true },
{ "centennialradon.com", true },
{ "centennialseptic.com", true },
+ { "center-elite.ml", true },
+ { "centermk.ru", true },
{ "centerpereezd.ru", false },
{ "centerperson.org", true },
{ "centerpoint.ovh", true },
{ "centio.bg", true },
- { "centision.com", true },
{ "centos.cz", true },
{ "centos.tips", true },
{ "centralbank.ae", true },
+ { "centralconvergence.com", true },
{ "centralebigmat.eu", true },
{ "centralegedimat.eu", true },
{ "centralfor.me", true },
+ { "centralheating.hu", true },
{ "centralmarket.com", true },
{ "centralmissourifoundationrepair.com", true },
{ "centralpoint.be", false },
@@ -7520,12 +8720,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "centrationgame.com", true },
{ "centredaccueil.fr", true },
{ "centreoeil.ch", true },
+ { "centrepointorguk-dev.azurewebsites.net", true },
{ "centrobill.com", true },
- { "centrodoinstalador.com.br", true },
+ { "centrodeesteticarecife.com", true },
{ "centroecuestrecastellar.com", true },
{ "centrojovencuenca.es", true },
{ "centrolavoro.org", true },
- { "centromasterin.com", true },
{ "centroperugia.gr", true },
{ "centrosocialferrel.pt", true },
{ "centrumhodinek.cz", true },
@@ -7540,13 +8740,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "centurioninfosec.sg", true },
{ "centurionunderground.com", true },
{ "ceopedia.org", true },
+ { "ceramica.roma.it", true },
{ "ceramixcoating.nl", true },
{ "ceramiya.com", true },
{ "cerastar.com", true },
{ "cerber.us", true },
{ "cerberis.com", true },
{ "cerberusinformatica.it", true },
- { "cerebelo.info", true },
{ "cerena-silver.ru", true },
{ "ceres-corp.org", true },
{ "cerivo.co.uk", true },
@@ -7554,20 +8754,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cernakova.eu", true },
{ "cerpus-course.com", true },
{ "cerrajeriaamericadelquindio.com", true },
+ { "cerrajeriaenvillavicencio.com", true },
+ { "cert.ee", true },
{ "cert.govt.nz", true },
{ "cert.or.id", true },
{ "certaintelligence.com", true },
- { "certcenter.ch", true },
- { "certcenter.co.uk", true },
+ { "certbus.com", true },
{ "certcenter.com", true },
- { "certcenter.de", true },
{ "certchannel.com", true },
{ "certevia.com", true },
{ "certfa.com", true },
{ "certible.com", true },
{ "certificatedetails.com", true },
{ "certificatespending.com", true },
- { "certificatetools.com", true },
+ { "certificatetools.com", false },
{ "certificazioni-energetiche.it", true },
{ "certifiedfieldassociate.com", true },
{ "certifiednurses.org", true },
@@ -7588,10 +8788,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cestasedelicias.com.br", true },
{ "cetamol.com", true },
{ "ceu.edu", false },
+ { "cevin.at", true },
{ "cevo.com.hr", true },
- { "ceyizlikelisleri.com", true },
+ { "cezdent.com", true },
{ "cf-ide.de", true },
- { "cfan.space", true },
+ { "cfc-swc.gc.ca", true },
{ "cfda.gov", true },
{ "cfdcre5.org", true },
{ "cfh.com", true },
@@ -7600,10 +8801,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cfno.org", true },
{ "cfo.gov", true },
{ "cfpa-formation.fr", true },
+ { "cfrq.ca", true },
{ "cfsh.tk", true },
{ "cftc.gov", true },
{ "cftcarouge.com", true },
- { "cfttt.com", true },
{ "cfurl.cf", true },
{ "cfxdesign.com", true },
{ "cg-goerlitz.de", true },
@@ -7612,13 +8813,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cg.search.yahoo.com", false },
{ "cgal.org", true },
{ "cgan.de", true },
- { "cgan.pw", true },
{ "cgbassurances.ch", true },
{ "cgbilling.com", true },
{ "cgcookiemarkets.com", true },
{ "cgf-charcuterie.com", true },
- { "cglib.xyz", true },
- { "cgminc.net", true },
{ "cgnparts.com", true },
{ "cgpe.com", true },
{ "cgsmart.com", true },
@@ -7632,20 +8830,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chabert-provence.fr", true },
{ "chabik.com", true },
{ "chad.ch", true },
+ { "chadpugsley.com", true },
{ "chadstoneapartments.com.au", true },
{ "chaffeyconstruction.com", true },
{ "chaifeng.com", true },
+ { "chainels.com", true },
{ "chaip.org", true },
{ "chairsgb.com", true },
{ "chaisystems.net", true },
+ { "chaitanyapandit.com", 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 },
+ { "challengeclothing.com.br", true },
{ "chambion.ch", true },
{ "chamicro.com", true },
{ "champdogs.co.uk", true },
@@ -7661,16 +8861,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "championweb.nz", true },
{ "championweb.sg", true },
{ "champonthis.de", true },
+ { "chamsochoa.com", true },
{ "chancekorte.com", true },
{ "chanddriving.co.uk", true },
{ "chandr1000.ga", true },
- { "chang-feng.info", true },
{ "changecopyright.ru", true },
+ { "changemywifipassword.com", true },
{ "changes.jp", true },
{ "changesfor.life", true },
{ "changethislater.com", true },
- { "chanoyu-gakkai.jp", true },
- { "chanshiyu.com", false },
+ { "channelsurf.tv", false },
{ "chantalguggenbuhl.ch", true },
{ "chanz.com", true },
{ "chaos-games.org", true },
@@ -7684,22 +8884,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chaosriftgames.com", true },
{ "chaoswars.ddns.net", true },
{ "chaotichive.com", true },
+ { "chaoticlaw.com", true },
{ "chapelfordbouncers.co.uk", true },
{ "chapiteauxduleman.fr", true },
{ "chaplain.co", true },
- { "chapstick.life", true },
{ "charbonnel.eu", true },
{ "charcoal-se.org", true },
{ "charcoalvenice.com", true },
{ "charge.co", false },
- { "chargedmonkey.com", true },
{ "chargify.com", true },
{ "charisma.ai", true },
{ "charissadescande.com", true },
{ "charitylog.co.uk", true },
{ "charles-darwin.com", true },
{ "charlesbwise.com", true },
- { "charlesmilette.net", true },
{ "charlespitonltd.com", true },
{ "charlesrogers.co.uk", true },
{ "charlesstover.com", true },
@@ -7710,17 +8908,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "charliehr.com", true },
{ "charlierogers.co.uk", true },
{ "charlierogers.com", true },
- { "charlotte-touati.ch", true },
{ "charlotteomnes.com", true },
{ "charlottesvillegolfcommunities.com", true },
{ "charlottesvillehorsefarms.com", true },
- { "charlotteswimmingpoolbuilder.com", true },
{ "charlylou.de", true },
{ "charmander.me", true },
+ { "charmanterelefant.at", true },
{ "charmingsaul.com", true },
{ "charmyadesara.com", true },
{ "charr.xyz", true },
- { "chars.ga", false },
+ { "charset.org", true },
{ "charta-digitale-vernetzung.de", true },
{ "charteroak.org", true },
{ "chartkick.com", true },
@@ -7732,23 +8929,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chasetrails.co.uk", true },
{ "chat-house-adell.com", true },
{ "chat-libera.org", true },
+ { "chat-love.org", true },
{ "chat-porc.eu", true },
{ "chat-senza-registrazione.net", true },
{ "chat.cz", true },
- { "chat2.cf", true },
{ "chat40.net", true },
{ "chatbelgie.eu", true },
{ "chatbots.systems", true },
{ "chatear.social", true },
{ "chateau-de-lisle.fr", true },
{ "chateaudestrainchamps.com", true },
+ { "chateroids.com", true },
{ "chatfacile.org", true },
{ "chatforskning.no", true },
{ "chatgrape.com", true },
- { "chatint.com", true },
{ "chatitaly.org", true },
- { "chatme.im", false },
{ "chatnederland.eu", true },
+ { "chatswoodprestige.com.au", true },
{ "chatsworthelectrical.com", true },
{ "chatt-gratis.net", true },
{ "chatt-gratis.org", true },
@@ -7759,6 +8956,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chatu.io", true },
{ "chatu.me", true },
{ "chatucomputers.com", true },
+ { "chatxp.com", true },
{ "chatxsingle.net", true },
{ "chatxtutti.com", true },
{ "chatzimanolis.com", true },
@@ -7769,7 +8967,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chavetaro.com", true },
{ "chaz6.com", true },
{ "chazalet.fr", true },
- { "chazay.net", false },
{ "chbk.co", true },
{ "chbs.me", true },
{ "chch.it", true },
@@ -7777,7 +8974,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chcsct.com", true },
{ "chd-expert.fr", true },
{ "cheap-colleges.com", true },
- { "cheapalarmparts.com.au", true },
{ "cheapcaribbean.com", true },
{ "cheapessay.net", true },
{ "cheapestgamecards.at", true },
@@ -7793,9 +8989,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cheapgeekts.com", false },
{ "cheapgoa.com", true },
{ "cheapiesystems.com", true },
- { "cheapssl.com.tr", true },
{ "cheapticket.in", true },
+ { "cheapwritinghelp.com", true },
+ { "cheapwritingservice.com", true },
{ "cheatengine.pro", true },
+ { "cheatsupreme.com", false },
{ "check.torproject.org", false },
{ "checkandreportlive.com", true },
{ "checkblau.de", true },
@@ -7803,10 +9001,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "checkjelinkje.nl", true },
{ "checkmyessay.com", true },
{ "checkmyessays.com", true },
+ { "checkmyhttps.net", true },
{ "checkmyip.com", true },
{ "checkmypsoriasis.com", true },
{ "checkout.google.com", true },
{ "checkpoint-tshirt.com", true },
+ { "checkpoint.com", true },
+ { "checkras.tk", true },
{ "checkrente.nl", true },
{ "checkspf.net", true },
{ "checktype.com", true },
@@ -7814,20 +9015,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "checkyourmath.com", true },
{ "checkyourprivilege.org", true },
{ "checkyourreps.org", true },
- { "checookies.com", true },
{ "checos.co.uk", true },
{ "cheddarpayments.com", true },
{ "cheekycharliessoftplay.co.uk", true },
{ "cheekymonkeysinflatables.co.uk", true },
{ "cheela.org", true },
+ { "cheem.co.uk", true },
{ "cheeseemergency.co.uk", true },
{ "cheetahwerx.com", true },
{ "cheez.systems", true },
{ "cheezflix.uk", true },
+ { "chefcuisto.com", true },
{ "chefwear.com", true },
+ { "chefz.co", true },
{ "chehalemgroup.com", true },
{ "cheladmin.ru", true },
- { "cheltenhambounce.co.uk", true },
+ { "chelseafs.co.uk", true },
{ "cheltenhambouncycastles.co.uk", true },
{ "cheltik.ru", true },
{ "chemco.mu", true },
@@ -7835,6 +9038,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chemiphys.com", true },
{ "chemistry-schools.com", true },
{ "chenapartment.com", true },
+ { "chengfayun.com", true },
{ "chengxindong.com", true },
{ "chenkun.pro", true },
{ "chenky.com", true },
@@ -7842,15 +9046,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chennien.com", true },
{ "chenpei.org", true },
{ "chenqinghua.com", true },
- { "chentianyi.cn", true },
{ "chenzhekl.me", true },
{ "chenzhipeng.com.cn", true },
- { "cheolguso.com", true },
+ { "cheque-transitionactive.fr", true },
{ "cherevoiture.com", true },
{ "cherie-belle.com", true },
+ { "chernevclima.bg", true },
+ { "cherrett.digital", true },
{ "cherry-green.ch", true },
{ "cherrybread.net", true },
- { "cherryonit.com", true },
{ "cherrywoodtech.com", true },
{ "chertseybouncycastles.co.uk", true },
{ "chesapeakebaychristmas.com", true },
@@ -7858,9 +9062,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chessboardao.com", true },
{ "chesskid.com", true },
{ "chesspoint.ch", true },
+ { "chestercountypediatrics.com", true },
+ { "chestercountyroboticsurgery.com", true },
{ "chesterfieldplaceapartmentsstl.com", true },
{ "chesterlestreetasc.co.uk", false },
- { "chestnut.cf", true },
{ "chetwood.se", true },
{ "chevy37.com", true },
{ "chevymotor-occasions.be", true },
@@ -7872,6 +9077,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chez.moe", true },
{ "chfr.search.yahoo.com", false },
{ "chhory.com", true },
+ { "chhy.at", true },
{ "chiangmaimontessori.com", true },
{ "chiaseeds24.com", true },
{ "chiboard.co", true },
@@ -7880,10 +9086,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chicagoemergencyclosings.com", true },
{ "chicagolug.org", true },
{ "chicagostudentactivists.org", true },
+ { "chicback.com", true },
{ "chicisimo.com", true },
{ "chicolawfirm.com", true },
{ "chicurrichi.com", true },
- { "chiemgauflirt.de", true },
{ "chif16.at", true },
{ "chikazawa.info", true },
{ "childcare.gov", true },
@@ -7898,12 +9104,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "childrenspartiesrus.com", true },
{ "childstats.gov", true },
{ "childvisitationassistance.org", true },
- { "childwelfare.gov", true },
+ { "chiledogphoto.com", true },
{ "chilihosting.eu", true },
{ "chilimath.com", true },
{ "chilimathwords.com", true },
{ "chilio.net", true },
- { "chillebever.nl", true },
{ "chima.net", true },
{ "chima.us", true },
{ "chimeratool.com", true },
@@ -7911,17 +9116,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chimpanzee.net", true },
{ "chinahighlights.ru", true },
{ "chinaspaceflight.com", true },
- { "chinatrademarkoffice.com", true },
{ "ching.tv", true },
{ "chinookwebdesign.ca", true },
- { "chint.ai", true },
{ "chinwag.im", true },
{ "chinwag.org", true },
+ { "chip.pl", true },
{ "chipcore.com", false },
{ "chipglobe.com", true },
{ "chippy.ch", false },
{ "chips-scheduler.de", true },
{ "chipset.no", true },
+ { "chiralsoftware.com", true },
{ "chireiden.net", true },
{ "chiro-neuchatel.ch", true },
{ "chiropractic.gr", true },
@@ -7932,17 +9137,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chirosphere.ch", true },
{ "chirpstory.com", true },
{ "chiru.no", true },
+ { "chirurgoplastico.roma.it", true },
{ "chisago-isantidfl.com", true },
{ "chit.search.yahoo.com", false },
{ "chitoku.jp", false },
{ "chksite.com", true },
{ "chl.la", true },
+ { "chliine.ch", true },
+ { "chlo-products.biz", true },
+ { "chlo-products.net", true },
{ "chloescastles.co.uk", true },
{ "chlth.com", true },
{ "chmielarz.it", true },
{ "chmsoft.com.ua", true },
{ "chmsoft.ru", true },
- { "chmurakotori.ml", true },
{ "choc-o-lush.co.uk", true },
{ "chocgu.com", true },
{ "chocodecor.com.br", true },
@@ -7951,21 +9159,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chocolatesandhealth.com", true },
{ "chocolatier-tristan.ch", true },
{ "chocolytech.info", true },
- { "chocotough.nl", true },
- { "choiceautoloan.com", true },
{ "chokladfantasi.net", true },
{ "chomp.life", true },
- { "chon.io", true },
{ "chonghe.org", true },
{ "chook.as", true },
{ "choootto.net", true },
{ "choosemypc.net", true },
{ "chopperdesign.com", true },
+ { "chordify.net", true },
{ "chorpinkpoemps.de", true },
{ "chosenplaintext.org", true },
{ "chourishi-shigoto.com", true },
{ "chovancova.sk", true },
- { "chowii.com", true },
{ "choyri.com", true },
{ "chris-edwards.net", true },
{ "chrisahrweileryoga.com", true },
@@ -7976,10 +9181,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chrisburnell.com", true },
{ "chriscarey.com", true },
{ "chriscowley.me.uk", true },
+ { "chriscutts.uk", true },
{ "chrisdecairos.ca", true },
+ { "chrisgieger.com", true },
{ "chrisirwin.ca", true },
{ "chrisjean.com", true },
{ "chrislane.com", true },
+ { "chrisluen.com", true },
{ "chrismathys.com", true },
{ "chrismcclendon.com", true },
{ "chrismckee.co.uk", true },
@@ -7988,19 +9196,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chrisnekarda.com", true },
{ "chrisplankhomes.com", true },
{ "chrispstreet.com", true },
+ { "chrissmiley.co.uk", true },
{ "chrisspencercreative.com", true },
+ { "chrisspencermusic.com", true },
{ "chrissx.ga", true },
{ "christadelphiananswers.org", true },
{ "christadelphians.eu", true },
{ "christec.net", true },
{ "christensenplace.us", true },
- { "christerwaren.fi", true },
{ "christiaanconover.com", true },
+ { "christian-fischer.pictures", true },
{ "christian-folini.ch", true },
{ "christian-gredig.de", true },
{ "christian-host.com", true },
{ "christian-liebel.com", true },
{ "christian-stadelmann.de", true },
+ { "christianadventurecamps.org", true },
{ "christianbargon.de", false },
{ "christiancleva.com", true },
{ "christiancoleman.info", true },
@@ -8012,23 +9223,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "christianliebel.com", true },
{ "christianlis.org.uk", true },
{ "christianlis.uk", true },
+ { "christianoliff.com", true },
{ "christianpeltier.com", true },
{ "christianpilgrimage.com.au", true },
+ { "christianrasch.de", true },
{ "christians.dating", true },
{ "christianscholz.de", false },
{ "christiehawkes.com", true },
{ "christielepage.com", true },
{ "christiesantiques.com", true },
+ { "christineblachford.com", true },
{ "christmascard.be", true },
{ "christmaspartyhire.co.uk", true },
{ "christoph-conrads.name", true },
- { "christophbartschat.com", true },
{ "christopher-simon.de", true },
{ "christopher.sh", true },
{ "christopherandcharlotte.uk", true },
{ "christopherburg.com", true },
{ "christopherkennelly.com", true },
- { "christopherl.com", true },
{ "christopherstocks.online", true },
{ "christophertruncer.com", true },
{ "christophsackl.de", true },
@@ -8046,6 +9258,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chrome.google.com", true },
{ "chromebookchart.com", true },
{ "chromebooksforwork.com", true },
+ { "chromereporting-pa.googleapis.com", true },
{ "chromeworld.ru", true },
{ "chromiumbugs.appspot.com", true },
{ "chromiumcodereview.appspot.com", false },
@@ -8063,7 +9276,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chsterz.de", true },
{ "chtsi.uk", true },
{ "chuchote-moi.fr", true },
- { "chuck.ovh", true },
{ "chuill.com", true },
{ "chun.pro", true },
{ "chunche.net", true },
@@ -8076,35 +9288,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "churchwebcanada.ca", true },
{ "churchwebsupport.com", true },
{ "churningtracker.com", true },
- { "chybeck.net", true },
+ { "chwilrank.pl", true },
{ "chyen.cc", true },
{ "chytraauta.cz", true },
{ "chziyue.com", true },
{ "ci-fo.org", true },
{ "ci-suite.com", true },
- { "ci5.me", true },
{ "ciancode.com", true },
{ "ciania.pl", true },
{ "cianmawhinney.me", true },
- { "ciansc.com", true },
{ "ciaracode.com", true },
{ "ciat.no", false },
{ "cibercactus.com", true },
{ "cica.es", true },
+ { "cichol.com", true },
{ "ciclista.roma.it", true },
{ "cidbot.com", true },
+ { "ciderclub.com", true },
{ "cidersus.com.ec", true },
{ "cie-theatre-montfaucon.ch", true },
{ "ciel.pro", true },
{ "cielbleu.org", true },
{ "cielly.com", true },
- { "cienciasempresariais.pt", true },
{ "cierreperimetral.com", true },
{ "cifop-numerique.fr", true },
{ "ciftlikesintisi.com", true },
- { "cig-dem.com", true },
+ { "cig-dem.com", false },
{ "cigar-cartel.com", true },
+ { "cigarterminal.com", false },
{ "cihar.com", true },
+ { "ciicutini.ro", true },
+ { "cikeblog.com", true },
{ "cilloc.be", true },
{ "cima-idf.fr", true },
{ "cimbalino.org", true },
@@ -8115,39 +9329,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cine.to", true },
{ "cinefilzonen.se", true },
{ "cinefun.net", true },
+ { "cinema.paris", true },
{ "cinemarxism.com", true },
{ "cinemasetfree.com", true },
{ "cinemysticism.com", true },
+ { "cinenote.link", true },
{ "cineplex.my", true },
+ { "ciniticket.com", true },
{ "cinkciarz.pl", true },
- { "cinnabon.com", true },
{ "cinq-elements.com", true },
- { "cinq-elements.fr", true },
- { "cinq-elements.net", true },
{ "cinsects.de", true },
{ "cinteo.com", true },
{ "cio-ciso-interchange.org", true },
{ "cio-cisointerchange.org", true },
{ "cio.go.jp", true },
{ "cio.gov", false },
+ { "cio.guide", true },
{ "cioscloud.com", true },
{ "cip.md", true },
{ "cipartyhire.co.uk", true },
{ "cipher.team", true },
{ "cipherboy.com", true },
{ "ciphersuite.info", true },
- { "ciphrex.com", true },
{ "cipri.com", true },
{ "cipri.net", true },
{ "cipri.nl", true },
{ "cipri.org", true },
{ "cipria.no", true },
+ { "cipriano.nl", true },
{ "cipy.com", true },
{ "cir.is", true },
{ "circady.com", true },
{ "circara.com", true },
{ "circle-people.com", true },
{ "circu.ml", true },
+ { "circuitcityelectricaladelaide.com.au", true },
{ "circulatedigital.com", true },
{ "circule.cc", true },
{ "ciri.com.co", true },
@@ -8164,19 +9380,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ciss.ltd", true },
{ "cisum-cycling.com", true },
{ "cisy.me", true },
- { "citadelnet.works", true },
{ "citas-adultas.com", true },
{ "citcuit.in", true },
{ "citfin.cz", true },
{ "cities.cl", true },
{ "citimarinestore.com", true },
- { "citizen-cam.de", true },
{ "citizensbankal.com", true },
{ "citizenscience.gov", false },
{ "citizenscience.org", true },
- { "citizenslasvegas.com", true },
+ { "citizensgbr.org", true },
{ "citizensleague.org", true },
- { "citizenspact.eu", true },
{ "citizing.org", true },
{ "citrusui.me", true },
{ "cittadesign.com", false },
@@ -8187,7 +9400,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "citybeat.de", true },
{ "citycreek.studio", true },
{ "citydance.ee", true },
- { "cityextra.com.au", true },
+ { "cityextra.com.au", false },
{ "cityfloorsupply.com", true },
{ "citylights.eu", true },
{ "citymoobel.ee", true },
@@ -8197,15 +9410,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "citywidealarms.com", true },
{ "cityworksonline.com", true },
{ "ciubotaru.tk", true },
+ { "ciurcasdan.eu", true },
+ { "civey.com", true },
{ "civicamente.cl", true },
{ "civicforum.pl", true },
+ { "civics.us", true },
{ "civilbikes.com", true },
{ "civilg20.org", true },
{ "civillines.nl", true },
{ "civiltoday.com", true },
{ "cj-espace-vert.fr", true },
{ "cj-jackson.com", true },
- { "cjbeckert.com", true },
+ { "cjbeckert.com", false },
{ "cjdby.net", true },
{ "cjdpenterprises.com", true },
{ "cjdpenterprises.com.au", true },
@@ -8225,31 +9441,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cklie.de", true },
{ "ckliemann.com", true },
{ "ckliemann.net", true },
+ { "ckna.ca", true },
{ "ckostecki.de", true },
- { "ckrubble.co.za", true },
+ { "ckp.io", true },
{ "cktennis.com", true },
+ { "ckventura.sk", true },
{ "cl.search.yahoo.com", false },
- { "cl0ud.space", true },
{ "claimconnect.com", true },
{ "claimconnect.us", true },
{ "claimjeidee.be", true },
{ "claimnote.com", true },
{ "clairegold.com", true },
{ "clairescastles.co.uk", true },
+ { "claitec.com", true },
{ "clamofon.com", true },
{ "clan-ww.com", true },
{ "clanebouncycastles.com", true },
- { "clangwarnings.com", false },
{ "clanrose.org.uk", true },
{ "clanwarz.com", true },
- { "claraism.com", true },
- { "clarkeaward.com", true },
{ "clarkwinkelmann.com", true },
{ "clase3.tk", true },
{ "clash.lol", true },
{ "class.com.au", true },
{ "classdojo.com", true },
+ { "classic-yacht-charters.com", true },
+ { "classical-guitar-school.com", true },
{ "classicalpilates.ca", true },
+ { "classiccutstupelo.com", true },
{ "classics.io", true },
{ "classictheatrecumbria.co.uk", true },
{ "classpoint.cz", true },
@@ -8257,12 +9475,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "classroomconductor.com", true },
{ "classroomcountdown.co.nz", true },
{ "classteaching.com.au", true },
- { "classyvaper.de", true },
{ "claster.it", true },
- { "claude.tech", true },
{ "claudia-urio.com", true },
+ { "claudiney.id", true },
+ { "claudiney.info", true },
+ { "claudiolemos.com", true },
{ "claus-bahr.de", true },
{ "clauseriksen.net", true },
+ { "clausewitz-gesellschaft.de", true },
+ { "clav1d.com", true },
{ "clawe.de", true },
{ "clawhammer.dk", true },
{ "clayandcottonkirkwood.com", true },
@@ -8270,67 +9491,67 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clayprints.com", true },
{ "claytonstowing.com.au", true },
{ "clazzrooms.com", true },
- { "cldfile.com", true },
{ "cldinc.com", true },
{ "cldly.com", true },
{ "cleanapproachnw.com", true },
{ "cleanbrowsing.org", true },
- { "cleancode.club", true },
{ "cleandetroit.org", true },
{ "cleandogsnederland.nl", true },
- { "cleanfiles.us", true },
{ "cleanhouse2000.us", true },
{ "cleaningbyrosie.com", true },
{ "cleaningservicejulai.com", true },
{ "cleanplanet.co.jp", true },
- { "cleansewellness.com", true },
{ "clearance365.co.uk", true },
{ "clearblueday.co.uk", true },
{ "clearbookscdn.uk", true },
{ "clearbreezesecuritydoors.com.au", true },
+ { "clearchaos.net", true },
{ "clearip.com", true },
- { "clearsettle-admin.com", true },
+ { "clearpay.co.uk", true },
+ { "clearview-creative.com", true },
{ "clearvoice.com", true },
+ { "clearwaterbidets.com", true },
+ { "clemens-bartz.de", true },
+ { "clemensbartz.de", true },
{ "clemenscompanies.com", true },
{ "clement-beaufils.fr", true },
{ "cles-asso.fr", true },
{ "cles.jp", true },
- { "clevergod.net", true },
{ "clevertarget.ru", true },
{ "cleververmarkten.com", true },
{ "cleververmarkten.de", true },
{ "clevisto.com", true },
+ { "clevvi.com.au", true },
{ "cleysense.com", true },
- { "clic-et-site.com", true },
+ { "clica.net", true },
{ "clicandfioul.com", true },
- { "clicecompre.com.br", true },
{ "clicheshishalounge.co.uk", true },
{ "click-licht.de", true },
{ "click2order.co.uk", true },
{ "click4web.com", true },
+ { "clickbasin.co.uk", true },
{ "clickclickphish.com", true },
- { "clickclock.cc", true },
{ "clickenergy.com.au", true },
{ "clickingmad.com", true },
{ "clickphish.com", true },
- { "clicksaveandprint.com", true },
{ "clien.net", true },
{ "client.coach", true },
{ "clientboss.com", true },
+ { "clientportal.com", true },
{ "clientsecure.me", true },
+ { "cliffbreak.de", true },
{ "clifflu.net", true },
{ "climaprecio.es", true },
{ "climateinteractive.org", true },
{ "climatestew.com", true },
- { "climaticarus.ru", true },
{ "clindoeilmontagne.com", true },
{ "clinicalrehabilitation.info", true },
{ "clinicaltrials.gov", true },
{ "clinicasmedicas.com.br", true },
{ "clinicminds.com", true },
- { "cliniquecomplementaire.com", true },
{ "cliniquevethuy.be", true },
{ "clintonlibrary.gov", true },
+ { "clip.ovh", true },
{ "clipclip.com", true },
{ "clippings.com", true },
{ "clive.io", true },
@@ -8338,12 +9559,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clnc.to", true },
{ "clnnet.ch", true },
{ "clo.me", true },
- { "cloaked.ch", true },
- { "clochix.net", true },
{ "clockcaster.com", true },
{ "clockworksms.com", true },
- { "cloppenburg-autmobil.com", true },
- { "cloppenburg-automobil.com", true },
+ { "clod-hacking.com", true },
+ { "cloneuniverse.com", true },
{ "clorophilla.net", true },
{ "closeli.cn", true },
{ "closelinksecurity.co.uk", true },
@@ -8354,10 +9573,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cloud.fail", true },
{ "cloud.google.com", true },
{ "cloud.gov", true },
+ { "cloud10.io", true },
{ "cloud255.com", true },
{ "cloud42.ch", false },
{ "cloud9bouncycastlehire.com", true },
{ "cloud9vets.co.uk", true },
+ { "cloudalice.com", true },
{ "cloudapps.digital", true },
{ "cloudbolin.es", true },
{ "cloudbrothers.info", true },
@@ -8368,20 +9589,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cloudcite.net", true },
{ "cloudcloudcloud.cloud", true },
{ "cloudcrux.net", true },
+ { "clouddog.com.br", true },
+ { "cloudeezy.com", true },
{ "cloudey.net", true },
{ "cloudfiles.at", true },
{ "cloudflare-dns.com", true },
{ "cloudflare.com", true },
{ "cloudflareonazure.com", true },
+ { "cloudhoreca.com", true },
{ "cloudia.org", true },
{ "cloudily.com", true },
+ { "cloudimprovedtest.com", true },
{ "cloudkeep.nl", true },
- { "cloudland.club", true },
{ "cloudlessdreams.com", true },
{ "cloudlight.biz", true },
- { "cloudnote.cc", true },
{ "cloudns.net", true },
- { "cloudoptimizedsmb.com", true },
+ { "cloudofertas.com.br", true },
{ "cloudoptimus.com", true },
{ "cloudpipes.com", true },
{ "cloudse.co.uk", true },
@@ -8394,17 +9617,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cloudsecuritycongress.org", true },
{ "cloudservice.io", true },
{ "cloudservices.nz", true },
+ { "cloudsharp.io", true },
{ "cloudsign.jp", true },
{ "cloudspace-analytics.com", true },
- { "cloudspeedy.net", true },
{ "cloudspire.net", true },
{ "cloudteam.de", true },
+ { "cloudtocloud.tk", true },
{ "cloudtropia.de", true },
- { "cloudtskr.com", true },
{ "cloudup.com", true },
- { "cloudwellmarketing.com", true },
+ { "cloudwallce.com", true },
+ { "cloudwise.nl", true },
{ "clouz.de", true },
{ "cloveros.ga", true },
+ { "clovertwo.com", true },
{ "clownindeklas.nl", true },
{ "cloxy.com", true },
{ "cloze.com", true },
@@ -8415,10 +9640,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clu-in.org", true },
{ "club-adulti.ro", true },
{ "club-climate.com", true },
- { "club-corsicana.de", true },
{ "club-creole.com", true },
{ "club-dieta.ru", true },
- { "club-is.ru", true },
+ { "club-duomo.com", true },
+ { "club-jose.com", true },
{ "club-premiere.com", true },
{ "club-reduc.com", true },
{ "club-slow.jp", true },
@@ -8426,35 +9651,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "club103.ch", true },
{ "clubcorsavenezuela.com", true },
{ "clubdelzapato.com", true },
- { "clubedalutashop.com", true },
{ "clubefiel.com.br", true },
+ { "clubegolfpt.com", true },
{ "clubempleos.com", true },
{ "clubeohara.com", true },
{ "clubfamily.de", true },
{ "clubgalaxy.futbol", false },
{ "clubiconkenosha.com", true },
+ { "clubmarina.store", true },
{ "clubmini.jp", true },
{ "clubnoetig-ink2g.de", true },
{ "clubon.space", 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 },
{ "cmc.pt", true },
- { "cmcelectrical.com", true },
{ "cmcressy.ch", true },
{ "cmdline.org", true },
{ "cme-colleg.de", true },
- { "cmf.qc.ca", true },
- { "cmfaccounting.com", true },
- { "cmftech.com", true },
+ { "cmfaccounting.com", false },
{ "cmgacheatcontrol.com", true },
{ "cmillrehab.com", true },
- { "cmitao.com", true },
{ "cmlachapelle.ch", true },
{ "cmlancy.ch", true },
{ "cmlignon.ch", true },
@@ -8463,8 +9684,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cmngroup.com", true },
{ "cmngroupe.com", true },
{ "cmov-plongeurs.fr", true },
+ { "cmoycontracts.com", true },
{ "cmplainpalais.ch", true },
{ "cms-weble.jp", true },
+ { "cmserviscz.cz", true },
{ "cmskeyholding.co.uk", true },
{ "cmskeyholding.com", true },
{ "cmv.gr", true },
@@ -8473,8 +9696,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cn8522.com", true },
{ "cna-aiic.ca", true },
{ "cna5.cc", true },
+ { "cna5.net", true },
+ { "cna5.org", true },
{ "cnam-idf.fr", true },
- { "cnatraining.network", true },
{ "cnbs.ch", true },
{ "cnc-lehrgang.de", true },
{ "cncado.net", true },
@@ -8486,14 +9710,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cnitdog.com", false },
{ "cnre.eu", true },
{ "cnvt.fr", true },
- { "co-factor.ro", true },
{ "co-founder-stuttgart.de", true },
{ "co.search.yahoo.com", false },
- { "co2eco.cn", true },
+ { "co2eco.cn", false },
{ "co50.com", true },
+ { "coa.one", true },
{ "coachezmoi.ch", true },
- { "coachfederation.ro", true },
+ { "coaching-harmonique.fr", true },
{ "coaching-impulse.ch", true },
+ { "coaching-park.fr", true },
{ "coalitionministries.org", true },
{ "coalpointcottage.com", true },
{ "coastline.net.au", true },
@@ -8508,14 +9733,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cobaltis.co.uk", true },
{ "cobaltlp.com", true },
{ "cobracastles.co.uk", true },
- { "cocaine-import.agency", true },
{ "cocaine.ninja", true },
{ "cocalc.com", true },
{ "cocareonline.com", true },
+ { "coccolebenessere.it", true },
{ "cocinoyo.com", true },
{ "cock.li", true },
+ { "cockedey.in", true },
{ "cockfile.com", true },
- { "cocktail-shaken.nl", true },
{ "cockybot.com", true },
{ "coco-line.ch", true },
{ "cocoaheads.at", false },
@@ -8524,7 +9749,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coconutoil24.com", true },
{ "cocoscastles.co.uk", true },
{ "cocquyt-usedcars.be", true },
- { "cocubes.com", true },
{ "coda.io", true },
{ "coda.moe", true },
{ "coda.today", true },
@@ -8539,16 +9763,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "code.fm", true },
{ "code.google.com", true },
{ "code.taxi", true },
+ { "code123.eu", true },
{ "code67.com", true },
{ "codeandpeace.com", true },
{ "codeandsupply.co", true },
{ "codebrahma.com", false },
{ "codecommunity.io", true },
{ "codedelarouteenligne.fr", true },
+ { "codedo.info", true },
{ "codedump.net", true },
{ "codeeclipse.com", true },
{ "codeferm.com", true },
- { "codefordus.de", true },
{ "codefordus.nrw", true },
{ "codehz.one", true },
{ "codein.ca", true },
@@ -8556,8 +9781,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "codeit.guru", true },
{ "codeit.us", true },
{ "codejots.com", true },
+ { "codemahrt.com", true },
{ "codemill.se", true },
{ "codemonster.eu", true },
+ { "codenlife.kr", true },
{ "codenode.io", true },
{ "codeofthenorth.com", true },
{ "codepoints.net", true },
@@ -8566,6 +9793,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "codera.co.uk", true },
{ "codereview.appspot.com", false },
{ "codereview.chromium.org", false },
+ { "codersatlas.co", true },
+ { "codersatlas.xyz", true },
{ "coderware.co.uk", true },
{ "codes.pk", true },
{ "codesport.io", true },
@@ -8573,10 +9802,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "codestudies.net", true },
{ "codesyncro.com", true },
{ "codetheworld.com", true },
+ { "codetipi.com", true },
{ "codetripping.net", true },
- { "codeux.com", false },
- { "codeux.info", false },
- { "codeux.net", false },
+ { "codeux.com", true },
+ { "codeux.info", true },
+ { "codeux.net", true },
{ "codevat.com", true },
{ "codeventure.de", true },
{ "codeversetech.com", true },
@@ -8584,14 +9814,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "codexpo.net", true },
{ "codeyellow.nl", true },
{ "codific.com", true },
- { "codific.eu", true },
- { "codigo-bonus-bet.es", true },
- { "codigodelbonusbet365.com", true },
{ "codigosddd.com.br", true },
{ "codimaker.com", true },
{ "coding-minds.com", true },
{ "coding.lv", true },
- { "coding.net", true },
{ "codingforspeed.com", true },
{ "codingfromhell.net", true },
{ "codinginfinity.me", true },
@@ -8600,15 +9826,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "codyevanscomputer.com", true },
{ "codymoniz.com", true },
{ "codyqx4.com", true },
- { "codyscafesb.com", true },
{ "coens.me.uk", true },
{ "coentropic.com", true },
+ { "coeus.cloud", true },
{ "cofbev.com", true },
+ { "coffee-machine.reviews", true },
{ "coffee-mamenoki.jp", true },
+ { "coffee-up.it", true },
{ "coffeeandteabrothers.com", true },
{ "coffeetime.fun", true },
- { "coffeetocode.me", false },
{ "cogala.eu", true },
+ { "cogeneration-energy.com", true },
{ "cogent.cc", true },
{ "cogilog.com", true },
{ "cogitoltd.com", true },
@@ -8616,9 +9844,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cognitip.com", true },
{ "cognitivecomputingconsortium.com", true },
{ "cognitohq.com", true },
- { "cognixia.us", true },
{ "cogsquad.house", true },
- { "coi-verify.com", true },
{ "coiffeurschnittstelle.ch", true },
{ "coigach-assynt.org", true },
{ "coimmvest.com", true },
@@ -8626,14 +9852,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coin.dance", true },
{ "coinapult.com", true },
{ "coinbase.com", true },
- { "coinbit.trade", true },
{ "coincealed.com", true },
{ "coinchat.im", true },
{ "coincircle.com", true },
{ "coincoin.eu.org", true },
- { "coincolors.co", true },
{ "coindeal.com", true },
- { "coindesfilles.fr", true },
{ "coinf.it", true },
{ "coinflux.com", true },
{ "coingate.com", true },
@@ -8641,35 +9864,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coinloan.io", true },
{ "coinmewallet.com", true },
{ "coinpit.io", true },
- { "coinroom.com", true },
{ "coins2001.ru", true },
+ { "coinsmat.com", true },
+ { "coinsz.co", true },
{ "coinx.pro", true },
{ "coisabakana.com.br", true },
{ "coisasdemulher.org", true },
{ "cojam.ru", true },
{ "cojo.eu", true },
{ "cokebar.info", true },
+ { "coker.com.au", true },
{ "col.la", true },
{ "colaborativa.tv", true },
+ { "coladv.com", true },
+ { "colantonio.homelinux.net", true },
{ "colapsys.net", true },
{ "colasjourdain.fr", true },
+ { "colchonesmoon.com", true },
{ "colcomm.com", true },
{ "coldawn.com", false },
{ "coldcardwallet.com", true },
- { "coldfff.com", false },
+ { "coldfff.com", true },
{ "coldhak.ca", true },
{ "coldiario.com", true },
+ { "coldlasers.org", true },
{ "coldstreamcreekfarm.com", true },
{ "colectivointerconductual.com", true },
{ "colemak.com", true },
{ "colengo.com", true },
{ "colf.online", true },
{ "colibris.xyz", true },
- { "colinchartier.com", true },
{ "colincogle.name", true },
{ "colinsnaith.co.uk", true },
- { "colinstark.ca", true },
- { "collab.ddnss.org", true },
{ "collabora-office.com", true },
{ "collabora.ca", true },
{ "collabora.co.kr", true },
@@ -8686,46 +9912,53 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "collabornation.net", true },
{ "collaction.hk", true },
{ "collada.org", true },
- { "collage.me", true },
+ { "collare.com.mx", true },
{ "collectdocs.com", true },
{ "collectfood.com", true },
{ "collectiblebeans.com", true },
{ "collectorknives.net", true },
{ "collectorsystems.com", true },
{ "collegeconnexxions.com.au", true },
+ { "collegegirlhd.com", true },
{ "collegenavigator.gov", true },
+ { "collegepaperworld.com", true },
{ "collegeprospectsofcentralindiana.com", true },
{ "collegereligionandphilosophy.com", true },
+ { "collegesexvid.com", true },
{ "collegestationhomes.com", true },
{ "collinel-hossari.com", true },
{ "collinelhossari.com", true },
{ "collinklippel.com", true },
{ "collinmbarrett.com", true },
+ { "colloquy.mobi", true },
{ "colo-tech.com", true },
{ "cololi.moe", true },
{ "colombian.dating", true },
+ { "color01.net", true },
{ "coloraid.net", true },
{ "colorblindprogramming.com", true },
{ "colorbrush.ru", true },
{ "colorcodedlyrics.com", true },
{ "colorectalcompounding.com", true },
{ "colorfuldots.com", true },
- { "colorguni.com", true },
{ "colorhexa.com", true },
{ "coloristcafe.com", true },
+ { "colorpicker.fr", true },
+ { "colors3d.com", true },
{ "colorsbycarin.com", true },
{ "colossal-events.co.uk", true },
- { "colotimes.com", true },
{ "colourfulcastles.co.uk", true },
+ { "colourmanagementpro.com", true },
{ "colpacpackaging.com", true },
+ { "colpatriaws.azurewebsites.net", true },
{ "colson-occasions.be", true },
{ "coltellisurvival.com", true },
{ "columbuswines.com", true },
+ { "colyakoomusic.com", true },
{ "colyakootees.com", true },
{ "com-in.de", true },
{ "comalia.com", true },
- { "comame.xyz", true },
- { "comandofilmes.club", true },
+ { "comame.xyz", false },
{ "comarkinstruments.net", true },
{ "combatircelulitis.com", true },
{ "combattrecellulite.com", true },
@@ -8734,20 +9967,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "combron.com", true },
{ "combron.nl", true },
{ "comcol.nl", true },
+ { "comdotgame.com", true },
{ "comdurav.com", true },
{ "comeals.com", true },
{ "comedyhuis.nl", true },
{ "comefollowme2016.com", true },
{ "comeoishii.com", true },
- { "comercialdragon.com", true },
+ { "comercialbelzunces.com", true },
{ "comercialtpv.com", true },
+ { "comercialtrading.eu", true },
{ "comerford.net", true },
{ "comestoarra.com", true },
{ "cometcache.com", true },
{ "cometonovascotia.ca", true },
- { "comevius.com", true },
- { "comevius.org", true },
- { "comevius.xyz", true },
{ "comff.net", true },
{ "comfintouch.com", true },
{ "comflores.com.br", true },
@@ -8758,40 +9990,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "comicspornow.com", true },
{ "comicspornoxxx.com", true },
{ "comicwiki.dk", true },
+ { "comidina.com", true },
{ "comiteaintriathlon.fr", true },
+ { "comiteexpertes.gc.ca", true },
{ "comm.cx", true },
- { "commania.co.kr", true },
{ "commco.nl", true },
{ "commechezvous.ch", true },
{ "commerce.gov", true },
{ "commercezen.com", true },
+ { "commercia.srl", true },
{ "commercial-academy.fr", true },
{ "commeunamour.com", true },
{ "commissaris-vraagbaak.nl", true },
{ "commissionagenda.com", true },
{ "commitsandrebases.com", true },
+ { "commlabindia.com", true },
{ "common.io", true },
{ "commoncode.com.au", true },
{ "commoncode.io", true },
{ "commoncore4kids.com", true },
{ "commonspace.la", true },
+ { "communalconsulting.org", true },
+ { "communiques.info", true },
{ "communityblog.fedoraproject.org", true },
+ { "communitychurchafrica.co.za", true },
{ "communitycodeofconduct.com", true },
- { "communityflow.info", true },
{ "communitymanagertorrejon.com", true },
{ "communote.net", true },
{ "como-se-escribe.com", true },
{ "comoaliviareldolor.de", true },
+ { "comoculosdesol.pt", true },
{ "comocurarlagastritis24.online", true },
{ "comocurarlagastritistratamientonatural.com", true },
{ "comodesinflamarlashemorroides.org", true },
{ "comodo.nl", true },
+ { "comodormirmasrapido.com", true },
{ "comodosslstore.com", true },
{ "comogene.com", true },
{ "comohacerblog.net", true },
- { "comohacerelamoraunhombrenet.com", true },
{ "comohacerpara.com", true },
{ "comoimportar.net", true },
+ { "comopuededejardefumar.net", true },
{ "comoquitarlacaspa24.com", true },
{ "comoquitarlasestriasrapidamente.com", true },
{ "comosecarabarriga.net", true },
@@ -8799,50 +10038,57 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "comosefazisto.com.br", true },
{ "comp2go.com.au", true },
{ "compactchess.cc", true },
- { "compagnia-buffo.de", true },
+ { "compagnia-buffo.de", false },
{ "compagniemartin.com", true },
+ { "companion-web.net", true },
{ "comparatif-moto.fr", true },
{ "compareandrecycle.co.uk", true },
{ "compareinsurance.com.au", true },
{ "comparesoft.com", true },
+ { "comparewatch.com", true },
{ "comparexcloudcenter.com", true },
- { "compartir.party", true },
+ { "compartirtrenmesaave.com", true },
+ { "compassbest.com", true },
{ "compassdirectportal.com", true },
{ "compassfinance.com", true },
{ "compassintladv.com", true },
{ "compasslos.com", true },
{ "compeat.com", true },
+ { "competencyassessment.ca", true },
{ "comphare.nl", true },
{ "compibus.fr", true },
{ "compilenix.org", true },
- { "compitak.com", true },
{ "compleetondernemen.nl", true },
{ "completefloorcoverings.com", true },
{ "completesecurityessex.co.uk", true },
{ "completesecurityessex.com", true },
{ "completionist.me", true },
{ "complexart.ro", true },
+ { "complexorganization.com", true },
{ "compliance-management.ch", true },
{ "compliance-systeme.de", true },
{ "compliancedictionary.com", true },
{ "compliancerisksoftware.co.uk", true },
{ "componentshop.co.uk", true },
{ "compostatebien.com.ar", true },
+ { "compostelle-bouddha.fr", true },
{ "compoundingrxusa.com", true },
{ "compraneta.com", false },
{ "compraporinternet.online", true },
- { "comprarefiereygana.com", true },
{ "comprarimpresoras-3d.com", true },
- { "comprasoffie.com.br", true },
+ { "compreair.com", true },
{ "compreautomacao.com.br", true },
{ "compree.com", true },
+ { "compromised.com", true },
{ "compservice.in.ua", true },
+ { "comptablevilledequebec.com", true },
{ "comptrollerofthecurrency.gov", true },
{ "comptu.com", true },
{ "compubench.com", true },
{ "compucorner.mx", true },
{ "compunetwor.com", true },
{ "compuplast.cz", true },
+ { "computec.ch", true },
{ "computehealth.com", true },
{ "computer-acquisti.com", true },
{ "computer-menschen.de", true },
@@ -8852,8 +10098,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "computerbase.de", true },
{ "computercamaccgi.com", true },
{ "computeremergency.com.au", false },
- { "computerfreunde-barmbek.de", true },
{ "computerhilfe-feucht.de", true },
+ { "computerinfobits.com", true },
{ "computernetwerkwestland.nl", true },
{ "computerslotopschool.nl", true },
{ "computersystems.guru", false },
@@ -8862,6 +10108,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "comunidadmontepinar.es", true },
{ "comvos.de", true },
{ "comw.cc", true },
+ { "con-con.nl", true },
{ "conalcorp.com", true },
{ "conatus.ai", true },
{ "conaudisa.com", false },
@@ -8870,12 +10117,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "concerto.amsterdam", true },
{ "concertsenboite.fr", true },
{ "concertsto.com", true },
+ { "concilio.com", true },
{ "conciliumnotaire.ca", true },
+ { "conclinica.com.br", true },
{ "concordsoftwareleasing.com", true },
{ "concretelevelingsystems.com", true },
{ "concreterepairatlanta.com", true },
{ "concreterepairconcreteraising.com", true },
- { "concursopublico.com.br", true },
{ "concursos.com.br", true },
{ "concursosabertos.com.br", true },
{ "concursuri.biz", true },
@@ -8896,26 +10144,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "conejovalleylighting.com", true },
{ "conejovalleyoutdoorlighting.com", true },
{ "conexiontransporte.com", true },
- { "conference.dnsfor.me", true },
+ { "conference-expert.eu", true },
{ "confiancefoundation.org", true },
{ "config.schokokeks.org", false },
{ "confiwall.de", true },
{ "conformax.com.br", true },
+ { "conftree.com", true },
{ "congafasdesol.com", true },
{ "congineer.com", true },
{ "congobunkering.com", true },
{ "conju.cat", true },
{ "conjugacao.com.br", 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 },
- { "connectavid.com", true },
{ "connectedcare.md", true },
+ { "connectivia.it", true },
{ "connectmath.com", true },
{ "connectmy.car", true },
{ "connecto-data.com", true },
@@ -8926,52 +10175,52 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "connictro.de", true },
{ "connorhatch.com", true },
{ "connyduck.at", true },
+ { "conocchialidasole.it", true },
{ "conociendosalama.com", true },
{ "conorboyd.info", true },
{ "conory.com", false },
{ "conotoxia.com", true },
{ "conpath.net", true },
{ "conpins.nl", true },
+ { "conquer-addiction.org", true },
{ "conrad-kostecki.de", true },
{ "conradkostecki.de", true },
{ "conradsautotransmissionrepair.com", true },
{ "conraid.net", true },
- { "conrail.blue", true },
{ "consagracionamariasantisima.org", true },
+ { "consciente.ch", true },
+ { "consciente.ngo", true },
+ { "consciente.ong", true },
{ "consciouschoices.net", true },
- { "consciousnesschange.com", true },
- { "consec-systems.de", true },
{ "consegnafioridomicilio.net", true },
+ { "consegne.it", true },
{ "consejosdenutricion.com", true },
{ "consensoprivacy.it", true },
- { "conservados.com.br", true },
{ "conservatoriesincornwall.com", true },
{ "consideredgifts.com", true },
- { "consideryourways.net", true },
{ "consilium-vitae.ch", true },
{ "consiliumvitae.ch", true },
- { "consill.com", true },
{ "console.ninja", true },
{ "console.rest", true },
{ "consommateuraverti.com", true },
{ "consonare.de", true },
- { "conspiracyservers.com", true },
- { "constancechen.me", true },
{ "constant-rough.de", true },
- { "constares.de", true },
{ "constituenttracker.com", true },
{ "constitution.website", true },
+ { "construct.net", true },
{ "constructexpres.ro", true },
{ "constructieve.nl", true },
{ "construction-colleges.com", true },
{ "construction-student.co.uk", true },
- { "constructionjobs.com", true },
+ { "constructionjobs.com", false },
{ "constructive.men", true },
{ "consul.io", true },
{ "consulenza.pro", true },
+ { "consultasdigitales.com", true },
{ "consultation.biz.tr", true },
{ "consultimator.com", true },
{ "consultimedia.de", true },
+ { "consulting-cloud.com", true },
{ "consultoriadeseguranca.com.br", true },
{ "consultoriosodontologicos.com.br", true },
{ "consultpetkov.com", true },
@@ -8987,38 +10236,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "content-api-dev.azurewebsites.net", false },
{ "contentcoms.co.uk", true },
{ "contentpass.net", true },
+ { "contentq.nl", true },
{ "contessa32experience.com", true },
{ "contextplatform.com", true },
{ "conti-profitlink.co.uk", true },
+ { "continental-zermatt.ch", true },
{ "continuum.memorial", true },
+ { "continuumrecoverycenter.com", true },
{ "contrabass.net", true },
- { "contractdigital.co.uk", true },
{ "contractormountain.com", true },
{ "contractwriters.com", true },
+ { "contrasentido.net", true },
{ "contraspin.co.nz", true },
{ "contratatupoliza.com", true },
{ "contributor.google.com", false },
+ { "controlambientalbogota.com", true },
+ { "controlarlaansiedad.com", true },
{ "controlautocom.com.br", true },
{ "controlbooth.com", true },
{ "controle.net", true },
{ "controleer-maar-een-ander.nl", true },
+ { "controllertech.com", true },
{ "controltickets.com.br", true },
+ { "controlvoltage.cc", true },
+ { "contunda.de", true },
{ "conv2pdf.com", true },
+ { "convergence.fi", true },
{ "convergencela.com", true },
{ "convergnce.com", true },
+ { "conversiepartners.nl", true },
{ "conversiones.com", true },
{ "convert.im", true },
{ "converticacommerce.com", false },
+ { "convertimg.com", true },
{ "convexset.org", true },
- { "convocatoriafundacionpepsicomexico.org", false },
{ "cookeatup.com", true },
- { "cooker.fr", true },
{ "cookescastles.co.uk", true },
{ "cookicons.co", true },
{ "cookie4.com", true },
{ "cookieandkate.com", true },
{ "cookiecrook.com", true },
- { "cookielab.io", true },
{ "cookiesoft.de", true },
{ "cooking-sun.com", true },
{ "cookingcrusade.com", true },
@@ -9026,13 +10283,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cookingperfected.com", true },
{ "cookingreporter.com", true },
{ "cookmedical.com", false },
- { "cooko.at", true },
{ "cooksecuritygroup.com", true },
- { "cooksplanet.com", true },
{ "cookwithmanali.com", true },
{ "cool-parties.co.uk", true },
{ "cool-wallpapers.jp", true },
{ "cool.haus", true },
+ { "cool110.tk", true },
+ { "cool110.xyz", true },
{ "coolattractions.co.uk", true },
{ "coolbitx.com", true },
{ "coolcamping.com", true },
@@ -9042,15 +10299,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coolgifs.de", true },
{ "coolprylar.se", true },
{ "cooltang.ooo", true },
+ { "coolvibe.org", true },
+ { "coon.fr", true },
{ "coonawarrawines.com.au", true },
- { "cooperativehandmade.com", true },
+ { "coonelnel.net", true },
+ { "coop.se", true },
+ { "cooperativa-je.net", true },
{ "coore.jp", true },
{ "coorpacademy.com", true },
+ { "coorpintr.com", true },
{ "copdfoundation.org", true },
- { "copinstant.com", true },
{ "copperandtileroofing.com", true },
{ "copperheados.com", true },
- { "coppermein.co.za", true },
{ "copplaw.com", true },
{ "copta-imagefilme-und-drohnenvideos.de", true },
{ "coptkm.cz", true },
@@ -9061,53 +10321,58 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "copydz.com", true },
{ "copypoison.com", true },
{ "copyright-watch.org", true },
- { "coquibus.net", true },
+ { "copyshrug.ca", true },
{ "corbi.net.au", true },
{ "cordejong.nl", true },
- { "cordep.biz", true },
{ "corder.tech", true },
{ "cordeydesign.ch", true },
{ "cordis.io", true },
{ "cordis.tk", true },
{ "cordlessdog.com", true },
+ { "cordobaaldia.com.mx", true },
{ "core-concepts.de", false },
{ "core-networks.de", true },
{ "core.mx", true },
{ "core.org.pt", true },
{ "coreapm.org", true },
- { "corecodec.com", true },
{ "coreless-stretchfilm.com", true },
{ "corelia.net", true },
{ "corepartners.com.ua", true },
{ "coresolutions.ca", true },
{ "coreum.ca", true },
+ { "corevetconnect.co.uk", true },
{ "coreyjmahler.com", true },
{ "corgi.party", true },
{ "coribi.com", true },
{ "corinastefan.ro", true },
{ "corintech.net", true },
+ { "coriolis.ch", true },
{ "corisu.co", true },
{ "corkedwinebar.com", true },
+ { "corkerscrisps.co.uk", true },
{ "corksoncolumbus.com", true },
+ { "corl3ss.com", true },
{ "corlija.com", true },
{ "corlinde.nl", true },
{ "corlitocaffe.de", true },
{ "cornercircle.co.uk", true },
+ { "cornergarage.coop", true },
+ { "cornerstone.network", true },
{ "cornerstonecmc.org", true },
{ "corniche.com", true },
{ "corningcu.org", true },
+ { "cornmachine.com", true },
{ "cornodo.com", true },
{ "corona-academy.com", true },
{ "corona-renderer.cloud", true },
{ "corona-renderer.com", true },
+ { "coronersconnect.co.uk", true },
{ "coropiacere.org", true },
- { "corourbano.es", true },
+ { "corp.goog", true },
{ "corpfin.net", true },
{ "corpio.nl", true },
{ "corpkitnw.com", true },
- { "corpoepele.com.br", true },
{ "corpoflow.nl", true },
- { "corporacioninternacionallideres.org", true },
{ "corporateclash.net", true },
{ "corporatecomputingsolutions.com", true },
{ "corporateinfluencers.com", true },
@@ -9121,104 +10386,101 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "correct.cf", true },
{ "correcthorse.cf", true },
{ "correctiv.org", true },
+ { "correctpaardbatterijnietje.nl", true },
{ "corrick.io", true },
{ "corrupted.io", true },
{ "corsa-b.uk", true },
{ "corscanplus.com", true },
{ "corsectra.com", true },
+ { "corsicalaw.com", true },
{ "corsihaccpsicurezzalavoro.it", true },
{ "corso-antincendio.org", true },
+ { "cortealcastello.it", true },
{ "cortexitrecruitment.com", true },
{ "cortexx.nl", true },
{ "cortis-consulting.ch", true },
- { "cortisolsupplement.com", true },
{ "corvax.kiev.ua", true },
- { "corvus.eu.org", true },
{ "coryadum.com", true },
- { "corytyburski.com", true },
{ "cosasque.com", true },
{ "cosciamoos.com", true },
{ "cosirex.com", true },
{ "cosmechic.fr", true },
{ "cosmekaitori.jp", true },
- { "cosmetic-surgery-prices.co.uk", true },
{ "cosmeticappraisal.com", true },
{ "cosmeticasimple.com", true },
{ "cosmeticos-naturales.com", true },
+ { "cosmetify.com", true },
{ "cosmicnavigator.com", true },
+ { "cosmicworlds.com", true },
+ { "cosmicworlds.mobi", true },
{ "cosmodacollection.com", true },
{ "cosmofunnel.com", true },
{ "cosmundi.de", true },
{ "cosplayer.com", true },
{ "cospol.ch", true },
- { "costa-rica-reisen.de", true },
{ "costablanca.villas", true },
{ "costablancavoorjou.com", true },
{ "costcoinsider.com", true },
{ "costinstefan.eu", true },
{ "costreportdata.com", false },
+ { "costruzioni.milano.it", true },
{ "costulessdirect.com", true },
- { "cote-chasse.com", true },
{ "coteries.com", true },
{ "cotoacc.com", true },
{ "cotonmusic.ch", true },
- { "cotta.dk", true },
{ "cotwe-ge.ch", true },
{ "cougar.dating", true },
{ "counsellingtime.com", true },
{ "counstellor.com", true },
{ "counter-team.ch", true },
+ { "counterenlol.com", true },
{ "counterglobal.com", true },
- { "counterhack.nl", true },
{ "countermail.com", false },
{ "countermats.net", true },
{ "countersolutions.co.uk", true },
{ "countetime.com", true },
{ "countingto.one", true },
{ "country-creativ.de", true },
- { "countryattire.com", true },
{ "countrybrewer.com.au", true },
{ "countryfrog.uk", true },
{ "countryhouseresort.com", true },
{ "countryoutlaws.ca", true },
{ "countybankdel.com", true },
{ "countyjailinmatesearch.com", true },
- { "coupe-bordure.com", true },
+ { "coupestanley.com", true },
{ "couplay.org", true },
+ { "couponbates.com", true },
{ "couponcodesme.com", true },
{ "cour4g3.me", true },
{ "couragefound.org", true },
{ "coursables.com", true },
{ "courseconfidence.com", true },
{ "coursera.org", true },
+ { "courseworkbank.info", true },
{ "courtlistener.com", true },
{ "couscous.recipes", true },
- { "cousincouples.com", false },
- { "coussinsky.net", true },
{ "couvreur-hinault.fr", true },
{ "covbounce.co.uk", true },
- { "covenantoftheriver.org", true },
{ "covermytrip.com.au", true },
{ "covershousing.nl", true },
{ "covery.ai", true },
- { "covoiturage.fr", false },
- { "covve.com", true },
+ { "covoiturage.fr", true },
+ { "covve.com", false },
{ "covybrat.cz", true },
{ "cowbird.org", true },
- { "cowboyim.com", true },
{ "coweo.cz", true },
{ "coworking-luzern.ch", true },
+ { "cowsay.blog", true },
{ "coxcapitalmanagement.com", true },
{ "coxxs.me", true },
{ "coya.tw", true },
+ { "cozmoapp.com", true },
{ "cozo.me", true },
{ "cozyeggdesigns.com", true },
+ { "cozywebsite.com", true },
{ "cp-st-martin.be", true },
- { "cpahunt.com", false },
{ "cpap.com", true },
{ "cpasperdu.com", true },
- { "cpbanq.com", true },
- { "cpbapremiocaduceo.com.ar", true },
{ "cpcheats.co", true },
{ "cpd-education.co.uk", true },
{ "cpe-colleg.de", true },
@@ -9239,6 +10501,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cprnearme.com", true },
{ "cpsc.gov", true },
{ "cpsq.fr", true },
+ { "cptoon.com", true },
{ "cpu.biz.tr", true },
{ "cpvmatch.eu", true },
{ "cpy.pt", true },
@@ -9250,13 +10513,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cra-search.net", true },
{ "craazzyman21.at", true },
{ "crabfactory.com.my", true },
+ { "crabrave.space", true },
{ "crackcat.de", true },
{ "cracker.in.th", true },
{ "crackle.io", true },
{ "crackorsquad.in", true },
{ "crackslut.eu", true },
{ "crackstation.net", true },
+ { "cradle.ph", true },
{ "cradlepointecm.com", true },
+ { "craft-me-in.com", true },
{ "craft-verlag.de", true },
{ "craftandbuild.de", true },
{ "craftinghand.com", true },
@@ -9267,12 +10533,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "craftyguy.net", true },
{ "craftyphotons.net", true },
{ "crag.com.tw", true },
+ { "craigary.net", true },
{ "craigbates.co.uk", true },
{ "craigfrancis.co.uk", true },
{ "craigleclaireteam.com", true },
{ "craigrouse.com", true },
{ "craigwfox.com", true },
+ { "crain.com.au", true },
{ "cralarm.de", true },
+ { "cramersoft.com", true },
{ "crandall.io", true },
{ "cranforddental.com", true },
{ "cranshafengin.com", true },
@@ -9284,7 +10553,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crawl.report", true },
{ "crawler.ninja", true },
{ "crawleybouncycastles.co.uk", true },
- { "crawlspaceandbasementsolutions.com", true },
{ "crazy-bulks.com", true },
{ "crazy-cat.net", true },
{ "crazy-coders.com", true },
@@ -9292,7 +10560,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crazybulk.com", true },
{ "crazybulk.de", true },
{ "crazybulk.fr", true },
- { "crazybulksteroids.com", true },
{ "crazycastles.ie", true },
{ "crazycraftland.net", true },
{ "crazydomains.ae", true },
@@ -9303,20 +10570,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crazymeeshu.com", true },
{ "crazynoisybizarre.town", true },
{ "crazypaul.com", true },
+ { "crazypowered.com", true },
+ { "crazyvisitors.com", true },
{ "crbug.com", true },
{ "crc-bank.com", true },
{ "crc-search.com", true },
{ "crdmendoza.net", true },
{ "crea-etc.net", true },
{ "crea-shops.ch", true },
+ { "crea-th.at", true },
+ { "crea-that.fr", true },
{ "crea.bg", true },
- { "creadstudy.com", true },
{ "crealogix-online.com", true },
{ "creamcastles.co.uk", true },
+ { "creampiepornvids.com", true },
+ { "creamsoft.com", true },
{ "creared.edu.co", true },
+ { "createcos.com", true },
+ { "createcpanama.com", true },
{ "createme.com.pl", true },
{ "createursdefilms.com", true },
- { "creaticworld.net", true },
{ "creatieven.com", true },
{ "creation-contemporaine.com", true },
{ "creativ-impuls-dekorateurin-muenchen.de", true },
@@ -9329,14 +10602,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "creativeconceptsvernon.com", true },
{ "creativedigital.co.nz", true },
{ "creativefolks.co.uk", true },
- { "creativefreedom.ca", true },
{ "creativeglassgifts.com.au", true },
{ "creativeimagery.com.au", true },
{ "creativeink.de", true },
{ "creativekkids.com", true },
{ "creativelaw.eu", true },
{ "creativeliquid.com", true },
- { "creativerezults.com", true },
{ "creativesprite.com", true },
{ "creativesurvey.com", true },
{ "creativeweb.biz", true },
@@ -9347,19 +10618,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "creators.direct", true },
{ "creatorswave.com", true },
{ "creatujoya.com", true },
- { "crecips.com", true },
+ { "crecman.fr", true },
{ "credential.eu", true },
{ "credex.bg", true },
{ "credigo.se", true },
- { "crediteo.pl", true },
{ "creditkarma.com", true },
{ "creditos-rapidos.com", true },
{ "creditozen.es", true },
{ "creditozen.mx", true },
{ "creditproautos.com", false },
{ "creditscoretalk.com", true },
- { "creditta.com", true },
- { "credittoken.io", true },
{ "creeks-coworking.com", true },
{ "creep.im", true },
{ "creepypastas.com", true },
@@ -9369,26 +10637,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crefelder.com", true },
{ "crem.in", false },
{ "cremepassion.de", true },
+ { "crena.ch", true },
{ "crepa.ch", true },
- { "crepererum.net", true },
{ "crestasantos.com", true },
{ "cretdupuy.com", true },
{ "creteangle.com", true },
{ "cretica.no", true },
{ "creusalp.ch", true },
- { "crew505.org", true },
{ "crgalvin.com", true },
{ "crgm.net", true },
{ "cribcore.com", true },
{ "cricklewood.condos", true },
{ "criena.com", true },
{ "criena.net", true },
+ { "crimbotrees.co.uk", true },
+ { "crime-lawyers.com", true },
{ "crimefreeliving.com", true },
{ "crimesolutions.gov", true },
{ "crimevictims.gov", true },
{ "criminal-attorney.ru", true },
{ "criminal.enterprises", true },
+ { "crimsonconnect.co.uk", true },
{ "crinesdanzantes.be", true },
+ { "crip-usk.ba", true },
+ { "criptocert.com", true },
{ "criptolog.com", true },
{ "criscitos.it", true },
{ "crisisactual.com", true },
@@ -9402,17 +10674,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crispinusphotography.com", true },
{ "cristarta.com", true },
{ "cristau.org", true },
+ { "cristianrasch.com", true },
+ { "cristoraciones.com", true },
{ "critical.today", false },
{ "criticalsurveys.co.uk", true },
+ { "critterguard.org", true },
{ "crizin.io", true },
{ "crizk.com", true },
{ "crm.onlime.ch", false },
{ "crm114d.com", true },
+ { "croceverdevb.it", true },
{ "crochetnerd.com", true },
+ { "crocuscoaching.co.uk", true },
{ "croisedanslemetro.com", true },
{ "croixblanche-haguenau.fr", true },
- { "cromefire.myds.me", true },
- { "croncron.io", true },
+ { "cromosomax.com", true },
+ { "cronberg.ch", true },
{ "cronenberg.cc", true },
{ "cronix.cc", true },
{ "cronologie.de", true },
@@ -9427,25 +10704,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cross-x.com", true },
{ "cross.lol", true },
{ "crossborderreturns.com", true },
- { "crosscom.ch", true },
{ "crossedwires.net", true },
{ "crossfitblackwater.com", true },
- { "crossfunctional.com", true },
{ "crosslifenutrition.co.uk", true },
- { "crossorig.in", true },
{ "crossoverit.com", true },
- { "crosssellguide.com", true },
{ "crossway.nl", true },
- { "crow.tw", true },
{ "crowd.supply", true },
{ "crowdbox.net", true },
{ "crowdcloud.be", true },
{ "crowdliminal.com", true },
{ "crowdsim3d.com", true },
+ { "crowdspire.org", true },
{ "crowdsupply.com", true },
+ { "crowleymarine.com", true },
{ "crownaffairs.ch", true },
{ "crowncastles.co.uk", true },
- { "crownchessclub.com", true },
{ "crownmarqueehire.co.uk", true },
{ "crownpoint.com", true },
{ "crows.io", true },
@@ -9453,8 +10726,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "croydonbouncycastles.co.uk", true },
{ "crrev.com", true },
{ "crsmsodry.cz", true },
+ { "crsoresina.it", true },
{ "crstat.ru", true },
- { "crt.cloud", true },
{ "crt2014-2024review.gov", true },
{ "cruisemoab.com", true },
{ "crumbcontrol.com", true },
@@ -9462,19 +10735,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crunchy.rocks", true },
{ "crustytoothpaste.net", true },
{ "crute.me", true },
+ { "crux.camp", true },
{ "crvv.me", true },
{ "cry.nu", false },
- { "cryogenix.net", true },
- { "cryoit.com", true },
+ { "cryobiz.com", true },
{ "cryothanasia.com", true },
- { "cryp.no", true },
- { "crypkit.com", true },
{ "crypt.is-by.us", true },
{ "cryptagio.com", true },
{ "cryptearth.de", true },
{ "crypted.chat", true },
{ "crypteianetworks.com", true },
- { "crypto-armory.com", true },
+ { "cryptizy.com", true },
{ "crypto.cat", false },
{ "crypto.graphics", true },
{ "crypto.is", false },
@@ -9486,12 +10757,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cryptography.ch", true },
{ "cryptography.io", true },
{ "cryptoguidemap.com", true },
+ { "cryptoholic.co", true },
{ "cryptoisnotacrime.org", true },
{ "cryptojacks.io", true },
{ "cryptojourney.com", true },
- { "cryptolinc.com", true },
{ "cryptology.ch", true },
- { "cryptolosophy.org", true },
{ "cryptomail.nl", true },
{ "cryptomaniaks.com", true },
{ "cryptonom.org", true },
@@ -9503,10 +10773,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cryptorival.com", true },
{ "cryptoseb.pw", true },
{ "cryptoshot.pw", true },
- { "cryptoya.io", true },
{ "cryptract.co", true },
{ "crys.cloud", true },
{ "crys.hu", true },
+ { "crys.ovh", true },
{ "crystal-zone.com", true },
{ "crystalapp.ca", true },
{ "crystalchandelierservices.com", true },
@@ -9515,6 +10785,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crystalzoneshop.com", true },
{ "crystone.me", true },
{ "cryz.ru", true },
+ { "cs.money", true },
{ "cs2016.ch", true },
{ "csa-library.org", true },
{ "csaapac.com", true },
@@ -9526,21 +10797,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "csadc.org", true },
{ "csasummit.net", true },
{ "csasummit.org", true },
- { "csbs.fr", true },
- { "csbuilder.io", true },
{ "csca.me", true },
+ { "cscau.com", true },
{ "cscdn.net", true },
- { "csd-sevnica.si", true },
+ { "csd-slovenije.si", true },
+ { "cselzer.com", true },
{ "csfcloud.com", true },
{ "csfd.cz", true },
{ "csfm.com", true },
- { "csgo.design", true },
- { "csgo.su", false },
+ { "csgf.fun", true },
+ { "csgf.ru", true },
+ { "csgo.su", true },
{ "csgoswap.com", true },
{ "csharpmarc.net", true },
{ "cshub.nl", true },
{ "csi.lk", true },
{ "csinterstargeneve.ch", true },
+ { "csirt.ee", true },
+ { "csjministriesfoundation.org", true },
{ "cskentertainment.co.uk", true },
{ "cslaboralistas.pe", true },
{ "csmainframe.com", true },
@@ -9561,8 +10835,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cstrong.nl", true },
{ "csu.st", true },
{ "csust.ac.cn", true },
- { "csuw.net", true },
{ "csvalpha.nl", true },
+ { "cswarzone.com", true },
+ { "cswgmbh.de", true },
{ "ct.search.yahoo.com", false },
{ "ctc-transportation.com", true },
{ "ctcom-peru.com", true },
@@ -9574,20 +10849,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ctliu.com", true },
{ "ctnguyen.de", true },
{ "ctnguyen.net", true },
- { "ctns.de", true },
- { "ctoforhire.com.au", true },
+ { "ctns.de", false },
+ { "ctoin.tw", true },
{ "ctomp.io", false },
{ "ctoresms.com", true },
{ "ctpe.net", true },
- { "ctr.id", true },
{ "ctrl.blog", true },
{ "ctrld.me", true },
+ { "cttso.gov", true },
{ "cu247secure.ie", true },
{ "cub-bouncingcastles.co.uk", true },
+ { "cubaal.com", true },
{ "cube-cloud.com", true },
{ "cube.builders", true },
- { "cube.de", true },
- { "cube.la", true },
{ "cubebot.io", true },
{ "cubebuilders.net", true },
{ "cubecart-demo.co.uk", true },
@@ -9595,10 +10869,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cubecraft.net", true },
{ "cubecraftcdn.com", true },
{ "cubekrowd.net", true },
+ { "cubeperformancecentre.com.au", true },
{ "cubetech.co.jp", true },
{ "cubia.de", true },
{ "cubia3.com", true },
{ "cubia4.com", true },
+ { "cubiest.com", true },
{ "cubile.xyz", true },
{ "cubing.net", true },
{ "cublick.com", true },
@@ -9606,53 +10882,62 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cubostecnologia.com", false },
{ "cubostecnologia.com.br", false },
{ "cubua.com", true },
+ { "cuchichi.es", true },
{ "cuckoopalace.cn", true },
+ { "cuddlecat.io", true },
{ "cuddlecomfort.com", true },
{ "cuddlingyaks.com", true },
+ { "cudoo.de", true },
{ "cueca.com.br", true },
{ "cuecasonline.com.br", true },
{ "cuegee.com", true },
{ "cuentasmutualamr.org.ar", true },
{ "cuetoems.com", true },
{ "cuibonobo.com", true },
+ { "cuio.net", true },
+ { "culan.dk", true },
{ "cultiv.nl", true },
- { "cultivo.bio", true },
{ "cultofd50.org", true },
{ "cultofperf.org.uk", true },
{ "cultura10.com", true },
- { "culture-school.top", true },
{ "culturedcode.com", true },
- { "culturerain.com", true },
{ "culturesouthwest.org.uk", true },
{ "cumberlandrivertales.com", true },
- { "cumparama.com", true },
+ { "cuminas.com", true },
+ { "cuminas.jp", true },
{ "cumplegenial.com", true },
+ { "cumseface.eu", true },
+ { "cumshots-video.ru", true },
{ "cumtd.com", true },
{ "cuntflaps.me", true },
{ "cuoc.org.uk", true },
{ "cup.al", true },
{ "cupcao.gov", true },
+ { "cupidosshop.com", true },
{ "cupoane-reducere.net", true },
{ "cupom.net", true },
- { "cuppycakes.fi", true },
{ "cur.by", true },
{ "curacao-firma.com", true },
+ { "curacaodiveguide.com", true },
{ "curamail.co.uk", true },
- { "curareldolordeespalda.com", true },
{ "curatedgeek.com", true },
+ { "curatedtaste.com", true },
{ "curbside.com", true },
+ { "cureatr.com", true },
{ "curieux.digital", true },
{ "curio-shiki.com", true },
{ "curiosity-driven.org", true },
- { "curiouspeddler.com", true },
{ "curlify.com", true },
{ "curlybracket.co.uk", true },
{ "currency-strength.com", true },
+ { "current-usa.com", true },
{ "currentlystreaming.com", true },
{ "currentlyusa.com", true },
{ "currynissanmaparts.com", true },
+ { "cursed.im", true },
{ "cursos-trabajadores.net", true },
{ "cursos.com", true },
+ { "cursosdeinglesmexico.com", true },
{ "cursosforex.com", true },
{ "cursosingles.com", true },
{ "cursossena.co", true },
@@ -9661,8 +10946,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
@@ -9672,17 +10955,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "curveprotect.org", true },
{ "curvissa.co.uk", true },
{ "curvylove.de", true },
+ { "custamped.com", true },
+ { "custodiamobili.roma.it", true },
+ { "custodian.nl", true },
{ "custodyxchange.com", true },
- { "custombikes.cl", true },
+ { "customcontract.network", true },
{ "customdissertation.com", true },
- { "customerbox.ir", true },
{ "customfitbymj.net", true },
{ "customfitmarketing.com", true },
{ "customgear.com.au", true },
{ "customizeyoursink.com", true },
+ { "custompapers.com", true },
+ { "customwebsitesplus.com", true },
+ { "customwritings.com", true },
{ "customwritingservice.com", true },
{ "customwritten.com", true },
- { "cutimbo.ovh", true },
{ "cutner.co", true },
{ "cuvva.co", true },
{ "cuvva.co.uk", true },
@@ -9696,16 +10983,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cuvva.uk", true },
{ "cuvva.us", true },
{ "cuxpool.net", true },
+ { "cvazquez.es", true },
{ "cvc.digital", true },
{ "cvchomes.com", true },
{ "cvcoders.com", true },
{ "cve-le-carrousel.ch", true },
{ "cviip.ca", true },
{ "cviip.com", true },
- { "cvjd.me", true },
+ { "cvjd.me", false },
{ "cvl.ch", true },
{ "cvlibrary.co.uk", true },
{ "cvmu.jp", true },
+ { "cvps.top", true },
{ "cvr.dk", true },
{ "cvtemplatemaster.com", true },
{ "cvutdecin.cz", true },
@@ -9717,6 +11006,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cwc.gov", true },
{ "cwgaming.co.uk", true },
{ "cwinfo.fi", true },
+ { "cwinfo.net", true },
{ "cwmart.in", true },
{ "cwrau.com", true },
{ "cwrau.de", true },
@@ -9727,34 +11017,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cwrau.rocks", true },
{ "cwrau.tech", true },
{ "cwrcoding.com", true },
+ { "cwwise.com", true },
{ "cxadd.com", true },
- { "cy.ax", true },
{ "cyanghost.com", true },
+ { "cyber-wolfs.com", true },
{ "cyber.je", true },
{ "cyberatlantis.com", true },
- { "cyberbot.info", true },
{ "cybercareers.gov", true },
{ "cybercocoon.com", true },
{ "cybercrew.cc", true },
{ "cybercrime-forschung.de", true },
{ "cybercrime.gov", true },
{ "cybercymru.co.uk", false },
+ { "cyberdean.fr", true },
+ { "cyberdiscoverycommunity.uk", true },
{ "cyberduck.io", true },
- { "cyberdyne.llc", true },
{ "cyberexplained.info", true },
- { "cybergates.org", true },
+ { "cyberfamily.network", true },
{ "cybergrx.com", true },
{ "cyberguerrilla.info", true },
{ "cyberguerrilla.org", true },
{ "cyberhipsters.nl", true },
- { "cyberianhusky.com", true },
+ { "cyberianhusky.com", false },
{ "cyberkov.com", true },
{ "cyberlegal.co", true },
{ "cyberlightapp.com", true },
{ "cybermeldpunt.nl", true },
+ { "cybermotives.com", true },
{ "cyberogism.com", true },
{ "cyberonesol.com", true },
{ "cyberoptic.de", true },
+ { "cyberphaze.com", true },
{ "cyberpioneer.net", false },
{ "cyberpubonline.com", true },
{ "cyberregister.nl", true },
@@ -9768,7 +11061,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cyberseguranca.com.br", true },
{ "cybersins.com", true },
{ "cybersmartdefence.com", true },
- { "cyberspace.community", true },
{ "cyberspect.com", true },
{ "cyberspect.io", true },
{ "cyberstatus.de", true },
@@ -9776,15 +11068,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cyberwars.dk", true },
{ "cyberwire.nl", true },
{ "cyberxpert.nl", true },
- { "cybit.io", true },
{ "cybozu.cn", true },
{ "cybozu.com", true },
- { "cybozulive-dev.com", true },
- { "cybozulive.com", true },
{ "cyclebeads.com", true },
+ { "cycledownunder.com", true },
{ "cycleluxembourg.lu", true },
{ "cyclinggoodso.com", true },
- { "cyclisjumper.gallery", true },
+ { "cyclonebikes.com.ua", true },
{ "cyclop-editorial.fr", true },
{ "cydetec.com", true },
{ "cyfly.org", true },
@@ -9792,11 +11082,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cygnan.com", true },
{ "cygnatus.com", true },
{ "cygnius.net", true },
- { "cyhour.com", true },
+ { "cyhour.com", false },
{ "cykelbanor.se", true },
{ "cyl6.com", true },
{ "cylindehea.com", true },
{ "cylindricity.com", true },
+ { "cynicaloptimist.me", true },
{ "cyon.ch", true },
{ "cyph.audio", true },
{ "cyph.com", true },
@@ -9806,6 +11097,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cyph.me", true },
{ "cyph.video", true },
{ "cyph.ws", true },
+ { "cyphar.com", true },
{ "cypherpunk.at", true },
{ "cypherpunk.observer", true },
{ "cypressinheritancesaga.com", true },
@@ -9823,15 +11115,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "czbix.com", true },
{ "czbtm.com", true },
{ "czc.cz", true },
+ { "czech.is", true },
{ "czechcrystals.co.uk", true },
{ "czechvirus.cz", true },
{ "czerno.com", true },
{ "czfa.pl", true },
{ "czk.mk", true },
+ { "czwartybrat.pl", true },
{ "d-20.fr", true },
{ "d-designerin.de", true },
{ "d-eisenbahn.com", true },
- { "d-imitacion.top", true },
{ "d-loop.de", true },
{ "d-macindustries.com", true },
{ "d-parts.de", true },
@@ -9851,21 +11144,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "d3xt3r01.tk", true },
{ "d3xx3r.de", true },
{ "d42.no", true },
+ { "d4b.in.ua", true },
{ "d4done.com", true },
{ "d4fx.de", true },
{ "d4x.de", true },
+ { "d5197.co", true },
{ "d66.nl", true },
+ { "d6729.co", true },
{ "d6c5yfulmsbv6.cloudfront.net", true },
{ "d7211.com", true },
{ "d7215.com", true },
{ "d7216.com", true },
{ "d8.io", true },
+ { "d8853.com", true },
{ "d88688.com", true },
+ { "d8870.net", true },
+ { "d8872.net", true },
{ "d88988.com", true },
- { "da42foripad.com", true },
+ { "d88dc05.com", true },
+ { "d88md23.com", true },
+ { "d9297.co", true },
+ { "d9397.com", true },
+ { "d9721.com", true },
+ { "d9728.co", true },
+ { "d9c.eu", true },
+ { "da-sh.cc", true },
{ "daallexx.eu", true },
{ "dabasstacija.lv", true },
- { "dabneydriveanimalhospital.com", true },
{ "dabuttonfactory.com", true },
{ "dachb0den.net", true },
{ "dachdecker-ranzenberger.de", true },
@@ -9874,7 +11179,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "daciaforum.nl", true },
{ "daciamodellen.nl", true },
{ "dadadani.xyz", true },
+ { "dadafterforty.be", true },
{ "daddybio.com", true },
+ { "daddyfinger.me", true },
{ "dado.fr", true },
{ "dado.me", true },
{ "dado.virtual.museum", true },
@@ -9884,17 +11191,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "daduke.org", true },
{ "daemen.org", true },
{ "daemwool.ch", true },
+ { "daevel.com", true },
{ "daevel.fr", true },
+ { "daevel.net", true },
{ "dafont.com", true },
{ "dafricapress.com", true },
{ "dafyddcrosby.com", true },
{ "dag-hebergement.fr", true },
{ "dag-konsult.com", true },
{ "dagensannonser.se", true },
- { "dagmar2018.cz", true },
+ { "dagmarhamalova.cz", true },
{ "dahlberg.cologne", true },
- { "dai.top", true },
- { "dai94.com", true },
+ { "dahliacake.com", true },
{ "daigakujuken-plus.com", true },
{ "daikoz.com", true },
{ "dailybits.be", true },
@@ -9907,28 +11215,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dailyroverr.com", true },
{ "dailyxenang.com", true },
{ "daintymeal.com", true },
- { "dair.se", true },
{ "dairyshrine.org", true },
{ "daisakuikeda.org", true },
{ "daisidaniels.co.uk", true },
+ { "daisuki.pw", true },
{ "daisy-peanut.com", true },
{ "daisypeanut.com", true },
{ "daitouryu-jujutsu.com", true },
- { "daiweihu.com", true },
{ "daiyuu.jp", true },
{ "dajiadu.net", true },
{ "dak.org", true },
+ { "dakin.nyc", true },
+ { "dakindesign.com", true },
+ { "dakinnyc.com", true },
{ "daknob.net", true },
+ { "dakotasjoint.com", true },
{ "daktarisys.com", true },
{ "daladubbeln.se", true },
{ "dalaran.city", true },
- { "dalb.in", true },
{ "dale-electric.com", true },
+ { "dale-west.com", true },
{ "dalek.co.nz", true },
{ "dalfsennet.nl", true },
{ "dalingk.com", true },
{ "dallaslu.com", true },
- { "dallinbryce.com", true },
+ { "dallasmenshealth.com", true },
{ "dallmeier.net", true },
{ "dalmatiersheusden.be", true },
{ "damaged.org", true },
@@ -9937,6 +11248,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "damejidlo.cz", true },
{ "dameocio.com", true },
{ "damghaem.ir", true },
+ { "damianus.hr", true },
+ { "damianuv-blog.cz", true },
{ "damicris.ro", true },
{ "damienoreilly.org", true },
{ "daminiphysio.ca", true },
@@ -9947,10 +11260,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "damngoodpepper.com", false },
{ "damonline.dk", true },
{ "dampedia.com", true },
+ { "damtosfoods.com", true },
{ "dan-informacijske-varnosti.si", true },
+ { "dan-nixon.com", true },
{ "dan.me.uk", true },
{ "danads.com", true },
- { "danaketh.com", true },
{ "danamica.dk", true },
{ "danandrum.com", true },
{ "danarozmarin.com", true },
@@ -9971,25 +11285,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "daniel-baumann.ch", true },
{ "daniel-cholewa.de", true },
{ "daniel-kulbe.de", true },
+ { "daniel-milnes.co.uk", true },
{ "daniel-milnes.uk", true },
{ "daniel-ruf.de", true },
{ "daniel-wildhaber.ch", true },
- { "danielalvarez.net", true },
{ "danielas.boutique", true },
+ { "daniele.tech", true },
{ "danielehniss.de", true },
{ "danielepestilli.com", true },
{ "danielfeau.com", true },
{ "danielgorr.de", true },
{ "danielgray.email", true },
{ "danielgray.me", true },
- { "danielheal.net", true },
+ { "danielguttfreundphd.net", true },
{ "danielhinterlechner.eu", true },
{ "danielhochleitner.de", true },
{ "danieljamesscott.org", true },
+ { "danieljball.co.uk", true },
{ "danieljstevens.com", true },
{ "danielkoster.nl", true },
- { "daniellockyer.com", true },
{ "danielmartin.de", true },
+ { "danielmiessler.com", true },
{ "danielmoch.com", true },
{ "danielmorell.com", true },
{ "danielmostertman.com", true },
@@ -9997,6 +11313,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "danieln.tech", true },
{ "danielnaaman.com", true },
{ "danielparker.com.au", true },
+ { "danielpenno.com", true },
{ "danielpeukert.cz", true },
{ "danielran.com", true },
{ "danielrozenberg.com", true },
@@ -10028,17 +11345,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dannycairns.com", true },
{ "dannyrohde.de", true },
{ "dannystevens.co.uk", true },
- { "danonsecurity.com", true },
{ "danotage.tv", true },
{ "danpiel.net", true },
- { "dansa.com.co", true },
{ "dansage.co", true },
+ { "dansaunders.me", true },
{ "danscomp.com", true },
{ "dansdiscounttools.com", true },
+ { "dansedesalonsaintave.fr", true },
{ "danselibre.net", true },
{ "danselibre.org", true },
{ "danseressen.nl", true },
- { "dansk-skole.de", true },
{ "dansk777.dk", true },
{ "danskoferie.dk", true },
{ "danskoya.com", true },
@@ -10051,29 +11367,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "danwolff.se", true },
{ "danyabanya.com", true },
{ "danzac.com", true },
+ { "daop.co.uk", true },
{ "daoro.net", true },
{ "daphne.informatik.uni-freiburg.de", true },
- { "dapianw.com", true },
{ "dapim.co.il", true },
- { "dapps.earth", true },
- { "dappworld.com", true },
{ "dara-berlin.de", true },
{ "daracokorilo.com", true },
+ { "darani.ch", true },
{ "daravk.ch", true },
{ "darbi.org", true },
- { "darbtech.net", true },
{ "darc-mak.de", true },
{ "darchoods.net", false },
{ "darcymarshall.com", true },
{ "dare.deals", true },
- { "daren.com.br", true },
{ "dareyou.be", true },
{ "darf.nl", true },
{ "dariaburger.de", true },
{ "darinkotter.com", true },
{ "darioackermann.ch", true },
{ "darioclip.com", true },
- { "dariosirangelo.me", true },
{ "darioturchetti.me", true },
{ "darisni.me", true },
{ "dark-infection.de", true },
@@ -10085,7 +11397,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "darkengine.net", true },
{ "darkerlystormy.com", true },
{ "darkerstormy.com", true },
- { "darkestproductions.net", true },
{ "darkeststar.org", true },
{ "darkfire.ch", true },
{ "darklaunch.com", true },
@@ -10096,18 +11407,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "darkserver.fedoraproject.org", true },
{ "darkserver.stg.fedoraproject.org", true },
{ "darkshop.nl", true },
- { "darkside.re", true },
+ { "darkskymap.com", true },
{ "darkspacelab.com", true },
{ "darktime.ru", true },
{ "darkwater.info", true },
- { "darkwebnews.com", true },
{ "darkx.me", true },
- { "darlo.co.uk", false },
{ "darmgesundheit.ch", true },
{ "darom.jp", true },
- { "darookee.net", false },
- { "daropia.org", true },
- { "darshnam.com", true },
+ { "darshnam.com", false },
{ "dartcode.org", true },
{ "dartetdemetiers.fr", true },
{ "darth-sonic.de", true },
@@ -10120,30 +11427,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "das-mediale-haus.de", true },
{ "das-sommercamp.de", true },
{ "dasgeestig.nl", true },
- { "dashboard.run", true },
+ { "dashdrive.net", true },
+ { "dashlane.com", true },
{ "dashnearby.com", true },
- { "dashwebconsulting.com", true },
{ "dasignsource.com", true },
{ "dasinternetluegt.at", true },
{ "dasteichwerk.at", true },
{ "dasug.de", true },
+ { "dat4u.de", true },
{ "data-detox.de", true },
- { "data-wing.ga", true },
+ { "data-wing.ga", false },
+ { "data.bayern", true },
{ "data.gov", true },
{ "data.govt.nz", true },
+ { "data.haus", true },
+ { "data.qld.gov.au", false },
{ "data.world", true },
{ "data3w.nl", true },
{ "databionix.com", true },
{ "databutlr.com", true },
{ "databutlr.net", true },
{ "datacalle.com", true },
- { "datacandy.com", true },
- { "datacool.tk", true },
{ "datadit.hu", true },
- { "datadyne.technology", true },
{ "datafd.com", true },
{ "datafd.net", true },
- { "dataformers.at", true },
{ "datagrail.io", true },
{ "dataguidance.com", true },
{ "dataharvest.at", true },
@@ -10174,7 +11481,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "datatruckers.eu", true },
{ "datatruckers.net", true },
{ "datatruckers.org", true },
+ { "datax-cloud.de", true },
{ "datecougarslocal.com", true },
+ { "datelah.com", true },
+ { "datelligent.com", true },
{ "datememe.com", true },
{ "datengrab.xyz", true },
{ "datenkeks.de", true },
@@ -10189,15 +11499,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "datewon.net", false },
{ "datingsite-vergelijken.website", true },
{ "datingticino.ch", true },
+ { "datisstom.nl", true },
{ "datmancrm.com", true },
{ "dator-test.se", true },
{ "datorhjalp-stockholm.se", true },
{ "datorhjalptaby.se", true },
{ "datorservice-stockholm.se", true },
- { "datovyaudit.cz", true },
{ "datumou-osusume.com", true },
{ "datumou-recipe.com", true },
{ "datumstudio.jp", true },
+ { "datvexehue.com", true },
{ "daubecity.de", true },
{ "daubehosting.de", true },
{ "dave-pearce.com", true },
@@ -10213,6 +11524,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "davesharpe.com", true },
{ "davesinclair.com.au", true },
{ "davetempleton.com", true },
+ { "davethom.net", true },
{ "davevelopment.net", true },
{ "davewardle.com", true },
{ "davewood.com.au", true },
@@ -10227,8 +11539,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "davidandersson.se", true },
{ "davidandrewcoaching.com", true },
{ "davidbranco.me", true },
+ { "davidbrookes.me", true },
{ "davidbuckell.com", true },
- { "davidcrx.net", true },
{ "daviddever.net", true },
{ "davidfetveit.com", true },
{ "davidforward.com", true },
@@ -10244,7 +11556,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "davidlane.io", true },
{ "davidlyness.com", true },
{ "davidmcevoy.org.uk", true },
- { "davidmessenger.co.uk", true },
{ "davidmn.org", true },
{ "davidnadaski.com", true },
{ "davidpearce.com", true },
@@ -10256,6 +11567,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "davidsopas.com", true },
{ "davidtiffany.com", true },
{ "davidundetiwan.com", true },
+ { "davidzack.net", true },
+ { "davidzeegers.nl", true },
{ "davie3.com", true },
{ "davisdieselandautorepair.com", true },
{ "davisroi.com", true },
@@ -10263,7 +11576,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
@@ -10273,34 +11586,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "daxpatterns.com", true },
{ "daycontactlens.com", true },
{ "daydream.team", true },
- { "daylight-dream.ee", true },
{ "daylightpirates.org", true },
- { "dayman.net", false },
+ { "dayman.net", true },
{ "daymprove.life", true },
{ "dayofdays.be", true },
+ { "dayofthegirl.gc.ca", true },
{ "daysoftheyear.com", true },
+ { "daywalkers-photography.de", true },
{ "dazz.it", true },
{ "dazzit.ca", true },
{ "dazzit.com", true },
+ { "dazzit.io", true },
{ "dazzit.net", true },
{ "dazzit.org", true },
{ "dazzit.xyz", true },
- { "db-works.nl", true },
{ "db.ci", true },
{ "dbapress.org", true },
{ "dbaron.org", true },
{ "dbas.cz", true },
- { "dbcom.ru", true },
- { "dbdc.us", true },
{ "dbentertainment.co.uk", true },
{ "dbgamestudio.com", true },
- { "dbjc.tk", true },
- { "dbjl.fr", true },
{ "dblcastles.co.uk", true },
{ "dbldub.net", true },
{ "dbmiller.org", true },
{ "dbmteam.com", true },
- { "dbmxpca.com", true },
{ "dborcard.com", true },
{ "dbpkg.com", true },
{ "dbq.com", true },
@@ -10317,22 +11626,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dc585.info", true },
{ "dcain.me", true },
{ "dcards.in.th", true },
- { "dcautomacao.com.br", true },
{ "dcbouncycastles.co.uk", true },
- { "dcc.moe", true },
- { "dccommunity.de", true },
+ { "dcc.cat", true },
+ { "dcdestetica.it", true },
{ "dcepler.net", true },
{ "dchatelain.ch", true },
{ "dchest.org", true },
{ "dckd.nl", true },
- { "dcl.re", true },
{ "dclaisse.fr", true },
+ { "dcmapping.net", true },
{ "dcmediahosting.com", true },
{ "dcmt.co", true },
{ "dcpower.eu", true },
{ "dcrdev.com", true },
{ "dcw.io", true },
+ { "dd211d.com", true },
+ { "dd5197.co", true },
+ { "dd6729.co", true },
+ { "dd6729.com", true },
{ "dd7211.com", true },
+ { "dd9297.co", true },
+ { "dd9397.com", true },
+ { "dd9721.com", true },
+ { "dd9728.co", true },
{ "ddatsh.com", true },
{ "ddays2008.org", true },
{ "ddel.de", true },
@@ -10341,10 +11657,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ddhosted.com", true },
{ "ddns-test.de", true },
{ "ddnsweb.com", true },
+ { "ddoser.cn", true },
{ "ddosolitary.org", true },
{ "ddproxy.cf", true },
{ "ddracepro.net", true },
{ "dds.mil", true },
+ { "ddsmatchsouthwest.com", true },
{ "ddy.tw", true },
{ "de-gucci.com", true },
{ "de-mail.info", true },
@@ -10354,10 +11672,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "de.search.yahoo.com", false },
{ "dead-letter.email", true },
{ "deadbeef.ninja", true },
- { "deadbyhost.com", true },
{ "deadc0de.re", true },
- { "deadinsi.de", false },
- { "deadsoul.net", false },
+ { "deadmorose.ru", true },
{ "deaf.dating", true },
{ "deaf.eu.org", true },
{ "dealapp.nl", true },
@@ -10379,7 +11695,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dealszone.net", true },
{ "deamuseum.org", true },
{ "deanbank.com", true },
- { "deanisa.ninja", true },
{ "deanjerkovich.com", true },
{ "deanmorgan.org", true },
{ "deano-s.co.uk", true },
@@ -10389,10 +11704,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dearfcc.net", true },
{ "dearfcc.org", true },
{ "dearktiel.nl", true },
- { "dearly.com", true },
{ "dearnevalleybouncycastles.co.uk", true },
+ { "death.social", true },
{ "deathofspring.com", true },
+ { "deathsdomain.com", true },
{ "deathy.ro", true },
+ { "deautomaat.nl", true },
+ { "deavel.com", true },
+ { "deavel.fr", true },
+ { "deavel.net", true },
{ "debarrasantony.com", true },
{ "debarrasasnieressurseine.com", true },
{ "debarrasboulognebillancourt.com", true },
@@ -10404,46 +11724,52 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "debie-usedcars.be", true },
{ "debigare.com", true },
{ "debora-singkreis.de", true },
+ { "debraydesign.com.au", true },
{ "debron-ot.nl", true },
{ "debrusoft.ch", true },
{ "debt.com", true },
{ "debtrecycling.com.au", true },
{ "debuemon.com", true },
{ "debuis.nl", true },
- { "decaffeinated.io", true },
+ { "dec6.gc.ca", true },
+ { "decal-times.com", true },
{ "decalquai.ch", true },
{ "decay24.de", true },
+ { "decayshop.com", true },
{ "decfun.com", true },
{ "dechat.nl", true },
{ "decher.de", true },
{ "decidetreatment.org", true },
+ { "decidio.cc", true },
{ "decimatechnologies.eu", true },
{ "decis.fr", true },
{ "decisivetactics.com", true },
{ "deckbuilderamerica.com", true },
+ { "declarationlocationmeublee.com", true },
{ "declivitas.com", true },
- { "decoating.pl", true },
+ { "deco-parisienne.fr", true },
{ "decock-usedcars.be", true },
{ "decodeanddestroy.com", true },
{ "decompiled.de", true },
+ { "deconsolas.tk", true },
{ "decoora.com", true },
{ "decor-d.com", true },
{ "decor-live.ru", true },
+ { "decor-prazdnik.ru", true },
{ "decoratingadvice.co.uk", true },
{ "decoratore.roma.it", true },
{ "decoratrix.com", true },
- { "decorauvent.ca", true },
{ "decorestilo.com.br", true },
{ "decorumcomics.com", true },
{ "decosoftware.com", true },
{ "decrousaz-ceramique.ch", true },
{ "decrypto.net", true },
{ "decs.es", true },
+ { "dede.ml", true },
{ "dedelta.net", true },
{ "dedg3.com", true },
{ "dedge.org", true },
{ "dedicatedtowomenobgyn.com", true },
- { "dedimax.de", true },
{ "dedmorozrzn.ru", false },
{ "deduijventil.nl", true },
{ "dee.pe", true },
@@ -10467,19 +11793,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deepsouthsounds.com", true },
{ "deepspace.dedyn.io", true },
{ "deepspace4.com", true },
- { "deepwealth.institute", true },
- { "deepz.pt", true },
{ "deepzz.com", true },
{ "deerfieldapartmentsstl.com", true },
{ "def-pos.ru", true },
+ { "defantasia.cl", true },
{ "defcon.org", true },
{ "defcongroups.org", true },
{ "defeestboek.nl", true },
{ "defendas.com", true },
{ "defender-pro.com", true },
+ { "defendersz.com", true },
{ "defendinnovation.org", true },
{ "defendtheweb.co.uk", true },
{ "defero.io", true },
+ { "defiantrust.com", true },
{ "define-atheism.com", true },
{ "define-atheist.com", true },
{ "defineatheism.com", true },
@@ -10488,9 +11815,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deflumeri.com", true },
{ "deflumeriker.com", true },
{ "defman.me", true },
- { "defme.eu", true },
{ "defont.nl", true },
- { "defrax.com", true },
{ "defreitas.no", true },
{ "deftek.com", true },
{ "deftig-und-fein.de", true },
@@ -10501,18 +11826,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "degeberg.com", true },
{ "degeberg.dk", true },
{ "degen-elektrotechnik.de", true },
+ { "degestamptepot.nl", true },
+ { "degit.de", true },
+ { "degoticapunk.xyz", true },
{ "degoulet.net", true },
{ "degracetechnologie.com", true },
{ "degrasboom.nl", true },
- { "degressif.com", true },
{ "degroupage.info", true },
{ "dehopre.com", true },
{ "deidee.nl", true },
+ { "deimos.gq", true },
+ { "dein-baumdienst.de", true },
{ "dein-trueffel.de", true },
{ "deinballon.de", true },
{ "deinewebsite.de", true },
{ "deinfoto.ch", true },
- { "deinserverhost.de", true },
{ "deitti.net", true },
{ "dejan.media", true },
{ "dejandayoff.com", true },
@@ -10522,7 +11850,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dekasegi-kansai.com", true },
{ "dekasiba.com", true },
{ "dekeurslagers.nl", true },
- { "dekka.cz", true },
{ "dekkercreativedesign.nl", true },
{ "dekko.io", true },
{ "dekoh-shouyu.com", true },
@@ -10530,9 +11857,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dekulk.nl", true },
{ "delahrzolder.nl", true },
{ "delam.site", true },
- { "delandalucia.com", true },
{ "delbecqvo.be", true },
- { "delbrouck.ch", true },
{ "deleenheir.be", true },
{ "deleidscheflesch.nl", true },
{ "delfic.org", true },
@@ -10541,15 +11866,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deli-tochigi.jp", true },
{ "deliacreates.com", true },
{ "deliandiver.org", true },
+ { "deliberatedigital.com", true },
{ "deliciisanatoase.ro", true },
{ "deliciousmedia.co.uk", true },
{ "deliciousmedia.net", true },
{ "delicioustable.com", true },
{ "delid.cz", true },
- { "deliveryiquique.cl", true },
+ { "deliver.moe", true },
+ { "delkniga42.ru", true },
{ "dellipaoli.com", true },
{ "delogo.nl", true },
+ { "delopt.co.in", true },
{ "delorenzi.dk", true },
+ { "delphia.ai", true },
+ { "delphia.com", true },
{ "delphine.dance", true },
{ "delta-data.ch", true },
{ "delta-smart.ch", true },
@@ -10560,6 +11890,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deltafinanceiro.com.br", true },
{ "deltanio.nl", true },
{ "deltaonlineguards.com", true },
+ { "deltaservers.blog.br", true },
{ "deltaservers.com.br", true },
{ "deltasigmachi.org", true },
{ "deltava.org", true },
@@ -10568,11 +11899,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dementiapraecox.de", true },
{ "demeyere-usedcars.be", true },
{ "demfloro.ru", true },
+ { "demibaguette.com", true },
{ "demijn.nl", true },
{ "demilletech.net", true },
{ "demiranda.com", true },
{ "demmer.one", true },
- { "demo9.ovh", true },
+ { "demo.swedbank.se", true },
{ "democracychronicles.com", true },
{ "democracyineurope.eu", true },
{ "democraziaineuropa.eu", true },
@@ -10586,33 +11918,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "demuzere.be", true },
{ "denabot.pw", true },
{ "denaehula.com", true },
+ { "denali.net", true },
{ "denardbrewing.com", true },
+ { "denariu.net", true },
{ "denbkh.ru", true },
+ { "dengchangdong.com", true },
{ "dengode.eu", true },
+ { "denied.gr", true },
{ "denimtoday.com", true },
{ "denis-martinez.photos", true },
{ "denisewakeman.com", true },
{ "denistruffaut.fr", false },
{ "deniszczuk.pl", true },
{ "denizdesign.co.uk", true },
+ { "denkeandersblog.de", true },
{ "denkmalagentur.ch", true },
{ "denkubator.de", true },
{ "dennisang.com", true },
{ "dennisdoes.net", false },
{ "denniskoot.nl", true },
{ "dennismurphy.biz", true },
- { "dennisvandenbos.nl", true },
{ "dennogumi.org", true },
{ "denous.nl", true },
{ "dent.uy", true },
+ { "dental-cloud.eu", true },
{ "dental-colleges.com", true },
{ "dentallaborgeraeteservice.de", true },
+ { "dentanestplus.com", true },
{ "dentechnica.co.uk", true },
- { "dentfix.ro", false },
{ "dentistesdarveauetrioux.com", true },
{ "dentistglasgow.com", true },
{ "dentrassi.de", true },
{ "dentystabirmingham.co.uk", true },
+ { "denuevestore.com", true },
{ "denvergospelhall.org", true },
{ "denwauranailab.com", true },
{ "deonlinespecialist.nl", true },
@@ -10623,22 +11961,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deparis.me", true },
{ "depeces.com", true },
{ "depechemode-live.com", true },
- { "depedclub.ph", true },
+ { "deped.io", true },
+ { "depedclub.net", true },
{ "depedncr.com", true },
+ { "depedsurigaodelnorte.com", true },
{ "depedtalks.com", true },
{ "depedtambayan.net", true },
+ { "depedtambayan.org.ph", true },
{ "depedtayo.com", true },
{ "depedtayo.ph", true },
{ "depicus.com", true },
+ { "depilacioncon.com", true },
{ "deplorablesdaily.com", true },
{ "depone.net", true },
+ { "depop.com", true },
{ "depositart.com", true },
- { "depot-leipzig.de", true },
+ { "depositomobili.it", true },
{ "depotsquarekerrville.com", true },
{ "depotter-usedcars.be", true },
{ "deprecate.de", true },
{ "depth-co.jp", true },
{ "depthe.gr", true },
+ { "depuratori.milano.it", true },
{ "der-bank-blog.de", true },
{ "der-fliesenzauberer.de", true },
{ "der-gardinenmann.de", true },
@@ -10654,8 +11998,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "derbybouncycastles.com", true },
{ "derbyware.com", true },
{ "derdewereldrommelmarkt.nl", true },
- { "derechosdigitales.org", true },
- { "dereddingsklos.nl", true },
{ "dereferenced.net", true },
{ "derehamcastles.co.uk", true },
{ "derekbooth.co.uk", true },
@@ -10663,25 +12005,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "derekkent.com", true },
{ "derekseaman.com", true },
{ "derekseaman.studio", true },
+ { "derf.red", true },
+ { "derf.us", true },
{ "dergeilstestammderwelt.de", true },
{ "derhil.de", true },
{ "derivedata.com", true },
- { "derk-jan.com", true },
- { "derkuki.de", true },
{ "derma-expert.eu", true },
{ "dermapuur.nl", true },
{ "dermato.floripa.br", true },
{ "dermatologie-morges.ch", true },
{ "dermediq.nl", true },
+ { "dermopigmentista.it", true },
{ "dermot.org.uk", true },
{ "dermscc.com", true },
{ "deroo.org", true },
{ "derp.army", true },
{ "derp.chat", true },
+ { "derpy.pp.ua", true },
{ "derre.fr", true },
{ "derreichesack.com", true },
{ "dersoundhunter.de", true },
- { "derstulle.de", true },
+ { "derw.pw", true },
{ "des-hommes-et-des-clous.com", true },
{ "desafiomovilidadsustentable.com", true },
{ "desagaz.com", true },
@@ -10689,18 +12033,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "descartes-finance.com", true },
{ "desec.io", true },
{ "desenfans.com", true },
+ { "desentupidorapernambucana.com.br", true },
{ "desertmedaesthetics.com", true },
{ "desertsounds.org", true },
{ "desgenst.ch", true },
{ "design-in-bad.eu", true },
- { "design-production.jp", true },
{ "design-tooning.de", true },
{ "designed-cybersecurity.com", true },
{ "designedbygeniuses.com", true },
{ "designedcybersecurity.com", true },
{ "designer-drug.com", true },
{ "designera.se", true },
+ { "designerchad.com", true },
{ "designhotel-kronjuwel.de", true },
+ { "designhuddle.com", true },
{ "designsbyjanith.com", true },
{ "designskin.ch", true },
{ "designville.cz", true },
@@ -10713,40 +12059,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "desktopd.eu.org", true },
{ "desktopfx.net", false },
{ "deskture.com", true },
- { "deskvip.com", true },
{ "desmaakvanplanten.be", true },
- { "desmo.gg", true },
+ { "desormiers.com", true },
{ "despertadoronline.com.es", true },
{ "desplats.com.ar", true },
{ "dessinemoilademocratie.ch", true },
{ "destech.nl", true },
- { "desterman.ru", true },
- { "destinationsofnewyorkstate.com", true },
{ "destinattorneyjohngreene.com", true },
{ "destinoytarot.com", true },
{ "destinyofthephoenix.me", false },
{ "desu.ne.jp", true },
{ "desuchan.eu", true },
{ "desuchan.org", true },
+ { "desynced.rocks", true },
{ "det-te.ch", true },
- { "detalhecomercio.com.br", true },
{ "detalika.ru", true },
{ "detalyedesigngroup.com", true },
+ { "detao.org", true },
{ "detecmon.com", true },
+ { "detecte-fuite.ch", true },
+ { "detecte.ch", true },
+ { "detectefuite.ch", true },
{ "detectify.com", false },
{ "detectivedesk.com.au", true },
{ "detekenmuze.nl", true },
+ { "determapp.de", true },
{ "dethemium.com", true },
+ { "dethikiemtra.com", true },
{ "detodojuegos.com", true },
{ "detoxetmoi.com", true },
{ "detoxic.vn", true },
- { "detoxsinutritie.ro", true },
{ "detroit-english.de", true },
- { "detroitstylepizza.com", false },
{ "detroitzoo.org", true },
- { "detski.center", true },
{ "detskysad.com", true },
{ "detuinmuze.nl", true },
+ { "detusmascotas.com", true },
{ "detype.nl", true },
{ "deuchnord.fr", true },
{ "deude.de", true },
@@ -10763,7 +12110,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deutschland-dsl.de", true },
{ "deuxmetrescubes.fr", true },
{ "dev-brandywineglobal.com", true },
- { "dev-dot-naga-226708.appspot.com", true },
{ "dev-greavesindia.pantheonsite.io", true },
{ "dev-gutools.co.uk", true },
{ "dev-pulse-mtn.pantheonsite.io", true },
@@ -10771,12 +12117,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dev-tek.de", true },
{ "devagency.fr", true },
{ "devalps.eu", true },
+ { "devapi.pro", true },
{ "devb.nl", true },
{ "devcf.com", true },
{ "devcoins.org", true },
{ "devct.cz", false },
{ "devcu.com", true },
{ "devcu.net", true },
+ { "devdeb.com", true },
{ "devel.cz", true },
{ "develop.cool", true },
{ "develope.cz", true },
@@ -10784,7 +12132,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "developer.moe", true },
{ "developer.mydigipass.com", false },
{ "developerdan.com", true },
- { "developerfair.com", true },
{ "developermail.io", false },
{ "developers.facebook.com", false },
{ "developfx.com", true },
@@ -10795,40 +12142,45 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "develux.com", true },
{ "develux.net", true },
{ "devh.net", true },
+ { "deviajesturismo.com", true },
{ "deviant.email", true },
{ "devillers-occasions.be", true },
{ "devils-point.de", true },
{ "devilshakerz.com", true },
+ { "deviltraxxx.de", true },
{ "devinfo.net", false },
+ { "devinite.com", true },
{ "devirc.net", true },
{ "devisnow.fr", true },
- { "devkid.net", true },
{ "devklog.net", true },
{ "devlamvzw.org", false },
{ "devlatron.net", true },
{ "devlogr.com", true },
{ "devnull.zone", true },
{ "devonsawatzky.ca", true },
- { "devonvintagechina.co.uk", true },
{ "devopers.com.br", true },
{ "devops-survey.com", true },
- { "devpsy.info", true },
{ "devragu.com", true },
{ "devrandom.net", true },
+ { "devries.one", true },
{ "devsjournal.com", true },
{ "devsrvr.ru", true },
+ { "devstaff.gr", true },
{ "devstroke.io", true },
{ "devswag.io", true },
+ { "devtoys.ru", true },
{ "devtty.org", true },
{ "devzero.io", true },
{ "dewaard.de", true },
{ "dewalch.net", true },
{ "dewapress.com", true },
{ "dewinter.com", true },
+ { "dewolden.nl", true },
{ "dex.top", true },
{ "dexalo.de", true },
{ "dexigner.com", true },
{ "dexonrest.azurewebsites.net", true },
+ { "dexonservicedeskws.azurewebsites.net", true },
{ "deyute.com", true },
{ "dez-online.de", true },
{ "dezeregio.nl", true },
@@ -10837,10 +12189,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dezshop24.de", true },
{ "dezzoroofing.co.za", true },
{ "df1paw.de", true },
+ { "df3312.com", true },
+ { "df3313.com", true },
+ { "df3314.com", true },
+ { "df3315.com", true },
+ { "df3316.com", true },
+ { "df3317.com", true },
+ { "df3318.com", true },
+ { "df3319.com", true },
{ "dfctaiwan.org", true },
{ "dfekt.no", true },
{ "dfektlan.no", true },
- { "dfl.mn", true },
+ { "dfl.mn", false },
{ "dflcares.com", true },
{ "dfmn.berlin", true },
{ "dfranke.com", true },
@@ -10854,12 +12214,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dgpot.com", true },
{ "dgt-portal.de", true },
{ "dgx.io", true },
+ { "dh6729.com", true },
+ { "dh9397.com", true },
+ { "dh9721.com", true },
{ "dharveydev.com", true },
{ "dhautefeuille.eu", true },
{ "dhauwer.nl", true },
{ "dhaynes.xyz", true },
{ "dhconcept.ch", true },
{ "dheart.net", true },
+ { "dhedegaard.dk", true },
+ { "dhelixnet.de", true },
+ { "dhemant.de", true },
{ "dhhs.gov", true },
{ "dhinflatables.co.uk", true },
{ "dhlinux.org", true },
@@ -10869,16 +12235,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "di2pra.fr", true },
{ "dia-de.com", true },
{ "dia.com.br", true },
+ { "diabetessucks.net", true },
{ "diablovalleytech.com", true },
- { "diadiemdangsong.com", true },
{ "diadorafitness.it", true },
- { "diag.com.ua", true },
- { "diagnostix.org", true },
+ { "diagnoseo.com", true },
+ { "diagnoseo.pl", true },
+ { "diagnoseo.se", true },
{ "dialapicnic.co.za", true },
+ { "dialect-agency.eu.org", true },
{ "dialoegue.com", true },
{ "diamante.ro", true },
{ "diamantovaburza.cz", true },
{ "diamond-hairstyle.dk", true },
+ { "diamondgrid.ga", true },
{ "diamondsleepsolutions.com", true },
{ "diamondyze.nl", true },
{ "diamorphine.com", true },
@@ -10893,14 +12262,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "diasdasemana.com", true },
{ "diasp.org", true },
{ "diatrofi-ygeia.gr", true },
+ { "diavo.de", true },
{ "diba.org.cn", true },
{ "dibiphp.com", true },
{ "diccionarioabierto.com", true },
{ "diccionariodedudas.com", true },
{ "diccionarqui.com", true },
{ "dice.tokyo", true },
+ { "dicelab-rhul.org", true },
{ "dicelab.co.uk", true },
{ "dicesites.com", true },
+ { "dicio.com.br", true },
{ "dicionario.org", true },
{ "dicionariodegirias.com.br", true },
{ "dicionariodelatim.com.br", true },
@@ -10910,13 +12282,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dicionariofinanceiro.com", true },
{ "dicionariopopular.com", true },
{ "dicionarios.cc", true },
- { "dickieslife.com", true },
{ "dickord.cloud", true },
{ "dickord.club", true },
{ "dickpics.ru", true },
{ "dicksakowicz.com", true },
{ "dicoding.com", true },
- { "diconnex.com", true },
{ "dictionaryofnumbers.com", true },
{ "dictionarypro.net", true },
{ "dictzone.com", true },
@@ -10927,26 +12297,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "didefamilia.com", true },
{ "didesalud.com", true },
{ "didierghez.com", true },
+ { "didierlaumen.be", true },
{ "didigotoffer.com", true },
- { "didikhari.web.id", true },
+ { "didtrumpopengovernmentyet.com", true },
{ "die-bergfuehrer.de", true },
+ { "die-besten-bewertungen.de", true },
{ "die-blahuts.de", true },
- { "die-bobbeloase.com", true },
{ "die-borts.ch", true },
{ "die-gruenen-teufel.de", true },
+ { "die-machons.de", true },
{ "die-partei-reutlingen.de", true },
{ "die-pizzabaeckerei.de", true },
+ { "die-pleners.de", true },
{ "die-seide.de", true },
+ { "die-seiler.de", true },
{ "die-sinlosen.de", true },
{ "die-speisekammer-reutlingen.de", true },
+ { "diebestengutscheine.de", true },
+ { "diebestenvpn.de", true },
{ "diedrich.co", true },
- { "diedrich.me", true },
{ "dieecpd.org", true },
{ "diegelernten.de", true },
{ "diegerbers.de", true },
- { "diegobarrosmaia.com.br", true },
{ "diegogelin.com", true },
{ "diegorbaquero.com", true },
+ { "diegotoledo.com.br", true },
{ "diehl.io", true },
{ "diekperaiwseis.gr", true },
{ "diem-project.org", true },
@@ -10956,6 +12331,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dienstplan.cc", true },
{ "dienstplan.one", true },
{ "dierabenmutti.de", true },
+ { "dieradvies.nl", true },
{ "dierenartsdeconinck.be", true },
{ "dieselanimals.lt", true },
{ "dieselgalleri.com", true },
@@ -10964,11 +12340,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dietaanticelulitis.com", true },
{ "dietacelulitis.com", true },
{ "dietafeliz.com", true },
- { "dietbrand.eu", true },
{ "dieterglas.de", true },
{ "dietergreven.de", false },
{ "dieterstinglhamber.me", false },
{ "dietervandenbroeck.be", true },
+ { "diethood.com", true },
{ "dieti.net", true },
{ "dietlin.com", true },
{ "dietrich.cx", true },
@@ -10978,6 +12354,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "diffnow.com", true },
{ "difoosion.com", true },
{ "difusordeambientes.com.br", true },
+ { "digaxtest.com", true },
{ "digcit.org", true },
{ "digdata.de", true },
{ "dighans.com", true },
@@ -10987,7 +12364,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "digibull.email", true },
{ "digibull.link", true },
{ "digicert-support.com", true },
- { "digicert.nl", true },
+ { "digicode.hu", true },
{ "digicy.cloud", true },
{ "digideli.ee", true },
{ "digidroom.be", true },
@@ -10995,6 +12372,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "digimagical.com", true },
{ "digimedia.cd", false },
{ "digioccumss.ddns.net", true },
+ { "digipost.no", true },
+ { "digired.ro", true },
+ { "digit.ec", true },
{ "digital-compounds.com", true },
{ "digital-eastside.de", true },
{ "digital-insurance-engine.com", true },
@@ -11007,7 +12387,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "digital.gov", false },
{ "digital.govt.nz", true },
{ "digital1st.co.uk", true },
- { "digital2web.com", false },
+ { "digitalallies.co.uk", true },
{ "digitalarchitecture.com", true },
{ "digitalbitbox.com", true },
{ "digitalblood.eu", true },
@@ -11015,7 +12395,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "digitalcitizen.ro", true },
{ "digitalcraftmarketing.co.uk", true },
{ "digitalcreationclass.com", true },
- { "digitaldashboard.gov", true },
{ "digitaldatacenter.net", true },
{ "digitaldeli.com", true },
{ "digitaldeli.org", true },
@@ -11024,27 +12403,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "digitaldeliarchive.com", true },
{ "digitaldem.it", true },
{ "digitalehandtekeningen.nl", true },
- { "digitaleoverheid.nl", true },
+ { "digitaleoverheid.nl", false },
+ { "digitaleplus.fr", true },
{ "digitaletanker.com", true },
{ "digitalezukunft-hagen.de", true },
{ "digitalezukunft.nrw", true },
{ "digitalfishfun.com", true },
+ { "digitalfoster.org", true },
{ "digitalfury.co.uk", true },
{ "digitalfuturenow.com", true },
- { "digitalgov.gov", false },
+ { "digitalgov.gov", true },
{ "digitalhabit.at", true },
{ "digitalhabitat.io", true },
+ { "digitalid-sandbox.com", true },
+ { "digitalid.com", true },
+ { "digitalid.com.au", true },
{ "digitalliteracy.gov", true },
{ "digitalmarketingindallas.com", true },
{ "digitalposition.com", true },
+ { "digitalprimate.my", true },
+ { "digitalredshirts.com", true },
{ "digitalrights.center", true },
{ "digitalrights.fund", true },
- { "digitalroar.com", true },
{ "digitalskillswap.com", true },
+ { "digitalspiders.pk", true },
{ "digitalsurge.io", true },
{ "digitaltcertifikat.dk", true },
{ "digitaltechnologies.ltd.uk", true },
{ "digitalunite.de", true },
+ { "digitec.ch", true },
+ { "digitecgalaxus.ch", true },
+ { "digitise.io", true },
{ "digitkon.com", true },
{ "digitreads.com", true },
{ "digminecraft.com", true },
@@ -11054,18 +12443,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dijkmanmuziek.nl", false },
{ "dijkmanvandoorn.nl", false },
{ "diju.ch", true },
+ { "dilberkebab.co.uk", true },
{ "dildoexperten.se", true },
+ { "diletec.com.br", true },
{ "diligo.ch", true },
{ "dillewijnzwapak.nl", true },
{ "dillonkorman.com", true },
- { "diluv.com", true },
+ { "dimagrimentoincorso.it", true },
{ "dimanet.fr", true },
{ "dimanss47.net", true },
{ "dimdom.com.br", true },
{ "dime-staging.com", true },
{ "dime.io", true },
{ "dimeponline.com.br", true },
- { "dimeshop.nl", true },
{ "dimez.ru", true },
{ "dimiskovska.de", true },
{ "dimitrihomes.com", true },
@@ -11079,7 +12469,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dimmersthousandoaks.com", true },
{ "dimmerswestlakevillage.com", true },
{ "dimonb.com", true },
- { "dimseklubben.dk", true },
{ "din-hkd.jp", true },
{ "dineachook.com.au", true },
{ "dinepont.fr", true },
@@ -11088,6 +12477,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dinheirolucrar.com", true },
{ "dinkommunikasjon.no", true },
{ "dinmtb.dk", true },
+ { "dino.lol", true },
{ "dinocarrozzeria.com", true },
{ "dinstec.cl", true },
{ "dintrafic.net", true },
@@ -11100,20 +12490,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dipling.de", true },
{ "diplomatiq.org", true },
{ "diplona.de", true },
+ { "dipro.id", true },
{ "dipulse.it", true },
{ "dir2epub.com", true },
{ "dir2epub.org", true },
{ "dirba.io", true },
{ "direct-sel.com", true },
+ { "direct.cz", true },
{ "direct365.es", true },
{ "directebanking.com", true },
{ "directelectricalltd.co.uk", true },
+ { "directfinance.cz", true },
+ { "directhomeremodelinginc.com", true },
{ "directlinkfunding.co.uk", true },
{ "directnews.be", true },
{ "directoriostelefonicos.com", true },
{ "directorioz.com", true },
{ "directoryhub.io", true },
{ "directreal.sk", true },
+ { "directscripts.com", true },
{ "directspa.fr", true },
{ "direktvermarktung-schmitzberger.at", true },
{ "dirk-scheele.de", true },
@@ -11123,8 +12518,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dirko.net", true },
{ "dirkwolf.de", true },
{ "dirtcraft.ca", true },
+ { "dirtinmyshoes.com", true },
{ "dirtyincest.com", true },
{ "dirtyprettyartwear.com", true },
+ { "dirtytiles.xyz", true },
{ "disability.gov", true },
{ "disabled.dating", true },
{ "disanteimpianti.com", true },
@@ -11132,17 +12529,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "disc.uz", true },
{ "discarica.bari.it", true },
{ "discarica.bologna.it", true },
+ { "discarica.firenze.it", true },
{ "discarica.it", true },
+ { "discarica.milano.it", true },
{ "discarica.roma.it", true },
+ { "disch.com.de", true },
{ "dischempharmacie.com", true },
{ "disciples.io", true },
- { "disciplesmakingdisciples.ca", true },
- { "disciplina.io", true },
{ "discofitta.com", true },
{ "disconformity.net", true },
{ "discord.gg", true },
{ "discord4j.com", true },
{ "discordapp.com", true },
+ { "discordbee.com", true },
{ "discordghost.space", true },
{ "discordia.me", true },
{ "discordservers.com", true },
@@ -11152,11 +12551,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "discountplush.com", true },
{ "discover-shaken.com", true },
{ "discoverthreejs.com", true },
+ { "discoverucluelet.com", true },
{ "discoveryaima.com", true },
- { "discoveryottawa.ca", true },
+ { "discoveryballoon.org", true },
{ "discreet-condooms.nl", true },
{ "discrypt.ca", true },
{ "discus-communications.dk", true },
+ { "dise-online.de", true },
{ "disinclined.org", true },
{ "disinfesta.it", true },
{ "disinfestando.info", true },
@@ -11189,23 +12590,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "disinfestazioni.verona.it", true },
{ "disinfestazionivespe.milano.it", true },
{ "disinfestazionizanzare.milano.it", true },
+ { "disinfestazionizanzare.roma.it", true },
{ "disinisharing.com", true },
{ "disk.do", true },
{ "diskbit.com", true },
{ "diskbit.nl", true },
{ "disking.co.uk", true },
{ "dismail.de", true },
+ { "displayenergycertificate.co.uk", true },
{ "disposable.link", true },
{ "disroot.org", true },
{ "disrupters.ch", true },
{ "dissertationhelp.com", true },
{ "dissidence.ovh", true },
- { "dissident.host", true },
+ { "dissieux.com", true },
{ "dist-it.com", true },
{ "dist.torproject.org", false },
{ "disti.com", true },
+ { "distiduffer.org", true },
{ "distillery.com", true },
{ "distinguishedprisoner.com", true },
+ { "distracteddriving.gov", true },
+ { "distraction.gov", true },
+ { "distratus.com", true },
{ "distribuidoracristal.com.br", true },
{ "distribuidoraplus.com", true },
{ "distribuidorveterinario.es", true },
@@ -11236,6 +12643,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "divineglowinghealth.com", true },
{ "divinemercyparishvld.com", true },
{ "diving.photo", true },
+ { "divingforlife.org", true },
{ "divisuite.com", true },
{ "divorcelawyersformen.com", true },
{ "divorciosmurcia.com", true },
@@ -11244,11 +12652,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dixibox.com", true },
{ "diybook.at", true },
{ "diycc.org", true },
+ { "diygeek.com", true },
{ "diymediahome.org", true },
{ "diyosun.com", true },
{ "diytechguides.com", true },
{ "diyvideoeditor.com", true },
- { "dizalty.tv", true },
+ { "dizzie.org", true },
{ "dizzythewizard.co.uk", true },
{ "dj-leszwolle.nl", true },
{ "dj-x.info", true },
@@ -11257,18 +12666,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "djangoproject.com", true },
{ "djangosnippets.org", true },
{ "djbbouncycastles.co.uk", true },
+ { "djbobbytables.com", true },
{ "djboekingskantoor.nl", true },
{ "djc.me", true },
{ "djcursuszwolle.nl", true },
{ "djdavid98.hu", true },
- { "djeung.org", true },
- { "djiconsulting.com", true },
+ { "djfrenchy.com", true },
{ "djipanov.com", true },
+ { "djleon.net", true },
{ "djlinux.cz", true },
+ { "djlive.pl", true },
{ "djlnetworks.co.uk", true },
- { "djroynomden.nl", true },
{ "djsbouncycastlehire.com", true },
{ "djt-vom-chausseehaus.de", true },
+ { "djvintagevinyl.com", true },
{ "djvintagevinyl.nl", true },
{ "djwaynepryke.com", true },
{ "dk-kromeriz.cz", true },
@@ -11276,23 +12687,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dk.search.yahoo.com", false },
{ "dkcomputers.com.au", true },
{ "dkds.us", true },
+ { "dko-steiermark.ml", true },
{ "dkstage.com", true },
{ "dkwedding.gr", true },
{ "dl.google.com", true },
- { "dlabouncycastlehire.co.uk", true },
{ "dlaspania.pl", true },
+ { "dlbouncers.co.uk", true },
{ "dlde.ru", true },
{ "dldl.fr", true },
{ "dleger.space", true },
{ "dlfsymposium.nl", true },
{ "dlitz.net", true },
{ "dll4free.com", true },
+ { "dlld.biz", true },
{ "dlld.com", true },
+ { "dlld.info", true },
+ { "dlld.org", true },
+ { "dlld.us", 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 },
@@ -11302,21 +12717,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dmaglobal.com", true },
{ "dmailshop.ro", true },
{ "dmarc.dk", true },
+ { "dmarc.tech", true },
{ "dmatrix.xyz", true },
{ "dmd.lv", true },
{ "dmdd.org.uk", true },
{ "dmess.ru", true },
+ { "dmfj.io", true },
+ { "dmhtwebordering.com", true },
{ "dmi.es", true },
{ "dmitry.sh", true },
- { "dmix.ca", true },
{ "dmk-realestate.com", true },
{ "dmmkenya.co.ke", false },
{ "dmmultionderhoud.nl", true },
+ { "dmn.sh", true },
+ { "dmoj.ca", true },
{ "dmparish.com", true },
{ "dmschilderwerken.nl", true },
- { "dmx.xyz", true },
- { "dmxledlights.com", true },
- { "dmzlab.se", true },
{ "dn3s.me", true },
{ "dn42.eu", false },
{ "dn42.us", true },
@@ -11327,7 +12743,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dnapizza.com", true },
{ "dnc.org.nz", true },
{ "dndtools.net", true },
- { "dne.lu", true },
{ "dnlr.tech", true },
{ "dnmlab.it", true },
{ "dnplegal.com", true },
@@ -11337,16 +12752,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dns8.online", true },
{ "dnsaio.com", true },
{ "dnscrawler.com", true },
+ { "dnscrypt-blacklist.tk", true },
{ "dnscrypt.info", true },
{ "dnscrypt.nl", true },
{ "dnscurve.io", true },
{ "dnshallinta.fi", true },
- { "dnsinfo.ml", true },
- { "dnsipv6.srv.br", true },
{ "dnskeep.com", true },
{ "dnskeeper.com", true },
{ "dnsman.se", true },
{ "dnspod.ml", true },
+ { "dnsrate.com", true },
{ "dnstwister.report", true },
{ "do-prod.com", true },
{ "do.gd", true },
@@ -11354,16 +12769,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "do13.net", true },
{ "do67.de", true },
{ "do67.net", true },
- { "dobraprace.cz", true },
- { "dobrev.family", true },
+ { "dobraprace.cz", false },
+ { "dobre-programy.xyz", true },
+ { "dobreprogramy.pro", true },
{ "dobrisan.ro", true },
- { "dobsnet.net", true },
+ { "doc.ai", true },
{ "doc.python.org", true },
{ "doc.to", false },
{ "doc8643.com", true },
{ "docabo.ch", true },
{ "docassure.de", true },
{ "docbox.ch", true },
+ { "docdoc.ru", true },
{ "doceamoraviverbem.com", true },
{ "docemeldoces.com", true },
{ "dochimera.com", true },
@@ -11371,7 +12788,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dockerbook.com", false },
{ "dockerup.net", true },
{ "docline.gov", true },
- { "docloh.de", true },
{ "docloudu.info", true },
{ "docplexus.com", true },
{ "docs.google.com", false },
@@ -11393,22 +12809,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "docudanang.com.vn", true },
{ "documaniatv.com", true },
{ "docusearch.com", true },
+ { "doda.space", true },
{ "dodds.cc", true },
{ "dodopri.com", true },
{ "doenjoylife.com", true },
+ { "doeren.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 },
{ "dogear.ch", true },
+ { "dogforum.de", true },
{ "dogft.com", true },
{ "doggedbyirs.com", true },
+ { "doggo.cloud", true },
+ { "doggo.dance", true },
+ { "doggo.email", true },
{ "doggroomingcourse.com", true },
+ { "doggybag-committee.com", true },
{ "dogmap.jp", true },
{ "dogodki.today", true },
{ "dogoo.com", true },
@@ -11423,7 +12844,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "doki.space", true },
{ "dokipy.no", true },
{ "dokuboard.com", true },
- { "dokuraum.de", true },
{ "dolci-delizie.de", true },
{ "dolciterapie.com", true },
{ "doleta.gov", true },
@@ -11434,9 +12854,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dollemore.com", true },
{ "dollhousetoyo.com", true },
{ "dolorism.com", true },
- { "dolphin-cloud.com", true },
- { "dolphin-hosting.com", true },
- { "dolphin-it.de", true },
+ { "dolph.de", true },
{ "dom-medicina.ru", true },
{ "doma.in", true },
{ "domadillo.com", true },
@@ -11445,45 +12863,49 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "domain001.info", true },
{ "domainedemiolan.ch", true },
{ "domainexpress.de", false },
- { "domainhacks.io", true },
{ "domainkauf.de", true },
{ "domainoo.com", true },
{ "domains.autos", true },
{ "domains.boats", true },
{ "domains.google.com", true },
- { "domains.homes", true },
{ "domains.motorcycles", true },
{ "domains.yachts", true },
{ "domainsilk.com", true },
+ { "domainspeicher.com", true },
{ "domainspeicher.one", true },
{ "domainstaff.com", true },
+ { "domainvoider.cf", true },
{ "domakidis.com", true },
+ { "domarkperu.com", true },
{ "domaxpoker.com", true },
{ "domeconseil.fr", true },
- { "domein-direct.nl", false },
+ { "domein-direct.nl", true },
{ "domenic.me", true },
{ "domenicam.com", true },
{ "domesticcleaners.co.uk", true },
+ { "domfee.com", true },
{ "domhaase.me", true },
{ "domian.cz", true },
{ "dominationgame.co.uk", true },
+ { "dominctheroofguy.com", true },
{ "dominicself.co.uk", true },
{ "dominik-bergmann.de", true },
{ "dominik-schlueter.de", true },
+ { "dominik.st", true },
{ "dominikaner-vechta.de", true },
{ "dominikkulaga.pl", true },
{ "dominionregistries.domains", true },
{ "dominique-haas.fr", false },
{ "dominoknihy.cz", true },
{ "dominomatrix.com", true },
- { "domix.fun", true },
- { "domizx.de", true },
{ "dommascate.com.br", true },
{ "domob.eu", true },
{ "domodeco.fr", true },
{ "domodedovo.travel", true },
+ { "domop.cc", true },
+ { "domop.net", true },
+ { "domop.org", true },
{ "domprojects.com", true },
- { "domquixoteepi.com.br", true },
{ "domscripting.com", true },
{ "domster.com", true },
{ "domus-global.com", true },
@@ -11502,16 +12924,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "domyresearchpaper.com", true },
{ "domyreview.net", true },
{ "domyspeech.com", true },
+ { "domytermpaper.com", true },
{ "domythesis.net", true },
{ "domyzitrka.cz", true },
+ { "domznak.ru", true },
{ "donabeneko.jp", true },
{ "donaldm.co.uk", true },
{ "donateaday.net", true },
{ "donateway.com", true },
+ { "donation.ph", true },
{ "donboscogroep.nl", true },
{ "donetsk24.su", true },
{ "donfelino.tk", false },
- { "dongthucvat.com", true },
+ { "dongcdn.com", true },
{ "dongxuwang.com", true },
{ "donjusto.nl", true },
{ "donkennedyandsons.com", true },
@@ -11537,16 +12962,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "donnoval.ru", false },
{ "donotcall.gov", true },
{ "donotlink.it", true },
- { "donovand.info", true },
{ "donovankraag.nl", true },
- { "donpomodoro.com.co", true },
{ "dont.re", true },
{ "dont.watch", true },
{ "dontbeevil.com", true },
{ "dontbubble.me", true },
{ "dontcageus.org", true },
+ { "donthedragonwilson.com", true },
{ "dontpayfull.com", true },
- { "donttrust.me", true },
{ "donutcompany.co.jp", true },
{ "dooby.fr", true },
{ "dooleylabs.com", true },
@@ -11562,17 +12985,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "doorhandlese.com", true },
{ "doorshingekit.com", true },
{ "doorswest.net", true },
+ { "doortim.nl", true },
{ "dopesoft.de", true },
- { "dopetrue.com", true },
- { "dophys.top", true },
- { "dopply.com", true },
+ { "doppeleinhorn.de", true },
{ "dopravni-modely.cz", true },
{ "dopsi.ch", true },
{ "dora.moe", true },
+ { "dorco.be", true },
{ "dorde.eu", true },
{ "dorfbaeck.at", true },
{ "dorfbrunnen.eu", true },
- { "dorfzittig.de", true },
{ "doriangirod.ch", true },
{ "dorianharmans.nl", true },
{ "dorianmuthig.com", true },
@@ -11581,6 +13003,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "doridian.net", true },
{ "doridian.org", true },
{ "dormirmucho.com", true },
+ { "dormitengernyikaland.hu", true },
{ "dormiu.com", true },
{ "dormiu.com.br", true },
{ "dornhecker.me", true },
@@ -11589,7 +13012,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dorquelle.com", true },
{ "dorsetentertainments.co.uk", true },
{ "dorth.nl", true },
+ { "dortmund.directory", true },
{ "dosdediez.com", true },
+ { "dosenbierrepublik.com", true },
{ "dosenkiwi.at", true },
{ "doska.by", true },
{ "doska.ru", true },
@@ -11606,14 +13031,11 @@ 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 },
{ "dotesports.com", true },
{ "dotgov.gov", true },
{ "dothebangthingsalon.com", true },
@@ -11628,18 +13050,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dotphoto.com", true },
{ "dotplex.com", true },
{ "dotplex.de", true },
+ { "dotrel.com", true },
{ "dotrox.net", true },
{ "dotshule.ug", true },
{ "dotsiam.co.th", true },
{ "dotsiam.com", true },
{ "dotsiam.in.th", true },
+ { "dotweb.cloud", true },
{ "douai.me", true },
{ "doubleaste.com", true },
{ "doubleavineyards.com", true },
+ { "doubledash.org", true },
{ "doublefun.net", true },
{ "doublestat.me", true },
{ "doubleup.com.au", true },
{ "doucheba.gs", false },
+ { "doughseeker.com", true },
{ "dougley.com", true },
{ "dougsautobody.com", true },
{ "doujinshi.info", true },
@@ -11648,11 +13074,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "douzer.de", true },
{ "douzer.industries", true },
{ "dovenzorgmalawi.nl", true },
- { "dovro.de", true },
{ "dowell.media", true },
{ "dowellconsulting.com", true },
{ "dowhatmakegood.de", true },
{ "dowling.nz", true },
+ { "download.dk", true },
{ "downloadaja.com", true },
{ "downloadgamemods.com", true },
{ "downloadgram.com", true },
@@ -11663,19 +13089,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "downloadsoftwaregratisan.com", true },
{ "downrightcute.com", true },
{ "downthe.pub", true },
- { "downtimerobot.com", true },
{ "downtimerobot.nl", true },
{ "downtownautospecialists.com", true },
+ { "downtownstevenspoint.org", true },
{ "downtownvernon.com", true },
{ "dox-box.eu", true },
{ "doxal.ro", true },
{ "doyoucheck.com", false },
{ "doyouedc.com", true },
{ "doyoutax.com", true },
- { "doypacky.cz", true },
+ { "doypacky.cz", false },
{ "doze-cloud.tech", true },
{ "dozecloud.com", true },
{ "dp.cx", true },
+ { "dp2.com.br", true },
{ "dpd.com.pl", true },
{ "dpecuador.com", true },
{ "dperson.net", true },
@@ -11708,6 +13135,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dr-stoetter.de", true },
{ "dr-www.de", true },
{ "dr2dr.ca", true },
+ { "draadloos-besturen.nl", true },
{ "draadloze-noodstop.nl", true },
{ "drabadir.com", true },
{ "drabim.org", true },
@@ -11722,15 +13150,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dracox.com", true },
{ "draftguru.com.au", true },
{ "drafton.com", true },
- { "drageeparadise.fr", true },
+ { "dragcave.net", true },
{ "dragfiles.com", true },
{ "draghetti.it", true },
- { "draghive.asia", true },
- { "draghive.ca", true },
- { "draghive.co", true },
- { "draghive.co.uk", true },
{ "draghive.com", true },
- { "draghive.tv", true },
{ "dragon-chem.eu", true },
{ "dragon-hearts.co.uk", true },
{ "dragon.nu", true },
@@ -11749,12 +13172,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dragonsunited.net", true },
{ "dragonsunited.org", true },
{ "dragonwolfpackaquaria.com", true },
- { "dragonwork.me", true },
- { "drainagedirect.com", true },
{ "draintechnorthwest.net", true },
+ { "drake.partners", true },
{ "drakecommercial.com", true },
{ "drakeluce.com", true },
- { "drakensberg-tourism.com", true },
{ "drakenson.de", true },
{ "draliabadi.com", true },
{ "dramaticpeople.com", true },
@@ -11763,38 +13184,45 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dras.hu", true },
{ "draugr.de", true },
{ "draw.uy", true },
+ { "drawchan.org", true },
{ "drawesome.uy", true },
{ "drawingcode.net", true },
{ "drawtwo.gg", true },
{ "drawvesly.ovh", true },
{ "drawxp.com", true },
+ { "draycotthotel.com", true },
+ { "drbresnick.com", true },
{ "drbriones.com", true },
{ "drcarolynquist.com", true },
{ "drchrislivingston.com", true },
- { "drchristinehatfield.ca", true },
{ "drchristophepanthier.com", true },
+ { "drdegenhart.de", true },
+ { "drdenisvincenzi.com.br", true },
{ "drdipilla.com", true },
+ { "drdripplumbingsydney.com.au", true },
+ { "dreamboxpro.com", true },
+ { "dreamcraft.su", true },
{ "dreamcreator108.com", true },
{ "dreamday-with-dreamcar.de", true },
+ { "dreamdestine.com", true },
{ "dreamdivers.com", true },
{ "dreamhack.com", true },
{ "dreamhostremixer.com", true },
{ "dreamlandmagic.com", true },
- { "dreamlinehost.com", false },
{ "dreamlordpress.it", true },
{ "dreamlux.cz", true },
{ "dreamlux.sk", true },
{ "dreammaker-nw.com", true },
- { "dreammakerremodelil.com", true },
{ "dreammakerutah.com", true },
{ "dreamof.net", false },
- { "dreamonkey.com", true },
{ "dreamrae.net", true },
- { "dreamstream.mobi", true },
+ { "dreamsforabetterworld.com.au", true },
{ "dreamstream.nl", true },
{ "dreamstream.tv", true },
{ "dreamstream.video", true },
- { "dreemurr.com", true },
+ { "dreamz-staging.zone", true },
+ { "dreamz.com", true },
+ { "dreax.win", true },
{ "drei01.com", true },
{ "drei01.de", true },
{ "drei01.technology", true },
@@ -11808,7 +13236,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dresdner-mandelstollen.de", true },
{ "dresdner-stollen.shop", true },
{ "dress-cons.com", true },
- { "dressify.co", true },
{ "dressify.in", true },
{ "drevanbeale.com", true },
{ "drevo-door.cz", false },
@@ -11817,15 +13244,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "drewapianostudio.com", true },
{ "dreweryinc.com", true },
{ "drewsilcock.co.uk", true },
+ { "drewzar.com", true },
{ "dreyfussplasticsurgery.com", true },
{ "drezzy.it", true },
{ "drfranciscofonseca.com.br", true },
{ "drfrey.ch", true },
- { "drgdrp.com", true },
+ { "drfun1.com", true },
+ { "drgerthplasticsurgery.com", true },
+ { "drghomi.com", true },
+ { "drglassgyn.com", true },
+ { "drgn.no", true },
{ "drgrace.ca", true },
{ "drhathazi.hu", true },
{ "drheibel.com", true },
+ { "drhildebrand.net", true },
{ "drhoseyni.com", true },
+ { "drhyler.com", true },
{ "driesjtuver.nl", true },
{ "driessoftsec.tk", true },
{ "driftdude.nl", true },
@@ -11837,6 +13271,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "drillshackresort.com", true },
{ "drinkcontrolapp.com", true },
{ "drinkgas-jihlava.cz", true },
+ { "drinkgo.vn", true },
+ { "drinkplanet.eu", true },
{ "drive.google.com", false },
{ "driveexport.com", true },
{ "driven2shine.eu", true },
@@ -11851,33 +13287,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "drivinhors.com", true },
{ "drivya.com", true },
{ "drixn.cn", true },
- { "drixn.com", true },
{ "drizz.com.br", false },
+ { "drjacquesmalan.com", true },
{ "drjenafernandez.com", true },
{ "drjoe.ca", true },
{ "drjuanitacollier.com", false },
{ "drjulianneil.com", true },
{ "drkhsh.at", false },
+ { "drkmtrx.xyz", true },
{ "drlandis.com", true },
{ "drlangsdon.com", true },
{ "drlinkcheck.com", true },
- { "drlutfi.com", true },
{ "drmayakato.com", true },
{ "drmcdaniel.com", true },
{ "drms.us", true },
{ "drmtransit.com", true },
- { "drmyco.net", true },
- { "drogueriaelbarco.com", true },
{ "droidandy.com", true },
{ "droidapp.nl", true },
{ "droidgyan.com", true },
{ "droidhere.com", true },
{ "droidim.com", false },
- { "droidwave.com", true },
{ "drone-it.net", true },
{ "dronebl.org", true },
{ "droneland.nl", true },
{ "dronepit.dk", true },
+ { "dronesz.co", true },
{ "droni.cz", true },
{ "dronnet.com", false },
{ "dronografia.es", true },
@@ -11892,22 +13326,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dropshell.net", true },
{ "droso.dk", true },
{ "drown.photography", true },
+ { "drpetersenobgynal.com", true },
{ "drpetervoigt.ddns.net", true },
{ "drpetervoigt.de", true },
+ { "drphillipsmwc.com", true },
{ "drpico.com.au", true },
- { "drros.ru", true },
+ { "drpure.top", true },
{ "drrr.chat", true },
{ "drrr.wiki", true },
{ "drsajjadian.com", true },
{ "drsamuelkoo.com", true },
{ "drschlarb.eu", true },
- { "drschruefer.de", true },
{ "drsturgeonfreitas.com", true },
+ { "drsubbio.com", true },
{ "drtimmarch.com", true },
{ "drtimothybradley.com", true },
+ { "drtristanberry.com", true },
{ "druckerei-huesgen.de", true },
{ "drugs.com", true },
{ "drumbe.at", true },
+ { "drumlines.org", true },
{ "drummondframing.com", true },
{ "drunkscifi.com", true },
{ "drupal-expert.it", true },
@@ -11920,7 +13358,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "drwang.group", true },
{ "drweissbrot.net", true },
{ "drwxr.org", true },
- { "dryan.com", false },
+ { "dryan.com", true },
{ "drybjed.net", true },
{ "drycleancoalition.org", true },
{ "drycreekphoto.com", true },
@@ -11931,32 +13369,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "drywallresponse.gov", true },
{ "ds67.de", true },
{ "dsancomics.com", true },
- { "dsanraffleshangbai.xyz", true },
{ "dsayce.com", true },
{ "dsble.de", true },
{ "dsbrowser.com", true },
{ "dsbutler.de", true },
{ "dschwarzachtaler.de", true },
- { "dsdalismerkezi.com", true },
{ "dsebastien.net", true },
{ "dsektionen.se", false },
{ "dsgarms.com", true },
{ "dsgholsters.com", true },
{ "dsgnet.hu", true },
+ { "dsgvo-addon.eu", true },
{ "dsgvo.name", true },
+ { "dsh.io", true },
{ "dshield.org", true },
{ "dsm5.com", true },
{ "dsmjs.com", true },
+ { "dsmnet.org", true },
{ "dso-imaging.co.uk", true },
{ "dso-izlake.si", true },
{ "dsol.hu", true },
- { "dssale.com", true },
+ { "dspace.pl", true },
{ "dstamou.de", true },
{ "dstat.cc", true },
{ "dsteiner.at", true },
{ "dstvinstallalberton.co.za", true },
{ "dstvinstalledenvale.co.za", true },
- { "dstvinstallfourways.co.za", true },
+ { "dstvinstallglenvista.co.za", true },
+ { "dstvinstalljohannesburg.co.za", true },
{ "dstvinstallkemptonpark.co.za", true },
{ "dstvinstallrandburg.co.za", true },
{ "dstvrandburg.co.za", true },
@@ -11966,7 +13406,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dt27.org", true },
{ "dtbouncycastles.co.uk", true },
{ "dtdsh.com", true },
- { "dte.co.uk", true },
{ "dtg-fonds.com", true },
{ "dtg-fonds.de", true },
{ "dtg-fonds.net", true },
@@ -11976,7 +13415,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dtnx.org", true },
{ "dtoweb.be", true },
{ "dtp-mstdn.jp", false },
- { "dtpak.cz", true },
{ "dtuaarsfest.dk", true },
{ "dtx.sk", true },
{ "du-alex.ru", true },
@@ -12000,11 +13438,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "duckduck.horse", true },
{ "duckduckstart.com", true },
{ "duckeight.win", true },
+ { "duckfam.us", true },
{ "duckinc.net", true },
{ "duct.me", true },
{ "dudesunderwear.com.br", false },
- { "due-diligence-security.com", true },
- { "duerlund-falkenberg.dk", true },
{ "duernberg.at", true },
{ "duesee.org", true },
{ "duesterhus.eu", true },
@@ -12015,7 +13452,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dugnet.org", false },
{ "dugunedavet.com", true },
{ "duh.se", true },
- { "dui805.com", true },
{ "duijf.info", true },
{ "duijfathome.nl", true },
{ "duitang.com", true },
@@ -12027,19 +13463,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dulcinela.es", true },
{ "dulei.si", true },
{ "dullapp.com", true },
+ { "dum.moe", true },
{ "dumax.xyz", true },
{ "dumbeartech.com", true },
{ "dumberger-bau.de", true },
- { "dumbfunded.co.uk", true },
- { "dumbomove.com.au", true },
{ "dumino.bg", true },
- { "dumpsters.com", true },
{ "duncancmt.com", true },
{ "duncanfamilytrust.org", true },
{ "duncanmoffat.com", true },
{ "duncanwinfrey.com", true },
{ "duncm.com", true },
{ "dundalkdonnie.com", true },
+ { "dung-massage.fr", true },
{ "dungeon-bbs.de", true },
{ "dunklau.fr", true },
{ "dunkle-seite.org", true },
@@ -12047,9 +13482,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dunmanelectric.com", true },
{ "duobus.nl", true },
{ "duoluodeyu.com", true },
- { "duonganhtuan.com", true },
{ "duoquadragintien.fr", true },
{ "dupisces.com.tw", true },
+ { "duplicazionechiavi.it", true },
{ "duploclique.pt", false },
{ "dupree.co", true },
{ "dupree.pe", true },
@@ -12059,7 +13494,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "durchblick-shop.de", true },
{ "durdle.com", true },
{ "dureuil.info", true },
- { "durexwinkel.nl", true },
{ "durfteparticiperen.nl", true },
{ "durgatopos.it", true },
{ "duria.de", true },
@@ -12069,31 +13503,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dusmomente.com", true },
{ "dustplanet.de", true },
{ "dustri.org", true },
- { "dustycloth.com", true },
{ "dustygroove.com", true },
- { "dustyro.se", true },
{ "dustyspokesbnb.ca", true },
{ "dustywilson.com", true },
+ { "dutabisniz.com", true },
{ "dutch.desi", true },
{ "dutchdare.nl", true },
+ { "dutchessuganda.com", true },
{ "dutchfoodie.nl", true },
{ "dutchforkrunners.com", true },
{ "dutchrank.nl", true },
+ { "dutchsailors.com", true },
{ "dutchwanderers.nl", true },
{ "dutchweballiance.nl", true },
+ { "dutrac.co.id", true },
{ "duval.paris", true },
+ { "duvalo.eu", true },
+ { "duvalo.info", true },
+ { "duvalo.net", true },
+ { "duvalo.org", true },
+ { "duvalo.sk", true },
{ "dv189.com", true },
{ "dvbris.co.uk", true },
{ "dvbris.com", true },
{ "dvdinmotion.com", true },
{ "dvdland.com.au", true },
+ { "dverisochi.ru", true },
{ "dvhosting.be", true },
{ "dvipadmin.com", true },
+ { "dvlot.ru", true },
{ "dvnatura.ch", true },
{ "dvorupotocnych.sk", true },
{ "dvwc.org", true },
{ "dvx.cloud", true },
- { "dw-loewe.de", true },
{ "dwgf.xyz", true },
{ "dwi-sued.de", true },
{ "dwienzek.de", true },
@@ -12113,17 +13555,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dybuster.es", true },
{ "dybuster.it", true },
{ "dybuster.se", true },
+ { "dycoa.com", true },
{ "dyeager.org", true },
{ "dyktig.as", true },
{ "dyktig.no", true },
- { "dylanboudro.com", true },
{ "dylancl.cf", true },
{ "dylangattey.com", false },
{ "dylankatz.com", true },
{ "dylanknoll.ca", true },
{ "dylanspcrepairs.com", true },
- { "dylanwise.net", true },
- { "dylmye.me", true },
+ { "dylmye.me", false },
{ "dym.asia", true },
{ "dym.bz", true },
{ "dym2012.com", true },
@@ -12135,7 +13576,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dymmovie.com", true },
{ "dymowski.de", false },
{ "dyn-dnhensel.de", true },
- { "dyn-nserve.net", true },
{ "dyn.im", true },
{ "dynaloop.net", false },
{ "dynamicdesignuk.com", true },
@@ -12145,12 +13585,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dynamicsnetwork.net", true },
{ "dynamicsretailnotes.com", true },
{ "dynamictostatic.com", true },
- { "dynamicyou.co.uk", true },
- { "dynamo.city", true },
{ "dynapptic.com", true },
{ "dynastic.co", true },
+ { "dynastyarena.com", true },
{ "dynastybullpen.com", true },
- { "dynastyredzone.com", true },
+ { "dynastycalculator.com", true },
+ { "dynastycentral.com", true },
+ { "dynastychalkboard.com", true },
+ { "dynastyclubhouse.com", true },
+ { "dynastycrate.com", true },
+ { "dynastyduel.com", true },
+ { "dynastyfan.com", true },
+ { "dynastygoal.com", true },
+ { "dynastylocker.com", true },
+ { "dynastyredline.com", true },
+ { "dyncdn.me", true },
{ "dynn.be", true },
{ "dynocc.xyz", true },
{ "dynorphin.com", true },
@@ -12163,10 +13612,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dyscalculia-blog.com", true },
{ "dysthymia.com", true },
{ "dyyn.de", true },
+ { "dyz.pw", true },
+ { "dz6729.com", true },
{ "dzar.nsupdate.info", true },
{ "dzeina.ch", true },
{ "dzet.de", true },
+ { "dzi.wtf", true },
{ "dziary.com", true },
+ { "dziekonski.com", true },
+ { "dziura.me", true },
{ "dziurdzia.pl", true },
{ "dzivniekubriviba.lv", true },
{ "dzndk.com", true },
@@ -12175,7 +13629,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dzsi.bi", true },
{ "dzsibi.com", true },
{ "dzsula.hu", true },
+ { "dzworld.com", true },
{ "dzyszla.pl", true },
+ { "e-beyond.de", true },
{ "e-bikesdirect.co.uk", true },
{ "e-biografias.net", true },
{ "e-borneoshop.com", true },
@@ -12183,15 +13639,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "e-colle.info", true },
{ "e-cottage.com.br", true },
{ "e-enterprise.gov", false },
- { "e-hon.link", true },
{ "e-id.ee", true },
+ { "e-labo.works", true },
{ "e-lambre.com", true },
{ "e-learningbs.com", true },
{ "e-lifetechnology.com", true },
+ { "e-nanum.kr", true },
{ "e-ptn.com", true },
+ { "e-referendum.cz", true },
{ "e-speak24.pl", true },
{ "e-standardstore.org", true },
- { "e-surveillant.nl", true },
{ "e-sushi.net", true },
{ "e-sw.co.jp", true },
{ "e-teacher.pl", true },
@@ -12207,21 +13664,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "e-typ.eu", true },
{ "e-verify.gov", true },
{ "e-webos.com", true },
- { "e-worksmedia.com", true },
+ { "e-worksmedia.com", false },
{ "e.mail.ru", true },
{ "e11even.nl", false },
{ "e15r.co", true },
{ "e2feed.com", true },
{ "e30.ee", true },
{ "e4metech.com", true },
+ { "e5197.co", true },
{ "e5tv.hu", true },
{ "e64.com", true },
+ { "e6729.co", true },
+ { "e6729.com", true },
+ { "e6957.co", true },
{ "e6e.io", true },
{ "e6ex.com", true },
{ "e7d.io", true },
{ "e7fun.net", true },
+ { "e9297.co", true },
+ { "e9397.com", true },
{ "e965.ru", true },
- { "e9a.at", true },
+ { "e9721.com", true },
+ { "e9728.co", true },
{ "ea2drocks.com", true },
{ "eac.gov", true },
{ "eacero.com", true },
@@ -12229,36 +13693,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
+ { "ealadel.com", true },
{ "ealev.de", true },
{ "eallion.com", true },
+ { "eapestudioweb.com", true },
+ { "earfolds.com", true },
{ "earl.org.uk", true },
{ "earlydocs.com", true },
{ "earlyyearshub.com", true },
{ "earmarks.gov", true },
{ "earn.com", true },
- { "earn.wiki", true },
+ { "earthspundesigns.com", true },
{ "earthsystemprediction.gov", true },
{ "earticleblog.com", true },
{ "earvinkayonga.com", false },
- { "easelforart.com", true },
{ "easez.net", true },
{ "eashwar.com", true },
{ "eason-yang.com", true },
{ "eastarm.net", true },
+ { "eastbaycontractor.com", true },
{ "eastblue.org", true },
{ "easterncapebirding.co.za", true },
{ "eastlothianbouncycastles.co.uk", true },
{ "eastmanbusinessinstitute.com", true },
+ { "eastmidlandsstargazers.org.uk", false },
{ "eastnorschool.co.uk", true },
{ "eastplan.co.kr", true },
- { "eastsidecottages.co.uk", true },
{ "eastsideroofingcontractor.com", true },
+ { "eastwind.cloud", true },
{ "easy-rpg.org", false },
{ "easy2bathe.co.uk", true },
{ "easyadsnbanners.tk", false },
@@ -12267,11 +13734,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "easycosmetic.ch", true },
{ "easydumpsterrental.com", true },
{ "easyeigo.com", true },
+ { "easyenrollment.net", true },
{ "easyfiles.ch", true },
{ "easyhaul.com", true },
{ "easymun.com", true },
- { "easyocm.hu", true },
- { "easyoutdoor.nl", true },
{ "easypay.bg", true },
{ "easypayments.pro", true },
{ "easyproperty.com", true },
@@ -12279,7 +13745,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "easyqr.codes", true },
{ "easyroad.fr", true },
{ "easyslide.be", true },
- { "easyssl.com.cn", true },
{ "easystore.co", true },
{ "easytechguides.com", true },
{ "easytechsecurity.com", true },
@@ -12298,13 +13763,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eb-net.de", true },
{ "eb7.jp", true },
{ "ebanking.indovinabank.com.vn", true },
+ { "ebanking.raiffeisen.ch", true },
{ "ebankingabersicher.ch", true },
{ "ebankingbutsecure.ch", true },
{ "ebankingentoutesecurite.ch", true },
{ "ebankingmasicuro.ch", true },
{ "ebas.ch", true },
{ "ebataw.com", true },
- { "ebayinc.com", true },
{ "ebaymotorssucks.com", true },
{ "ebene-bpo.com", true },
{ "ebenezersbarnandgrill.com", true },
@@ -12312,10 +13777,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ebermannstadt.de", false },
{ "eberwe.in", true },
{ "ebest.co.jp", true },
- { "ebiebievidence.com", true },
+ { "ebiebievidence.com", false },
{ "ebiografia.com", true },
{ "ebisi.be", true },
{ "ebizarts.com", true },
+ { "eblog.com.au", true },
{ "eblog.ink", true },
{ "eboek.info", true },
{ "ebonyriddle.com", true },
@@ -12324,10 +13790,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eboyer.com", true },
{ "ebpglobal.com", false },
{ "ebrnd.de", true },
+ { "ebuyclub.com", 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 },
@@ -12337,14 +13803,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ecco-verde.com", false },
{ "ecdn.cz", true },
{ "ecfnorte.com.br", true },
- { "ecfunstalls.com", true },
{ "echarity.ae", true },
{ "echatta.net", true },
{ "echatta.org", true },
{ "echi.pw", true },
{ "echidna-rocktools.eu", true },
{ "echo-security.co", true },
- { "echo.cc", true },
{ "echoanalytics.com", true },
{ "echobridgepartners.com", true },
{ "echodio.com", true },
@@ -12357,19 +13821,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "echosim.io", true },
{ "echosixmonkey.com", true },
{ "echosystem.fr", true },
- { "echoteen.com", true },
{ "echoworld.ch", true },
{ "echternach-immobilien.de", true },
- { "echtgeld-casinos.de", true },
+ { "ecigfind.com", true },
{ "ecir.pro", true },
{ "ecir.ru", true },
{ "ecirtam.net", true },
{ "eckel.co", true },
- { "eclanet.ca", true },
+ { "eclectiv.com", true },
{ "eclipse.ws", true },
- { "ecliptic.cc", true },
{ "ecnetworker.com", true },
{ "eco-derattizzazione.it", true },
+ { "eco-solu.co.jp", true },
{ "eco-work.it", true },
{ "eco2u.ru", true },
{ "ecobee.com", false },
@@ -12377,8 +13840,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ecobin.nl", true },
{ "ecoccinelles.ch", true },
{ "ecoccinelles.com", true },
+ { "ecococon.fr", true },
{ "ecocreativity.org", true },
{ "ecodedi.com", true },
+ { "ecoder.co", true },
{ "ecodesigns.nl", true },
{ "ecodigital.social", true },
{ "ecofabrica.com.br", true },
@@ -12391,58 +13856,71 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ecole-attalens.ch", true },
{ "ecoledusabbat.org", true },
{ "ecolemathurincordier.com", true },
+ { "ecologikashop.com", true },
{ "ecombustibil.ro", true },
+ { "ecomia.dk", true },
{ "ecomycie.com", true },
{ "economiafinanzas.com", true },
{ "economias.pt", true },
{ "economic-sanctions.com", true },
{ "economicinclusion.gov", true },
{ "economics-colleges.com", true },
+ { "economie2.alsace", true },
{ "economiefidu.ch", true },
{ "economies.ch", true },
{ "econsorzio.com", true },
{ "econsumer.gov", true },
{ "econverter.cloud", true },
- { "ecorp.cc", true },
{ "ecos-ev.de", true },
+ { "ecos.srl", true },
{ "ecoshare.info", true },
{ "ecosm.com.au", true },
{ "ecosound.ch", true },
{ "ecostruxureit.com", true },
{ "ecosystem.atlassian.net", true },
{ "ecosystemmanager-uat1.azurewebsites.net", true },
- { "ecotaxi2airport.com", true },
{ "ecoterramedia.com", true },
{ "ecotur.org", true },
{ "ecovision.com.br", true },
{ "ecpannualmeeting.com", true },
+ { "ecr-test-backoffice-app.azurewebsites.net", true },
+ { "ecr-test-partnapp.azurewebsites.net", true },
{ "ecrandouble.ch", true },
- { "ecuinformacion.com", true },
+ { "ecredits-dev-app-backoffice01.azurewebsites.net", true },
+ { "ecredits-dev-app-partner01.azurewebsites.net", true },
+ { "ecsupplyinc.com", true },
+ { "ecuadorbienesraices.com", true },
+ { "ecuatask.com", true },
{ "ecupcafe.com", false },
{ "ecuteam.com", true },
{ "ecxforum.com", true },
{ "ed.gs", true },
{ "ed4becky.net", true },
- { "edakoe.ru", true },
{ "edanni.io", true },
+ { "edapt.org.uk", true },
+ { "edas.info", false },
{ "edd-miles.com", true },
{ "eddesign.ch", true },
{ "eddmil.es", true },
{ "eddokloosterman.com", true },
{ "eddyn.net", true },
+ { "edeals.co", true },
+ { "edeals.co.com", true },
+ { "edeals.com.co", true },
{ "edeca.net", true },
{ "edehsa.com", true },
- { "edeka-jbl-treueaktion.de", true },
{ "eden-eu.com", true },
{ "eden.co.uk", true },
+ { "edenmal.net", true },
{ "edenming.info", true },
{ "edesseglabor.hu", true },
{ "edfinancial.com", true },
- { "edge-cloud.net", false },
+ { "edgedynasty.com", true },
{ "edgefantasy.com", true },
{ "edgeservices.co.uk", true },
{ "edgetalk.net", true },
{ "edgevelder.com", true },
+ { "edh.email", true },
{ "edhesive.com", true },
{ "edholm.pub", true },
{ "edi-gate.com", true },
@@ -12457,7 +13935,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "edincmovie.com", true },
{ "ediscomp.sk", true },
{ "edisonlee55.com", true },
- { "edisonluiz.com", true },
{ "edisonnissanparts.com", true },
{ "edit.co.uk", true },
{ "edit.yahoo.com", false },
@@ -12477,13 +13954,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "edsby.com", true },
{ "edservicing.com", true },
{ "edshogg.co.uk", true },
+ { "edsinet.com", true },
{ "edsm.net", true },
{ "edstep.com", true },
{ "edtech-hub.com", true },
{ "edtechwebb.com", true },
{ "edu-kingdom.com", true },
{ "edu6.cloud", true },
- { "eduard-dopler.de", true },
+ { "edubase.net", true },
{ "edubras.com.br", true },
{ "educacionvirtual.com.ar", true },
{ "educatek.es", true },
@@ -12491,24 +13969,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "educationevolving.org", true },
{ "educationfutures.com", true },
{ "educationmalaysia.co.uk", true },
- { "educationunlimited.com", true },
{ "eductf.org", true },
+ { "edugundavetiyesi.com", false },
{ "eduid.se", false },
+ { "edumi.com", true },
{ "edumundo.nl", true },
+ { "edunet.gq", true },
{ "edupool.in", true },
{ "eduroam.no", true },
{ "eduroam.uy", true },
{ "edusanjal.com", true },
+ { "eduschedule.org", true },
{ "eduvpn.no", true },
{ "eduxpert.in", true },
- { "edv-bv.de", true },
{ "edv-kohls.de", true },
{ "edv-lehrgang.de", true },
+ { "edv-ringhofer.de", true },
{ "edv-schmittner.de", true },
{ "edvgarbe.de", true },
{ "edvmesstec.de", true },
- { "edwar.do", true },
- { "edwarddekker.nl", true },
{ "edwards.me.uk", true },
{ "edwardsnowden.com", true },
{ "edwardspeyer.com", true },
@@ -12520,14 +13999,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "edxn.de", true },
{ "edyou.eu", true },
{ "edzilla.info", true },
+ { "ee5197.co", true },
+ { "ee6729.co", true },
+ { "ee9297.co", true },
+ { "ee9397.com", true },
+ { "ee9721.com", true },
+ { "ee9728.co", true },
{ "eelcapone.nl", true },
{ "eellak.gr", true },
{ "eelsden.net", true },
{ "eelzak.nl", true },
{ "eemcevn.com", true },
{ "eentweevijf.be", true },
+ { "eenvren.com", true },
+ { "eenvxing.com", true },
{ "eer.io", true },
- { "eerlijktransport.nl", true },
{ "eerstejaarsweekend.nl", true },
{ "eery.de", true },
{ "eesti.xyz", true },
@@ -12536,6 +14022,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ef.gy", true },
{ "efa-football.com", true },
{ "efaas.nl", true },
+ { "efag.com", true },
{ "efcross.com", true },
{ "efeen.nl", true },
{ "eff.org", true },
@@ -12543,12 +14030,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "effe.ch", true },
{ "effective-altruist.com", true },
{ "effectivecoffee.com", true },
- { "effero.net", true },
+ { "effectivepapers.com", true },
{ "effex.ru", true },
{ "effinfun.com", true },
{ "effortlesshr.com", true },
{ "efg-darmstadt.de", false },
- { "efinity.io", true },
{ "efipsactiva.com", true },
{ "eflorashop.be", true },
{ "eflorashop.ch", true },
@@ -12564,18 +14050,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "efmcredentialing.org", true },
{ "efreet.xyz", true },
{ "eft.boutique", true },
- { "eftelingcraft.net", true },
+ { "eftopia.org", true },
{ "egablo.black", true },
+ { "egamespw.com", true },
{ "egami.ch", true },
- { "eganassociates.com.au", true },
{ "egarden.it", true },
{ "egb.at", false },
+ { "egbc.ca", true },
+ { "egbert.net", true },
{ "egeozcan.com", true },
+ { "eges.eu", true },
{ "egg-ortho.ch", true },
{ "eggblast.com", true },
{ "eggert.org", false },
- { "eggplant.today", true },
- { "egicloud.com", true },
+ { "eggqvq.com", true },
{ "egiftcards.be", true },
{ "egles.eu", true },
{ "eglisedenantes.fr", true },
@@ -12587,7 +14075,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "egres.xyz", true },
{ "egrojsoft.info", true },
{ "egrp365.ru", true },
- { "egumenita.ro", true },
{ "egw-ceramica.de", true },
{ "egweb.tv", true },
{ "ehaccp.it", true },
@@ -12595,7 +14082,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ehazi.hu", true },
{ "ehbssl.com", true },
{ "ehcommerce.com", true },
- { "ehdud8451.tk", true },
+ { "ehcommerce.org", true },
+ { "ehdud8451.gq", true },
{ "eheliche-disziplin.schule", true },
{ "ehertz.uk", true },
{ "ehipaa.com", true },
@@ -12604,35 +14092,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ehmtheblueline.com", true },
{ "ehne.de", true },
{ "ehomusicgear.com", true },
+ { "ehorizon.jp", true },
{ "ehrenburg.info", true },
{ "ehub.cz", true },
{ "ehub.hu", true },
{ "ehub.pl", true },
{ "ehub.sk", true },
- { "eiao.me", true },
{ "eichel.eu", true },
{ "eichler.work", true },
{ "eickemeyer.nl", true },
{ "eickhof.co", true },
{ "eickhof.us", true },
{ "eickhofcolumbaria.com", true },
- { "eidolons.org", true },
- { "eifel.website", true },
+ { "eidelpes.info", true },
{ "eigenpul.se", true },
{ "eigenpulse.com", true },
{ "eighty-aid.com", true },
{ "eightyfour.ca", true },
+ { "eightysoft.de", true },
{ "eigpropertyauctions.co.uk", true },
{ "eihaikyo.com", true },
- { "eika.as", true },
{ "eikounoayumi.jp", true },
- { "eilandprojectkeukens.nl", true },
{ "eilhan.com", true },
{ "eimacs.com", true },
- { "einaros.is", true },
{ "einfachbahn.de", true },
{ "einheft.info", true },
{ "einheizpreis.de", true },
+ { "einkaufi.de", true },
{ "einrichtwerk.de", true },
{ "einrichtwerk.shop", true },
{ "einsatzstellenverwaltung.de", true },
@@ -12645,13 +14131,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eipione.com", true },
{ "eirastudios.co.uk", false },
{ "eirb.fr", true },
+ { "eirik.eu", true },
{ "eisaev.ru", true },
+ { "eisenbahnfreunde-lengerich.de", true },
{ "eiskratzer-bedrucken.de", true },
{ "eit-web.de", false },
{ "eitler.cx", true },
{ "eiyoushi-shigoto.com", true },
+ { "ej.uz", true },
{ "ejdv-anmeldung.de", true },
{ "ejeff.org", true },
+ { "ejelectrical-qld.com.au", true },
+ { "ejkhosting.nl", true },
{ "ejkmedia.nl", true },
{ "ejkmuseum.nl", true },
{ "ejknet.nl", true },
@@ -12660,24 +14151,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ekaigotenshoku.com", true },
{ "ekaplast.com.pl", true },
{ "ekati.ru", true },
- { "ekawaiishop.com", true },
{ "ekb-avia.ru", true },
{ "ekd.de", true },
{ "ekedc.com", true },
{ "ekedp.com", true },
{ "eklepka.com", true },
{ "eklitzke.org", true },
- { "ekodevices.com", true },
{ "ekokontakt.cz", true },
{ "ekonbenefits.com", true },
{ "ekostecki.de", true },
{ "ekostrateg.com", true },
{ "ekouniejow.pl", true },
+ { "ekpj.jp", true },
{ "ekpyroticfrood.net", true },
- { "ekrana.info", true },
{ "ekranos.me", true },
+ { "ekre.club", true },
{ "eksisozluk.com", true },
{ "ekuatorial.com", true },
+ { "ekvastra.in", true },
{ "ekyu.moe", true },
{ "ekz-crosstour.ch", true },
{ "ekzarta.ru", true },
@@ -12695,21 +14186,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elb500ttl.nl", true },
{ "elbetech.net", true },
{ "elblogdegoyo.mx", true },
+ { "elbohlyart.com", true },
+ { "elburgozagalicos.com", true },
{ "elcambiador.es", true },
- { "elcontadorsac.com", true },
+ { "elchamandelaprosperidad.org", true },
{ "eldapoint.co.uk", true },
{ "eldenelesat.com", true },
{ "eldercare.gov", true },
{ "elderjustice.gov", true },
- { "elderoost.com", true },
{ "eldertons.co.uk", true },
{ "eldevo.com", true },
{ "eldinhadzic.com", true },
{ "eldrid.ge", true },
{ "eldritchfiction.net", true },
+ { "electerious.com", true },
{ "electionsbycounty.com", true },
{ "electionsdatabase.com", true },
- { "electmikewaters.com", true },
{ "electr0sheep.com", true },
{ "electragirl.com", true },
{ "electric-vault.co.uk", true },
@@ -12730,12 +14222,12 @@ 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 },
{ "electriccalabasas.com", true },
{ "electriccamarillo.com", true },
+ { "electriccitysf.com", true },
{ "electricconejovalley.com", true },
{ "electricdosvientos.com", true },
{ "electricfencealberton.co.za", true },
@@ -12748,8 +14240,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "electricgatemotorgermiston.co.za", true },
{ "electricgatemotorglenvista.co.za", true },
{ "electricgatemotorrandburg.co.za", true },
+ { "electricgatemotorsballito.co.za", true },
+ { "electricgatemotorsberea.co.za", true },
+ { "electricgatemotorsbluff.co.za", true },
{ "electricgatemotorskemptonpark.co.za", true },
+ { "electricgatemotorsqueensburgh.co.za", true },
{ "electricgatemotorsroodepoort.co.za", true },
+ { "electricgatemotorsumhlanga.co.za", true },
{ "electrichiddenhills.com", true },
{ "electrician-umhlangaridge.co.za", true },
{ "electricianagoura.com", true },
@@ -12766,7 +14263,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "electricianmoorpark.com", true },
{ "electriciannewburypark.com", true },
{ "electricianoakpark.com", true },
- { "electricianpacificpalisades.com", true },
{ "electriciansimivalley.com", true },
{ "electricianthousandoaks.com", true },
{ "electricianwestlakevillage.com", true },
@@ -12781,20 +14277,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "electricthousandoaks.com", true },
{ "electricwestlakevillage.com", true },
{ "electro-pak.com.pk", true },
- { "electroinkoophardenberg.nl", true },
{ "electronic-ignition-system.com", true },
{ "electronicafacil.net", true },
- { "electronicfasteners.com", true },
+ { "electronicfasteners.com", false },
{ "electrostatics.com", true },
{ "electrotainment.com", true },
{ "elefandt.com", true },
{ "elefantevoador.com", true },
+ { "elegance-sm.com", true },
{ "eleicoes2014.com.br", true },
{ "eleicoes2016.com.br", true },
{ "eleicoes2018.com", true },
+ { "elejordemarketingconsultancy.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 },
@@ -12827,6 +14323,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elementarywave.com", true },
{ "elements.guide", true },
{ "elementshop.co.uk", true },
+ { "elenatranslations.nl", true },
+ { "elenta.lt", true },
{ "elephants.net", true },
{ "elephpant.cz", true },
{ "elepover.com", true },
@@ -12837,25 +14335,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eletrochape.com.br", true },
{ "elettricista-roma.it", true },
{ "elettricista-roma.org", true },
+ { "elettricisti.roma.it", true },
+ { "elettrodomestici.roma.it", true },
{ "eleusis-zur-verschwiegenheit.de", true },
+ { "elevationcreative.net", true },
+ { "elevationtech.co.za", true },
{ "elevatoraptitudetest.com", true },
- { "elexel.ru", true },
{ "elexprimidor.com", true },
{ "elexwong.com", true },
{ "elfe.de", true },
{ "elfnon.com", true },
+ { "elforno.gr", true },
{ "elfring.eu", true },
{ "elfussports.com", true },
{ "elgalponazo.com.ar", true },
{ "elglobo.com.mx", false },
{ "elgosblanc.com", true },
- { "elguadia.faith", true },
+ { "elgrecohotel.gr", true },
+ { "elguillatun.cl", true },
{ "elhamadimi.com", true },
{ "elhorizontal.com", true },
{ "elhossari.com", true },
+ { "elia.cloud", true },
{ "elian-art.de", true },
{ "elias-nicolas.com", true },
{ "eliaskordelakos.com", true },
+ { "eliasojala.me", true },
+ { "eliaswendt.com", true },
+ { "eliaswendt.de", true },
{ "elibom.com", true },
{ "elie.net", true },
{ "elifesciences.org", true },
@@ -12867,27 +14374,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eliminercellulite.com", true },
{ "elinevanhaaften.nl", true },
{ "elinvention.ovh", true },
+ { "elipsyum.com", true },
{ "elisa.ee", false },
{ "elisabeth-kostecki.de", true },
{ "elisabeth-strunz.de", true },
{ "elisabethkostecki.de", true },
{ "elisabethrene.com", true },
- { "elisechristie.com", true },
- { "elistor6100.xyz", true },
+ { "elite-porno.ru", true },
{ "elite12.de", true },
+ { "elitebike.com.co", true },
{ "elitebouncingfun.com", true },
{ "elitegameservers.net", true },
{ "elitel.nl", true },
{ "elitenutritionoficial.com", true },
+ { "elitsa.gr", true },
{ "elixi.re", true },
{ "elixir.bzh", true },
{ "eliyah.co.il", true },
{ "elizabethbuitrago.com", true },
- { "elizabethgreenfield.com", true },
{ "elizabethrominski.com", true },
+ { "elizeugomes.com.br", true },
{ "eljef.me", true },
{ "elkoy.org", true },
{ "ell-net.tokyo", true },
+ { "ell888.com", true },
{ "ella-kwikmed.com", false },
{ "ellak.gr", true },
{ "ellegaard.dk", true },
@@ -12896,19 +14406,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ellevit.ch", true },
{ "elliesbouncers.co.uk", true },
{ "elliot.cat", true },
+ { "elliquiy.com", true },
{ "elliriehl.at", true },
{ "ellisamusements.co.uk", true },
{ "ellisleisure.co.uk", true },
{ "ellsinger.me", true },
{ "elmermx.ch", true },
- { "elnan.do", true },
{ "elnoorandelmohanad.com", true },
{ "elo-forum.org", true },
{ "elodrias.de", true },
+ { "elon-musk.ml", true },
{ "elonaspitze.de", true },
{ "elosrah.com", true },
- { "elosuite.com", true },
- { "elpado.de", true },
+ { "elpaseadordeperros.com", true },
{ "elpo.net", true },
{ "elpoderdelespiritu.org", true },
{ "elradix.be", true },
@@ -12918,31 +14428,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elsignificadodesonar.com", true },
{ "elstopstelten.nl", true },
{ "elsvanderlugt.nl", true },
- { "eltagroup.co.uk", true },
{ "eltair.com", true },
{ "eltern-verein.ch", true },
{ "elternbeiratswahl.online", true },
{ "elternforum-birmensdorf.ch", true },
{ "elternverein-utzenstorf.ch", true },
- { "eltip.click", true },
{ "eltlaw.com", true },
- { "elucron.com", true },
{ "eluhome.de", true },
{ "eluvio.com", true },
- { "elvcino.com", false },
{ "elvidence.com.au", true },
{ "elviraszabo.com", true },
{ "elvispresley.net", true },
{ "elvn.tokyo", false },
{ "elwave.org", true },
{ "elwix.com", true },
- { "elxsi.de", true },
{ "elyasweb.com", true },
+ { "elysiandigital.co", true },
{ "elysiria.fr", true },
+ { "elysium.coop", true },
{ "elysiumware.com", true },
{ "em-biotek.cz", true },
{ "emaging-productions.fr", true },
{ "emaging.fr", true },
+ { "email-pipeline.xyz", true },
{ "emailconfiguration.com", true },
{ "emailfuermich.de", true },
{ "emailhunter.co", true },
@@ -12958,13 +14466,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "emanuelemazzotta.com", true },
{ "emarketingmatters.com", true },
{ "emasex.com", true },
+ { "emasex.es", true },
{ "embassycargo.eu", true },
{ "emberlife.com", true },
+ { "embodiaacademy.com", true },
+ { "embodiaapp.com", true },
{ "embox.net", true },
+ { "embracecontext.com", true },
{ "embraceni.org", true },
{ "embroideryexpress.co.uk", true },
- { "emby.cloud", true },
- { "emcspotlight.com", true },
+ { "embsaypreschool.co.uk", true },
{ "emdrupholm.dk", true },
{ "emecew.com", true },
{ "emeliefalk.se", true },
@@ -12972,7 +14483,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "emeraldcbdshop.com", false },
{ "emeraldcityswagger.com", true },
{ "emeraldcoastrideshare.com", true },
- { "emeraldonion.org", true },
{ "emergencyshutoff.com", true },
{ "emergenzalavoro.com", true },
{ "emero.de", true },
@@ -12980,31 +14490,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "emi-air-comprime.com", true },
{ "emi.im", true },
{ "emielraaijmakers.nl", true },
+ { "emigratieplanner.com", true },
{ "emil-dein-baecker.de", true },
{ "emil-reimann.com", true },
{ "emil.click", true },
{ "emil.one", true },
- { "emilecourriel.com", true },
+ { "emiliemunsch.com", true },
{ "emiliendevos.be", true },
{ "emilio.media", true },
+ { "emiliobonelli.de", true },
+ { "emiliops.com", true },
{ "emilong.com", true },
{ "emils-1910.de", true },
{ "emilstahl.com", true },
{ "emilstahl.dk", true },
{ "emilvarga.com", true },
{ "emily.moe", true },
+ { "emilybellydance.com.au", true },
{ "emilyjohnson.ga", true },
+ { "emilypennock.com", true },
{ "emirabiz.com", false },
{ "emirichardson.com", true },
{ "emisia.com", true },
+ { "emissary.coffee", true },
{ "emivauthey.com", true },
- { "emkanrecords.com", true },
- { "emkei.cz", true },
{ "emkrivoy.com", true },
- { "emma.ca", true },
{ "emma.ly", true },
- { "emmababy420.com", true },
+ { "emmagarland.com", true },
{ "emmagraystore.com", true },
+ { "emo-poris.com", true },
{ "emobilityforum.org", true },
{ "emoji.bzh", false },
{ "emolafarm.com", true },
@@ -13012,6 +14526,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "empathogen.com", true },
{ "empathogens.com", true },
{ "empathy.ca", true },
+ { "empatico.org", true },
+ { "empatico.xyz", true },
{ "emperola.com", true },
{ "emperor-penguin.com", true },
{ "emperor-penguins.com", true },
@@ -13020,9 +14536,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "empire-univ.com", true },
{ "emploi-collectivites.fr", true },
{ "employeeexpress.gov", true },
+ { "employeemanual.com.au", true },
{ "employer.gov", true },
{ "employer.guru", true },
- { "employer411.com", true },
+ { "employer411.com", false },
+ { "emporikonathenshotel.com", true },
{ "emporiodascalcinhas.com.br", true },
{ "emporiodosperfumes.com.br", true },
{ "emporioonline.com.br", true },
@@ -13032,15 +14550,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "empowerdb.com", true },
{ "emprechtinger.com", true },
{ "emprego.pt", true },
+ { "empregosrj.com", true },
+ { "emprendeperuano.com", true },
{ "emprunterlivre.ci", true },
{ "empyrean-advisors.com", true },
+ { "emrah.io", true },
{ "emresaglam.com", true },
- { "emtradingacademy.com", true },
+ { "ems.gov", true },
+ { "emsa-casm.ca", true },
+ { "emulovers.com", true },
{ "emultiagent.pl", true },
{ "emvoice.net", true },
{ "emvoiceapp.com", true },
{ "emw3.com", true },
{ "emyr.net", true },
+ { "emyself.org", true },
+ { "emzi0767.com", true },
{ "en-booster.jp", true },
{ "en-crypt.me", true },
{ "en-maktoob.search.yahoo.com", false },
@@ -13049,30 +14574,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "enalean.com", true },
{ "enamae.net", true },
{ "enbecom.net", true },
- { "encens.boutique", true },
+ { "enbulleiugnen.com", true },
{ "encfs.win", true },
{ "encircleapp.com", true },
{ "encnet.de", true },
{ "encode.host", true },
{ "encodecloud.net", true },
{ "encoderx.uk", true },
- { "encore.io", false },
+ { "encountercss.com", true },
{ "encouragemarketing.com", true },
{ "encredible.de", false },
{ "encredible.org", false },
{ "encretplomb.ch", true },
- { "encrypt.org.uk", true },
- { "encryptallthethings.net", true },
{ "encrypted.google.com", true },
{ "encryptmy.site", true },
- { "encryptmycard.com", true },
{ "encryptmysite.net", true },
{ "encuentraprecios.es", true },
{ "encycarpedia.com", true },
{ "encyclopedia-titanica.org", true },
+ { "ende-x.com", true },
{ "endeal.nl", true },
- { "ender.co.at", true },
{ "enderbycamping.com", true },
+ { "enderle.cloud", true },
{ "enderszone.com", true },
{ "endingthedocumentgame.gov", true },
{ "endlessdiy.ca", true },
@@ -13081,11 +14604,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "endoftennancycleaning.co.uk", true },
{ "endpointsystems.com", true },
{ "enduranceday.be", true },
+ { "endustriyelfirinlar.com", true },
+ { "endviolence.gc.ca", true },
{ "endzeit-architekten.com", false },
+ { "eneamarcantoni.com", true },
+ { "eneko.com", true },
{ "enemiesoflight.de", true },
{ "energie-sante.ch", true },
{ "energiekeurplus.nl", true },
- { "energy-drink-magazin.de", true },
+ { "energija-visiems.lt", true },
+ { "energy-healings.com", true },
{ "energy-in-balance.eu", true },
{ "energy-infra.nl", true },
{ "energy-initiative.com", true },
@@ -13095,12 +14623,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "energydrinkblog.de", true },
{ "energyefficientservices.com", true },
{ "energyelephant.com", true },
+ { "energygenie.com.au", true },
{ "energyled.com.br", true },
+ { "energysolutionstech.com", true },
{ "energystar.gov", true },
+ { "enersaveapp.org", true },
+ { "enersolelectrical.com.au", true },
{ "enet-navigator.de", true },
{ "enfantsdelarue.ch", true },
- { "enfield-kitchens.co.uk", true },
{ "enflow.nl", true },
+ { "enforcement-trends-dev.azurewebsites.net", true },
+ { "enforcement-trends-test.azurewebsites.net", true },
+ { "enforcement-trends.azurewebsites.net", true },
{ "enganches.es", true },
{ "engarde.net", true },
{ "engaugetools.com", true },
@@ -13109,7 +14643,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "engelwerbung.com", true },
{ "engg.ca", true },
{ "engie-laadpalen.nl", true },
- { "engiedev.net", true },
+ { "enginepit.com", true },
{ "enginsight.com", true },
{ "enginx.net", true },
{ "engl-server.de", true },
@@ -13120,7 +14654,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "englishlol.com", true },
{ "englishphonopass.com", true },
{ "englishstudio.com", true },
+ { "englishtofrench.eu", true },
+ { "englishtype.com", true },
+ { "engrish.ml", true },
{ "engvid.com", true },
+ { "engweld.co.uk", true },
{ "enigma.swiss", true },
{ "enijew.com", true },
{ "enitso.de", true },
@@ -13131,8 +14669,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "enjinx.cn", true },
{ "enjinx.io", true },
{ "enjoy-drive.com", true },
- { "enjoy-israel.ru", true },
- { "enjoyphoneblog.it", true },
{ "enlight.no", true },
{ "enlightenedhr.com", true },
{ "enlightenment.org", true },
@@ -13141,8 +14677,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ennea-mediation.fr", true },
{ "enness.co.uk", true },
{ "ennori.jp", true },
- { "enomada.net", true },
- { "enord.fr", true },
{ "enorekcah.com", true },
{ "enot32.ru", true },
{ "enotecastore.it", true },
@@ -13150,6 +14684,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "enpasenerji.com.tr", true },
{ "enquos.com", true },
{ "enrich.email", true },
+ { "enrique.wtf", true },
{ "enriquepiraces.com", true },
{ "enrollapp.com", true },
{ "ensage.io", true },
@@ -13166,14 +14701,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "entactogen.com", true },
{ "entactogens.com", true },
{ "entercenter.ru", true },
- { "enterprisey.enterprises", true },
+ { "enterclaim.com", true },
{ "entersoftsecurity.com", true },
+ { "entertainmentformitzvahs.com", true },
{ "entheogens.com", true },
{ "enthusiaformazione.com", true },
{ "entradaweb.cl", true },
{ "entrainr.com", true },
+ { "entravex.com", true },
{ "entrecieletpierres.com", true },
+ { "entrezdansladanse.fr", true },
{ "entropia.de", false },
+ { "entropy.su", true },
{ "entrusted.io", true },
{ "entryboss.cc", true },
{ "entrypoint.sh", true },
@@ -13185,26 +14724,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "envescent.com", true },
{ "enviatufoto.com", true },
{ "enviaya.com.mx", true },
- { "envide.no", true },
{ "enviro-umweltservice.de", true },
{ "environmental-colleges.com", true },
{ "enviroprobasements.com", true },
{ "envirotech.com.au", true },
{ "envoie.moi", true },
{ "envoyez.moi", true },
+ { "enxadahost.com", true },
{ "eocservices.co.uk", true },
{ "eoitek.com", true },
{ "eola.co", true },
{ "eonhive.com", true },
+ { "eooe.me", true },
{ "eoonglobalresources.jp", true },
{ "eopugetsound.org", false },
{ "eosol.de", true },
{ "eosol.net", true },
{ "eosolutions.co", true },
{ "epa.com.es", true },
- { "epasar.my", false },
+ { "epagos.com.ar", true },
+ { "epaslaugos.lt", true },
{ "epassafe.com", true },
{ "epay.bg", true },
+ { "epcreport.net", true },
{ "epdeveloperchallenge.com", true },
{ "ephesusbreeze.com", true },
{ "epi-lichtblick.de", true },
@@ -13216,12 +14758,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "epicenter.work", true },
{ "epicenter.works", true },
{ "epicentre.works", true },
- { "epichouse.net", false },
+ { "epicfail.be", true },
{ "epicinflatables.co.uk", true },
{ "epickitty.co.uk", true },
+ { "epiclub.com.au", true },
{ "epicpages.com", true },
{ "epicsecure.de", true },
- { "epicsoft.de", false },
+ { "epicserver.ru", true },
{ "epicvistas.com", true },
{ "epicvistas.de", true },
{ "epicwalnutcreek.com", true },
@@ -13236,10 +14779,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "epistas.de", true },
{ "epitesz.co", true },
{ "epiteugma.com", true },
+ { "epitome.cc", true },
+ { "epitome.games", true },
{ "epizentrum.work", true },
{ "epizentrum.works", true },
{ "epmcentroitalia.it", true },
- { "epoch.com", true },
{ "epolitiker.com", true },
{ "epos-distributor.co.uk", true },
{ "epos.az", true },
@@ -13255,28 +14799,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eposlondon.co.uk", true },
{ "epossheffield.co.uk", true },
{ "eposswansea.co.uk", true },
- { "epossystems.co.uk", true },
{ "epostplus.li", true },
{ "eposyork.co.uk", true },
{ "eppelblei.lu", true },
{ "eppelduerferjugend.lu", true },
{ "eppelpress.lu", true },
+ { "eppione.com", true },
{ "epreskripce.cz", true },
{ "epsilon.dk", true },
+ { "epsmil.it", true },
{ "epspolymer.com", true },
{ "epublibre.org", true },
+ { "epvin.com", true },
{ "epyonsuniverse.net", true },
{ "eq-serve.com", true },
+ { "eqibank.com", true },
{ "equalcloud.com", true },
- { "equallove.me", true },
- { "equeim.ru", true },
+ { "equi.ac", true },
+ { "equiac.com", true },
{ "equidam.com", true },
{ "equinecoaching.ca", true },
{ "equinetherapy.ca", true },
{ "equinox.io", true },
{ "equipandoloja.net.br", true },
{ "equipedefrance.tv", true },
- { "equipeferramentas.com.br", true },
{ "equk.co.uk", true },
{ "er-mgmt.com", true },
{ "er.tl", true },
@@ -13293,6 +14839,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ergobyte.eu", true },
{ "ergobyte.gr", true },
{ "ergodark.com", true },
+ { "ergoterapeutas.lt", true },
{ "ergovita.com.br", true },
{ "ergovitanet.com.br", true },
{ "eriador.io", true },
@@ -13301,63 +14848,61 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ericdiao.com", true },
{ "erichogue.ca", true },
{ "erichorstmanshof.nl", true },
- { "ericisaweso.me", true },
{ "ericjohnltd.com", true },
{ "erick.blog", true },
+ { "ericksonvasquez.com", true },
{ "ericleuthardt.com", true },
{ "erico.jp", true },
{ "ericoc.com", true },
{ "erics.site", true },
{ "ericspeidel.de", true },
{ "ericvaughn-flam.com", true },
- { "ericwie.se", true },
{ "ericyl.com", true },
{ "eridanus.uk", true },
{ "erigrid.eu", true },
- { "eriix.org", true },
+ { "erik-stomp.de", true },
+ { "erikapsicologia.com", true },
+ { "erikatanithphotography.co.uk", true },
{ "erikheemskerk.nl", true },
{ "erikhubers.nl", true },
{ "erikkruithof.nl", true },
{ "erikserver2.tk", true },
- { "erikseth.de", true },
+ { "erikw.me", true },
{ "erikwalther.eu", true },
{ "erinaceinae.com", true },
{ "eriner.me", true },
+ { "eringmaguire.com", true },
+ { "erinn.io", true },
{ "erisrenee.com", true },
- { "erixschueler.de", true },
{ "erkaelderbarenaaben.dk", true },
{ "erlebnisarchaeologie-bayern.de", true },
+ { "ernal.net", true },
{ "ernest.ly", true },
{ "ernsteisprung.ch", true },
- { "ero.ink", true },
- { "eromond.com", true },
+ { "eromon.net", true },
{ "eron.info", true },
+ { "eropics.org", true },
{ "erp-band.ru", true },
{ "erp.band", true },
{ "erpax.com", true },
{ "erpband.ru", true },
{ "erpcargo.com", false },
+ { "erpelstolz.at", true },
{ "erperium.com", true },
+ { "erpiv.com", true },
{ "errietta.me", true },
- { "errlytics.com", true },
- { "error418.nl", false },
+ { "error.fail", true },
+ { "error418.nl", true },
{ "ers35.com", true },
{ "ersa-shop.com", true },
{ "ershiwo.com", true },
{ "ersindemirtas.com", true },
{ "ersinerce.com", true },
{ "erstehilfeprodukte.at", true },
+ { "ert.ovh", true },
{ "eru.im", false },
{ "eru.me", true },
{ "eru.moe", true },
- { "erudicia.com", true },
- { "erudicia.de", true },
- { "erudicia.es", true },
- { "erudicia.fr", true },
- { "erudicia.it", true },
- { "erudicia.nl", true },
- { "erudicia.se", true },
- { "erudicia.uk", true },
{ "erudikum.cz", true },
{ "ervaarjapan.nl", true },
{ "erverydown.ml", true },
@@ -13378,28 +14923,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "esc.chat", true },
{ "esc.gov", true },
{ "escael.org", true },
- { "escalesensorielle.com", true },
+ { "escapeforyou.com", true },
{ "escapeplaza.de", true },
+ { "escaperoomdoctor.com", true },
+ { "escaperoomsolutions.com", true },
{ "escapetalk.nl", true },
{ "escargotbistro.com", true },
{ "escavador.com", true },
{ "esclear.de", true },
+ { "escolibri.com", true },
{ "escontact.ch", true },
+ { "escortlistings.ca", true },
+ { "escortlistings.eu", true },
+ { "escortlistings.fr", true },
+ { "escortlistings.mx", true },
+ { "escortlistings.ph", true },
+ { "escortlistings.us", true },
+ { "escortlistingsuk.co.uk", true },
{ "escortmantra.com", true },
{ "escritoriodearte.com", false },
{ "escuelabiblica.com", true },
{ "escyr.top", true },
+ { "esd.cc", true },
{ "esdenera.com", true },
{ "esdiscuss.org", true },
+ { "esdvfootloose.nl", true },
{ "eservices-greece.com", true },
{ "esg-abi2001.de", true },
{ "esgen.org", true },
{ "esgr.in", true },
+ { "esh.ink", true },
+ { "esher.ac.uk", true },
{ "eshigami.com", true },
- { "eshobe.com", true },
{ "eshop-prices.com", true },
{ "eshspotatoes.com", true },
{ "esigmbh.de", true },
+ { "esigtorg.ru", true },
+ { "esim.cz", true },
{ "esite.ch", true },
{ "eskdale.net", true },
{ "eskriett.com", true },
@@ -13415,29 +14975,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "espace-caen.fr", true },
{ "espace-gestion.fr", true },
{ "espace.network", true },
- { "espacecuisine.ca", true },
{ "espacelanguetokyo.fr", true },
{ "espacetemps.ch", true },
{ "espacetheosophie.fr", true },
{ "espacio-cultural.com", true },
- { "espacioantiguo.com", true },
{ "espanol.search.yahoo.com", false },
- { "espanolseguros.com", true },
{ "espanova.com", true },
{ "espci.fr", true },
{ "especificosba.com.ar", true },
{ "espehus.dk", true },
- { "espenandersen.no", true },
{ "espgg.org", true },
- { "esphigmenou.gr", true },
{ "espigol.org", true },
{ "espiritugay.com", true },
+ { "esport-agency.fr", true },
{ "esport-battlefield.com", true },
{ "esports-network.de", true },
{ "espower.com.sg", true },
{ "espritrait.com", true },
{ "esquirou-trieves.fr", true },
- { "esquisse.fr", true },
{ "esrhd.com", true },
{ "esrinfo.com", true },
{ "essayace.co.uk", true },
@@ -13446,18 +15001,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "essaychecker.com", true },
{ "essaydirectory.com", true },
{ "essayforsale.net", true },
+ { "essayforum.com", false },
+ { "essayhave.com", true },
{ "essayjob.com", true },
+ { "essaylib.com", true },
{ "essaynews.com", true },
{ "essaypro.net", true },
+ { "essayscam.org", true },
{ "essaytalk.com", true },
{ "essaywriting.biz", true },
{ "essenalablog.de", true },
+ { "essencespresso.es", true },
{ "essenciasparis.com.br", true },
{ "essex.cc", true },
{ "essite.net", true },
{ "esslm.sk", true },
{ "essoduke.org", true },
{ "essteebee.ch", true },
+ { "est-it.de", true },
{ "establo.pro", true },
{ "estada.ch", true },
{ "estafallando.es", true },
@@ -13474,39 +15035,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "esteticanorte.com.br", true },
{ "estetista.net", true },
{ "estherlew.is", true },
+ { "esthernariyoshi.com", true },
{ "esthesoleil.jp", true },
{ "estilopack-loja.com.br", true },
+ { "estimulantesbrasil.com", true },
+ { "estintori.roma.it", true },
{ "estoic.net", true },
{ "estonia.net", true },
- { "estoniantrade.ee", true },
{ "estonoentraenelexamen.com", true },
{ "estoppels.com", true },
{ "estraks.com", true },
{ "estudiarparaser.com", true },
{ "estudiaryaprenderingles.com", true },
- { "estudiserradal.com", true },
{ "estufitas.com", true },
+ { "esu.moe", true },
+ { "esu.wiki", true },
{ "esu.zone", true },
{ "esurety.net", true },
{ "esuretynew.azurewebsites.net", true },
- { "esw00.com", true },
- { "esw06.com", true },
- { "esw07.com", true },
- { "esw08.com", true },
- { "esw09.com", true },
- { "eswap.cz", true },
+ { "esyume.com", true },
{ "et-inf.de", true },
{ "eta.cz", true },
{ "etaes.eu", true },
- { "etajerka-spb.ru", true },
+ { "etajerka.spb.ru", true },
{ "etaoinwu.win", true },
{ "etasigmaphi.org", true },
+ { "etath.com", true },
{ "etax.com.au", true },
- { "etaxi.tn", true },
{ "etccooperative.org", true },
{ "etch.co", true },
{ "etd-glasfaser.de", true },
{ "etda.or.th", true },
+ { "etduvindemoselle.fr", true },
{ "etech-solution.com", true },
{ "etech-solution.net", true },
{ "etech-solutions.com", true },
@@ -13514,43 +15074,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eteesheet.com", true },
{ "eternal-warriors.de", true },
{ "eternalabyss.int.eu.org", true },
- { "eternalflame.cn", true },
{ "eternalflame.info", true },
+ { "eternalsymbols.com", true },
{ "eternit.roma.it", true },
{ "etfacta.com", true },
{ "eth-faucet.net", true },
{ "eth0.nl", true },
{ "etha.nz", true },
{ "ethack.org", true },
- { "ethaligan.fr", true },
{ "ethan.pm", true },
{ "ethanchin.com", true },
{ "ethanjones.me", true },
{ "ethanlew.is", true },
+ { "ethelbrooks.com", true },
+ { "ethelbrooks.es", true },
{ "ethercalc.com", true },
{ "ethercalc.org", true },
{ "ethergeist.de", true },
{ "etherium.org", true },
{ "etherpad.nl", true },
{ "ethers.news", true },
+ { "ethicalconsumer.org", true },
{ "ethicaldata.co.uk", true },
{ "ethicalpolitics.org", true },
{ "ethicsburg.gov", true },
{ "ethika.com", true },
+ { "ethil-faer.fr", true },
{ "ethiobaba.com", true },
{ "ethiopian.dating", true },
{ "ethiopiannews247.com", true },
{ "ethitter.com", true },
{ "etienne.cc", true },
- { "etikus-hacker.hu", true },
+ { "etiennes.work", true },
{ "etiquetaunica.com.br", true },
+ { "etni-cidade.net", true },
+ { "etnis.id", true },
+ { "etnoria.com", true },
{ "etoile-usedcars.com", true },
{ "etre-soi.ch", true },
{ "etre-vivant.fr", true },
{ "etrecosmeticderm.com", true },
{ "etresmant.es", true },
{ "etrker.com", true },
- { "etrolleybizstore.com", true },
{ "etskinner.com", true },
{ "etskinner.net", true },
{ "etssquare.com", true },
@@ -13559,10 +15124,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "etudesbibliques.org", true },
{ "eturist.si", true },
{ "etv.cx", true },
+ { "etwalldentalpractice.co.uk", true },
{ "etyd.org", true },
{ "eu-darlehen-finanzierung.de", true },
{ "eu-datenbank.de", true },
- { "eu-gamers.com", true },
{ "eu-stellenangebot.de", true },
{ "euaggelion.blog.br", true },
{ "euanbarrett.com", true },
@@ -13589,13 +15154,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eujuicers.sk", true },
{ "eulenschmiede.de", true },
{ "eupay.de", true },
+ { "euporos.ch", true },
{ "eureka.archi", true },
{ "eurekaarchi.com", true },
{ "eurekaarchitecture.com", true },
- { "eurheilu.com", true },
+ { "eurekz.com", true },
+ { "euro-construction.co.uk", true },
{ "euroalter.com", true },
{ "eurocars2000.es", true },
{ "eurocenterobuda.hu", true },
+ { "eurocertificazione.it", true },
+ { "eurocomcompany.cz", true },
{ "euroconthr.ro", true },
{ "eurodentaire.com", true },
{ "euroflora.com", true },
@@ -13605,6 +15174,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "europalettenkaufen.de", true },
{ "europapier.at", false },
{ "europapier.net", true },
+ { "europareise2010.de", true },
{ "europarts-sd.com", true },
{ "europastudien.de", true },
{ "european-agency.org", true },
@@ -13617,14 +15187,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "europop.com", true },
{ "eurora.de", true },
{ "eurorecambios24.com", true },
+ { "euroroad17.dk", true },
{ "euroscot.de", true },
{ "euroshop.or.at", true },
{ "euroskano.nl", true },
+ { "eurotime.ua", true },
{ "eurotramp.com", true },
{ "eurotravelstar.eu", true },
{ "eurousa.us", true },
{ "eurovision.ie", true },
- { "euteamo.cn", true },
{ "euterpiaradio.ch", true },
{ "eutotal.com", true },
{ "euwid-energie.de", true },
@@ -13632,10 +15203,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ev-zertifikate.de", true },
{ "eva-select.com", true },
{ "eva.cz", true },
- { "evaartinger.de", true },
+ { "evafojtova.cz", true },
{ "evailoil.ee", true },
{ "evailoil.eu", true },
{ "evalesc.com", true },
+ { "evaluate.jp", true },
{ "evamachkova.cz", true },
{ "evamathil.de", true },
{ "evamira.com", true },
@@ -13645,28 +15217,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evansdesignstudio.com", true },
{ "evantageglobal.com", true },
{ "evanwang0.com", true },
- { "evapp.org", true },
{ "evasioncreole.com", true },
{ "evasovova.cz", true },
{ "evavolfova.cz", true },
+ { "evdenevenakliyatankara.name.tr", true },
{ "eve.ac", true },
{ "eve0s.com", true },
- { "eveadmin.azurewebsites.net", true },
+ { "eveadmin.azurewebsites.net", false },
{ "evelienzorgt.nl", true },
{ "evelyndayman.com", true },
- { "evemarketer.com", true },
{ "evemodx.com", true },
{ "evenementenhoekvanholland.nl", true },
- { "evenstargames.com", true },
{ "event-blick.de", true },
{ "event-fullyyours.com", true },
{ "event4fun.no", true },
{ "eventaro.com", true },
+ { "eventerlebnis.ch", true },
{ "eventide.space", true },
{ "eventive.org", true },
{ "eventnexus.co.uk", true },
+ { "eventosbgp.com", true },
{ "eventosenmendoza.com.ar", true },
{ "events-hire.co.uk", true },
+ { "eventservicestockholm.se", true },
+ { "eventsframe.com", true },
{ "eventtech.com", false },
{ "evenwallet.com", true },
{ "eveonline.com", true },
@@ -13679,21 +15253,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "everhome.de", true },
{ "everify.gov", true },
{ "everitoken.io", true },
+ { "everlastingoak.de", true },
{ "everling.lu", true },
{ "everlong.org", true },
{ "evermarkstudios.com", true },
- { "evernaut.com", true },
{ "everpcpc.com", true },
{ "evertonarentwe.com", true },
{ "everwaking.com", false },
+ { "every-day-life.com", true },
{ "everybodyhertz.co.uk", true },
{ "everyday.eu.org", true },
- { "everydaygary.com", true },
+ { "everydayhealthandbeauty.com", true },
{ "everydaywot.com", true },
{ "everydaywp.com", true },
- { "everyex.com", true },
{ "everyfad.com", true },
- { "everygayporn.com", false },
{ "everything-everywhere.com", true },
{ "everythingaccess.com", true },
{ "everythingstech.com", false },
@@ -13713,6 +15286,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evilized.de", true },
{ "evilmartians.com", true },
{ "evion.nl", true },
+ { "evlann.com", false },
{ "evlear.com", true },
{ "evoco.vc", true },
{ "evodation.com", true },
@@ -13722,13 +15296,14 @@ 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 },
{ "evony.eu", true },
{ "evosyn.com", true },
+ { "evote-ch.ch", true },
{ "evotec.pl", true },
{ "evotec.xyz", true },
+ { "evoting-test.ch", true },
{ "evoting.ch", true },
{ "evrial.com", true },
{ "evrica.me", true },
@@ -13738,36 +15313,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evtasima.name.tr", true },
{ "evtripping.com", true },
{ "evtscan.io", true },
+ { "evyn.eu", true },
+ { "ewa-hayward.co.uk", true },
{ "ewaipiotr.pl", true },
{ "ewanm89.co.uk", true },
{ "ewanm89.com", true },
{ "ewanm89.uk", true },
- { "ewe2.ninja", true },
{ "ewhitehat.com", true },
{ "ewie.name", true },
- { "ewok.io", true },
+ { "ewinstore.com", true },
{ "ewout.io", true },
{ "ewsfeed.com", true },
{ "ewtl.es", true },
{ "ewus.de", true },
{ "ewycena.pl", true },
{ "ex-deli.jp", true },
+ { "exablue.de", true },
{ "exactlyinfinite.com", true },
{ "exactphilosophy.net", true },
{ "exadime.net", true },
{ "exagoni.com.au", true },
{ "exagoni.com.my", true },
+ { "exaktus.pt", true },
{ "examedge.com", true },
- { "example.sc", true },
{ "example.wf", true },
+ { "example4d.com", true },
+ { "exampleessays.com", true },
{ "examsmate.in", true },
{ "exaplac.com", true },
{ "exarpy.com", true },
{ "exatmiseis.net", false },
- { "excaliburtitle.com", true },
- { "exceed.global", true },
+ { "excaliburtitle.com", false },
{ "exceedagency.com", true },
- { "excel-utbildning.nu", true },
+ { "excel-mechanical.com", true },
{ "excelhot.com", true },
{ "excelkurs.one", true },
{ "excella.me", true },
@@ -13778,13 +15356,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "excess-baggage.com", true },
{ "excessamerica.com", true },
{ "excesssecurity.com", true },
+ { "exchangers.top", true },
{ "exchaser.com", true },
+ { "exclusivebeautystudio.com.au", true },
{ "exclusivebouncycastles.co.uk", true },
{ "exclusivecarcare.co.uk", true },
+ { "excursionescaribe.com", true },
{ "exdamo.de", false },
{ "exe-boss.tech", true },
{ "execution.biz.tr", true },
- { "exehack.net", true },
+ { "executiveresolutions.co.uk", true },
{ "exeintel.com", true },
{ "exekutori.com", true },
{ "exemples-de-stands.com", true },
@@ -13792,22 +15373,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "exerforge.net", true },
{ "exeria.de", true },
{ "exexcarriers.com", true },
+ { "exgaywatch.com", true },
{ "exgen.io", true },
- { "exhalespa.com", true },
+ { "exhalespa.com", false },
{ "exhibityour.com", true },
{ "exiahost.com", true },
{ "exit9wineandliquor.com", true },
{ "exitooutdoor.com", true },
{ "exmart.ng", true },
{ "exmoe.com", true },
- { "exnovin.co", true },
{ "exocen.com", true },
{ "exon.io", true },
{ "exordiumconcepts.com", true },
{ "exoscale.ch", true },
{ "exoscale.com", true },
{ "exoten-spezialist.de", true },
- { "exousiakaidunamis.pw", true },
+ { "exoticads.com", true },
+ { "exozwiki.com", true },
{ "exp.de", true },
{ "expancio.com", false },
{ "expanddigital.media", true },
@@ -13817,20 +15399,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "expeditiegrensland.nl", true },
{ "experienceoutdoors.org.uk", true },
{ "experienceoz.com.au", true },
+ { "experimentator.cz", true },
{ "experise.fr", true },
{ "expert-korovin.ru", true },
{ "expert.cz", true },
{ "experteasy.com.au", true },
{ "expertofficefitouts.com.au", true },
+ { "expertpanel.gc.ca", true },
+ { "expertplumbingandsolarservicesbathurst.com.au", true },
{ "expertsverts.com", true },
{ "expertvagabond.com", true },
{ "expertviolinteacher.com", true },
{ "expii.com", true },
{ "expiscor.solutions", true },
+ { "explicate.org", true },
{ "explodie.org", true },
{ "explodingcamera.com", true },
{ "exploit-db.com", true },
- { "exploit.cz", true },
+ { "exploit.cz", false },
{ "exploit.party", true },
{ "exploit.ph", true },
{ "exploited.cz", true },
@@ -13838,13 +15424,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "exploodo.rocks", true },
{ "explorebigideas.com", true },
{ "exploremonero.com", true },
+ { "exploretsp.gov", true },
{ "exploringenderby.com", true },
{ "expmind.co.in", true },
{ "expo-america.ru", true },
{ "expo-asia.ru", true },
{ "expo-europe.ru", true },
{ "expo-larionov.org", true },
- { "expoort.co.uk", true },
+ { "exponentialnews.net", true },
{ "expoort.com", true },
{ "expoort.es", true },
{ "expoort.fr", true },
@@ -13861,16 +15448,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "expresstinte.de", true },
{ "expressvpn.com", true },
{ "expresswins.co.uk", true },
+ { "expromo.eu", true },
{ "expxkcd.com", true },
{ "exs.lv", true },
{ "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 },
+ { "extensionciglia.roma.it", true },
{ "extensionschallenge.com", true },
{ "extensiontree.com", true },
{ "exteriorlightingagoura.com", true },
@@ -13893,25 +15483,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "extradiely.sk", true },
{ "extradivers-worldwide.com", true },
{ "extranetpuc.com.br", true },
- { "extrapagetab.com", true },
+ { "extratorrent.cool", true },
{ "extreemhost.nl", true },
{ "extreme-gaming.de", true },
{ "extreme-gaming.us", true },
{ "extreme-players.com", true },
{ "extreme-players.de", true },
{ "extreme.co.th", true },
- { "exultcosmetics.co.uk", true },
- { "exxo.tk", true },
+ { "exvs.org", true },
{ "exyplis.com", true },
- { "eyasc.nl", true },
{ "eydesignguidelines.com", true },
{ "eye-encounters.com", true },
{ "eyeandfire.com", true },
+ { "eyebrowsmicroblading.co.uk", true },
{ "eyecandy.gr", true },
{ "eyeglasses.com", false },
- { "eyejobs.com.au", true },
{ "eyelashconcept.com", true },
- { "eyemagic.net", true },
{ "eyeonid.com", true },
{ "eyep.me", true },
{ "eyes-berg.ch", true },
@@ -13921,8 +15508,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eyona.com", true },
{ "eyps.net", true },
{ "eyrelles-tissus.com", true },
- { "eyyit.com", false },
- { "eyyubyilmaz.com", true },
+ { "eythorsson.com", true },
{ "ez3d.eu", true },
{ "ezakazivanje.rs", true },
{ "ezdog.press", true },
@@ -13930,11 +15516,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ezesec.com", true },
{ "ezgif.com", true },
{ "ezhik-din.ru", true },
- { "ezpzdelivery.com", true },
{ "eztvtorrent.com", true },
{ "ezwritingservice.com", true },
- { "ezzhole.net", true },
- { "f-be.com", true },
{ "f-droid.org", true },
{ "f-hd.net", true },
{ "f-thie.de", true },
@@ -13946,21 +15529,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "f1fever.co.uk", true },
{ "f1fever.net", true },
{ "f1minute.com", true },
+ { "f1nal-lap.be", true },
{ "f2h.io", true },
{ "f3nws.com", true },
{ "f43.me", true },
- { "f5.hk", true },
+ { "f5197.co", true },
{ "f5nu.com", true },
- { "f5w.de", true },
+ { "f6729.co", true },
+ { "f6729.com", true },
+ { "f6957.co", true },
{ "f88-line.com", true },
{ "f88-line.net", true },
+ { "f88288.com", true },
+ { "f88da.com", true },
+ { "f88fine.com", true },
+ { "f88good.com", true },
{ "f88line.com", true },
{ "f88line.net", true },
+ { "f88ll.com", true },
{ "f88yule1.com", true },
+ { "f88yule111.com", true },
+ { "f88yule122.com", true },
{ "f88yule5.com", true },
{ "f88yule6.com", true },
{ "f88yule7.com", true },
{ "f88yule8.com", true },
+ { "f8s.co", true },
+ { "f9297.co", true },
+ { "f9397.com", true },
+ { "f9721.com", true },
+ { "f9728.co", true },
{ "fa-works.com", true },
{ "fabbro-roma.org", true },
{ "fabbro.roma.it", true },
@@ -13970,40 +15568,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fabian-klose.de", true },
{ "fabian-klose.net", true },
{ "fabianackle.ch", true },
- { "fabianbeiner.com", false },
+ { "fabianbeiner.com", true },
{ "fabianbeiner.de", false },
+ { "fabianegli.ch", true },
{ "fabianfranke.de", true },
{ "fabiankoeppen.com", true },
+ { "fabien-hebuterne.fr", true },
{ "fabienne-roux.org", true },
{ "fabiobier.com", true },
{ "fabjansisters.eu", true },
{ "fabled.com", true },
{ "fableforge.nl", true },
- { "fabmart.com", true },
{ "fabrica360.com", true },
{ "fabriceleroux.com", true },
{ "fabriziocavaliere.it", true },
{ "fabriziorocca.it", true },
+ { "fabrykowski.com", true },
{ "fabrysociety.org", true },
{ "fabse.net", true },
+ { "fabservicos.com.br", true },
{ "facai666.cc", true },
{ "facai888.cc", true },
{ "facanabota.com", true },
{ "facanabota.com.br", true },
{ "facarospauls.com", true },
- { "faccess.it", true },
+ { "facchinaggio.milano.it", true },
{ "facciadastile.it", true },
{ "face-fashion.de", true },
{ "face-mania.com", true },
{ "facealacrise.fr", true },
+ { "facebattle.com", true },
{ "facebook-atom.appspot.com", true },
- { "facebook.com", true },
+ { "facebook.com", false },
{ "facebydrh.com", true },
{ "facebylouise.co.uk", true },
{ "facekungfu.com", true },
{ "facepainting.gr", true },
{ "facerepo.com", true },
{ "faceresources.org", true },
+ { "facesdr.com", true },
+ { "facfox.com", true },
{ "fach-journalist.de", true },
{ "fachmann-umzuege.de", true },
{ "fachschaftslisten.at", true },
@@ -14014,7 +15618,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "facilities.fr", true },
{ "facilitiessurvey.org", true },
{ "facility-service-muenchen.de", true },
- { "facingbipolar.com", true },
{ "fackovcova.cz", true },
{ "fackovcova.eu", true },
{ "fackovcova.sk", true },
@@ -14022,8 +15625,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fackovec.eu", true },
{ "fackovec.sk", true },
{ "factbytefactbox.com", true },
- { "factcool.com", true },
{ "factor.cc", false },
+ { "factorio.tools", true },
+ { "factoriotools.com", true },
+ { "factorit.fr", true },
+ { "factory-f.net", true },
{ "factuur.pro", true },
{ "factuursturen.be", true },
{ "factuursturen.nl", true },
@@ -14032,14 +15638,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "facua.org", true },
{ "facucosta.com.ar", true },
{ "faderweb.de", true },
+ { "fadilus.com", false },
{ "faehler.de", true },
{ "faelix.net", true },
- { "faerb.it", true },
- { "faerie-art.com", true },
{ "faeservice.eu", true },
- { "fafarishoptrading.com", true },
+ { "fafa106.com", true },
+ { "faggut.gg", true },
+ { "fahmed.de", true },
{ "fahnamporn.com", true },
- { "fahnen-fanwelt.de", true },
{ "fahrenwal.de", true },
{ "fahrenwalde.de", true },
{ "fahrschule-laux.de", true },
@@ -14051,13 +15657,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fail4free.de", true },
{ "failover.de", true },
{ "failover.eu", true },
- { "failoverplan.it", true },
{ "fairbill.com", true },
{ "fairedeseconomies.info", true },
{ "fairgolfteams.com", true },
- { "fairleighcrafty.com", true },
{ "fairmarketing.com", true },
{ "fairplay.im", true },
+ { "fairr.de", true },
+ { "fairr.online", true },
{ "fairssl.dk", true },
{ "fairssl.se", true },
{ "fairviewmotel-simcoe.com", true },
@@ -14066,10 +15672,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "faithgrowth.com", true },
{ "faithindemocracy.eu", false },
{ "faithleaks.org", true },
- { "faithmissionaries.com", true },
{ "faithwatch.org", true },
{ "faixaazul.com", true },
- { "fakeapple.nl", true },
{ "fakeduckpond.com", true },
{ "fakeemergency.com", true },
{ "fakerli.com", true },
@@ -14080,22 +15684,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "falaeapp.org", true },
{ "falaowang.com", true },
{ "falbros.com", true },
- { "falce.in", true },
{ "falcema.com", true },
- { "falcona.io", true },
{ "falconfrag.com", true },
{ "falconvintners.com", true },
{ "falcoz.co", true },
{ "faldoria.de", true },
{ "falegname-roma.it", true },
+ { "falegname.roma.it", true },
+ { "falegnameria.milano.it", true },
{ "falkhusemann.de", true },
- { "falldennismarketing.com", true },
{ "fallenangeldrinks.co.uk", true },
{ "fallenangeldrinks.com", true },
{ "fallenangelspirits.co.uk", true },
{ "fallenangelspirits.com", true },
+ { "fallenmoons.nl", true },
{ "fallenmystic.com", true },
{ "fallenspirits.co.uk", true },
+ { "fallin.space", true },
{ "falling.se", true },
{ "fallofthecitadel.com", true },
{ "falsum.net", true },
@@ -14111,7 +15716,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "familie-kruithof.nl", true },
{ "familie-kupschke.de", true },
{ "familie-leu.ch", true },
- { "familie-mischak.de", true },
{ "familie-monka.de", true },
{ "familie-poeppinghaus.de", true },
{ "familie-remke.de", true },
@@ -14121,12 +15725,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "familiereimann.com", true },
{ "familjenfrodlund.se", true },
{ "familjenm.se", true },
+ { "familleseux.net", true },
{ "familylawhotline.org", true },
{ "familyparties.co.uk", true },
{ "familyreal.ru", true },
{ "familytreehq.com", true },
{ "familyworld.gr", true },
- { "famion.eu", true },
+ { "famion.eu", false },
{ "famososnaweb.com", true },
{ "famousbirthdays.com", true },
{ "famoushostels.com", true },
@@ -14145,22 +15750,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fanfareunion.ch", true },
{ "fangs.ink", true },
{ "fanhouwan.com", true },
+ { "fanjingbo.com", true },
+ { "fanjingbo.me", true },
{ "fanjoe.be", true },
+ { "fansale.de", true },
{ "fansided.com", true },
{ "fantasiapainter.com", true },
{ "fantasiatravel.hr", true },
+ { "fantasmesexuel.info", true },
{ "fantasticcleaners.com.au", true },
{ "fantastichandymanmelbourne.com.au", true },
{ "fantastici.de", true },
{ "fantasticservices.com", true },
{ "fantasticservicesgroup.com.au", true },
- { "fantasy-judo.com", true },
{ "fantasycastles.co.uk", true },
+ { "fantasycdn.com", true },
+ { "fantasydrop.com", true },
{ "fantasyescortsbirmingham.co.uk", true },
{ "fantasymina.de", true },
{ "fantasypartyhire.com.au", true },
{ "fantasyspectrum.com", true },
- { "fantasysportsnews.org", true },
+ { "fantgames.com", true },
{ "fantopia.club", true },
{ "fantraxhq.com", true },
{ "fanyina.cn", true },
@@ -14189,25 +15799,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "farmacia-discreto.com", true },
{ "farmaciacorvi.it", true },
{ "farmaciadejaime.es", true },
- { "farmacialaboratorio.it", true },
{ "farmer.dating", true },
{ "farmers.gov", false },
{ "farmkazuto.com", true },
{ "faroebusinessreport.com", true },
{ "faroes.net", true },
{ "faroes.org", true },
- { "farrel-f.cf", true },
- { "farrel-f.tk", true },
- { "farrelf.blog", true },
{ "farsil.eu", true },
{ "fart.wtf", true },
{ "farthing.xyz", true },
{ "farwat.ru", true },
+ { "farzli.com", true },
{ "faschingmd.com", true },
- { "fascia.fit", true },
+ { "fashion-hunters.pl", true },
{ "fashion-stoff.de", true },
+ { "fashion.bg", true },
{ "fashion24.de", true },
+ { "fashiondays.bg", true },
+ { "fashiondays.hu", true },
+ { "fashiondays.ro", true },
+ { "fashioneditor.gr", true },
{ "fashionhijabers.com", true },
+ { "fashiontrendsetter.com", true },
{ "fashionunited.be", true },
{ "fashionunited.cl", true },
{ "fashionunited.com", true },
@@ -14237,15 +15850,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fastcash.com.br", true },
{ "fastcomcorp.com", true },
{ "fastcommerce.org", true },
+ { "fastconv.com", true },
{ "fastest-hosting.co.uk", true },
{ "fastforwardsociety.nl", true },
{ "fastforwardthemes.com", true },
{ "fastinviter.com", true },
- { "fastlike.co", true },
{ "fastmail.com", false },
{ "fastonline.ro", true },
{ "fastpresence.com", true },
- { "fastrevision.com", true },
+ { "fastserv.pl", true },
{ "fastvistorias.com.br", true },
{ "fastworx.com", true },
{ "faszienrollen-info.de", false },
@@ -14254,24 +15867,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fatecdevday.com.br", true },
{ "fatedata.com", true },
{ "fateitalia.it", true },
+ { "fatfueled.com", true },
{ "fatherhood.gov", true },
{ "fathers4equalrights.org", true },
{ "fatidique.com", true },
{ "fatimamoldes.com.br", true },
{ "fatmixx.com", true },
{ "fatowltees.com", true },
+ { "fattailcall.com", true },
+ { "fattorino.it", true },
+ { "fatturegeko.eu", true },
{ "faucetbox.com", false },
- { "faui2k17.de", false },
{ "faultlines.org", true },
{ "faulty.equipment", true },
- { "fauvettes.be", true },
+ { "favalart.com", true },
{ "favirei.com", true },
+ { "favorai.com", true },
{ "fawong.com", true },
{ "faxvorlagen-druckvorlagen.de", true },
+ { "fazzfinancial.com", true },
{ "fb-feed.net", true },
{ "fb.me", true },
{ "fbcdn.net", true },
- { "fbcopy.com", true },
+ { "fbhackpass.com", true },
{ "fbi.gov", true },
{ "fbigame.com", true },
{ "fbiic.gov", true },
@@ -14285,8 +15903,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fbwgynplus.com.au", true },
{ "fc.media", true },
{ "fca-tools.com", true },
+ { "fcbarcelona.cz", true },
{ "fcburk.de", true },
- { "fccarbon.com", true },
{ "fcdn.nl", true },
{ "fcforum.net", true },
{ "fcingolstadt.de", true },
@@ -14297,34 +15915,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fdalawboston.com", true },
{ "fdaregs.com", true },
{ "fdevs.ch", true },
+ { "fdfz.edu.cn", true },
{ "fdicig.gov", true },
{ "fdicoig.gov", true },
+ { "fdis.net.cn", true },
{ "fdlibre.eu", true },
{ "fdms.gov", true },
- { "fdn.one", true },
- { "fdos.me", true },
{ "fdp-brig-glis.ch", true },
+ { "fdpbrig.ch", true },
{ "fdresearch.ca", true },
- { "fdsys.gov", false },
+ { "fdworlds.com", true },
+ { "fe-data.nl", true },
{ "feac.us", true },
{ "feaden.me", true },
{ "feandc.com", true },
{ "fearby.com", true },
- { "fearghus.org", true },
- { "fearsomegaming.com", true },
{ "feastr-dev.de", true },
{ "feastr.de", true },
{ "feastr.io", true },
+ { "feat.agency", true },
{ "featherweightlabs.com", true },
- { "featuredmen.com", false },
+ { "featuredmen.com", true },
{ "feb.gov", true },
{ "fedcenter.gov", true },
{ "federaljobs.gov", true },
{ "federalreserve.gov", true },
{ "federalreserveconsumerhelp.gov", true },
{ "federatedbank.com", true },
- { "federicomigliavacca.it", true },
- { "federicoparty.it", true },
{ "fedjobs.gov", true },
{ "fedorahosted.org", true },
{ "fedoramagazine.org", true },
@@ -14332,7 +15949,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fedoraproject.org", true },
{ "fedpartnership.gov", true },
{ "fedramp.gov", false },
- { "fedrtc.org", true },
{ "fedshirevets.gov", true },
{ "fedux.com.ar", true },
{ "fedvan.com", true },
@@ -14359,6 +15975,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fegame.mobi", true },
{ "fegame.net", true },
{ "fegame.nl", true },
+ { "fegc-wgec.gc.ca", true },
{ "fegli.gov", true },
{ "fehngarten.de", true },
{ "feigling.net", false },
@@ -14369,11 +15986,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "feisim.org", true },
{ "feistyduck.com", true },
{ "feixiang.eu.org", true },
+ { "feiya.ng", true },
{ "fejes.house", true },
{ "feld.design", true },
{ "feld.saarland", true },
+ { "feldbogenclub-hamburg.de", true },
{ "feldhousen.com", true },
- { "feldmann-stachelscheid.de", true },
{ "felett.es", true },
{ "feli.games", true },
{ "felicifia.org", true },
@@ -14384,33 +16002,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "felixbarta.de", true },
{ "felixcrux.com", true },
{ "felixgenicio.com", true },
+ { "felixkaaman.com", true },
{ "felixkauer.de", true },
{ "felixqu.com", true },
{ "felixsanz.com", true },
{ "felixseele.de", true },
{ "felsing.net", true },
{ "felsmalerei.net", true },
+ { "femaex.com.br", true },
{ "femanca.com", true },
{ "femastudios.com", true },
- { "femiluna.com", true },
{ "feminina.pt", true },
+ { "feministspectrum.org", true },
+ { "feministwiki.org", true },
+ { "femmes-women.gc.ca", true },
+ { "femmes.gc.ca", true },
+ { "femmesaupluriel.com", true },
{ "femtomind.com", true },
- { "fence-stlouis.com", true },
{ "feng-hhcm.com", true },
{ "feng.si", true },
{ "fengyi.tel", true },
+ { "fenhl.net", true },
{ "fenichelar.com", true },
{ "fenster-bank.at", true },
{ "fenster-bank.de", true },
{ "feragon.net", true },
{ "ferdies.co.za", true },
{ "fergtm.com", true },
- { "fergusoncastle.com", true },
{ "ferien-netzwerk.de", true },
{ "ferienchalet-wallis.ch", true },
{ "ferienhaeuser-krummin.de", true },
{ "ferienhaus-polchow-ruegen.de", false },
{ "ferienhausprovence.ch", true },
+ { "ferienstpeter.de", true },
{ "ferienwohnung-hafeninsel-stralsund.de", true },
{ "ferienwohnung-wiesengrund.eu", true },
{ "feriespotter.dk", true },
@@ -14423,9 +16047,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fernandomiguel.net", true },
{ "feross.net", true },
{ "feross.org", true },
+ { "ferrada.org", true },
{ "ferrariadvisor.it", true },
{ "ferret.zone", true },
{ "ferreteriaxerez.com", true },
+ { "ferriswheelofficial.us", true },
{ "ferrolatino.ch", true },
{ "ferrone.ru", true },
{ "ferrousmoon.com", true },
@@ -14433,11 +16059,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ferticare.pt", true },
{ "fertila.de", true },
{ "festaprylar.se", true },
- { "festicle.com", true },
{ "festival-tipps.com", true },
{ "festivaljapon.com", true },
{ "fetch.co.uk", true },
{ "fetchease.com", true },
+ { "fetlife.com", true },
{ "fettlaus.de", true },
{ "feudalisten.de", true },
{ "feuerhuhn.de", true },
@@ -14448,6 +16074,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "feuerwehr-heiligenberg.de", true },
{ "feuerwehr-illmensee.de", true },
{ "feuerwehr-mehring.de", true },
+ { "feuerwehr-oberkotzau.de", true },
{ "feuerwehr-offenbach-bieber.de", false },
{ "feuerwehr-vechta.de", true },
{ "feuerwerksmanufaktur.de", true },
@@ -14458,15 +16085,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "feybiblia.com", true },
{ "feyermedia.de", true },
{ "ff-bad-hoehenstadt.de", true },
- { "ff-getzersdorf.at", true },
{ "ff-obersunzing-niedersunzing.de", true },
{ "ff14-mstdn.xyz", false },
- { "ffb.gov", false },
+ { "ff44.net", true },
+ { "ff5197.co", true },
+ { "ff6729.com", true },
+ { "ff6957.co", true },
+ { "ff9297.co", true },
+ { "ff9397.com", true },
+ { "ff9721.com", true },
+ { "ff9728.co", true },
{ "ffbsee.net", true },
- { "ffh.me", true },
{ "ffiec.gov", true },
{ "ffis.me", true },
{ "ffkoenigsberg.de", true },
+ { "fflone.com", true },
{ "ffmradio.de", true },
{ "ffprofile.com", true },
{ "ffrev.de", true },
@@ -14474,14 +16107,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ffta.eu", true },
{ "ffw-zeven.de", true },
{ "ffzeven.de", true },
- { "fgdc.gov", true },
+ { "fhar.be", true },
{ "fhba.com.au", true },
{ "fhcdn.xyz", true },
{ "fhconseil.fr", true },
{ "fhdhelp.de", false },
{ "fhdhilft.de", false },
{ "fhfaoig.gov", true },
- { "fhmkh.cn", true },
{ "fi.google.com", true },
{ "fi.search.yahoo.com", false },
{ "fiam.me", true },
@@ -14489,7 +16121,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fiasgo.com", true },
{ "fiasgo.dk", true },
{ "fiasgo.i.ng", true },
- { "fibabanka.com.tr", true },
{ "fibo-forex.org", true },
{ "fibra.click", true },
{ "fibrasynormasdecolombia.com", false },
@@ -14500,7 +16131,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fickweiler.nl", true },
{ "ficlab.com", true },
{ "ficus.io", true },
- { "fid-elite.ch", true },
{ "fidanza.eu", true },
{ "fidelapp.com", true },
{ "fidelis-it.ch", true },
@@ -14511,10 +16141,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fierlafijn.net", true },
{ "fierscleaning.nl", true },
{ "fiery.me", true },
+ { "fiestagenial.com", true },
{ "fifautstore.com", true },
{ "fifei.de", true },
{ "fifichachnil.paris", true },
- { "fifieldtech.com", true },
{ "fifr.nl", true },
{ "fiftynorth.eu", true },
{ "fiftyonetielt.be", true },
@@ -14534,20 +16164,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fikst.com", true },
{ "fil-tec-rixen.com", true },
{ "fil.fi", true },
+ { "filamentia.nl", true },
{ "filanthropystar.org", true },
{ "filaretihairlove.gr", true },
{ "file-cloud.eu", true },
{ "file-pdf.it", true },
+ { "filebox.one", true },
+ { "filecloud.fun", true },
{ "filecopa.com", true },
+ { "filedropbox.nl", true },
{ "filehash.de", true },
+ { "files.com", true },
{ "files.from-me.org", true },
{ "fileservicios.com.ar", true },
{ "filestar.io", true },
{ "filestartest.io", true },
{ "filetransfer.one", true },
{ "filezilla-project.org", true },
- { "filezilla.cn", true },
- { "filhin.es", true },
{ "filhodohomem.com", true },
{ "fili.com", true },
{ "filidorwiese.nl", true },
@@ -14556,19 +16189,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "filip-prochazka.com", false },
{ "filippo.io", true },
{ "filipsebesta.com", true },
- { "filleritemsindia.com", true },
{ "fillo.sk", true },
{ "film-colleges.com", true },
{ "film-op-tv.nl", true },
{ "film-storyboards.fr", true },
{ "film-tutorial.com", true },
+ { "filmatiporno.xxx", true },
{ "filme-onlines.com", true },
{ "filmers.net", true },
- { "filmesonline.online", true },
{ "filmitis.com", true },
- { "filmovizija.mk", true },
{ "filmreviewonline.com", true },
- { "filmserver.de", true },
{ "filmsite-studio.com", true },
{ "filmsphoto.com", true },
{ "filoo.de", true },
@@ -14579,26 +16209,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "finagosolo.com", true },
{ "final-expense-quotes.com", true },
{ "finalrewind.org", true },
+ { "finalworkdriesstef.tk", true },
{ "finalx.nl", true },
{ "finance-colleges.com", true },
{ "financejobs.ch", true },
{ "financepark.ch", true },
+ { "financialfreedomaus.com", true },
{ "financniexperti.sk", true },
{ "finansa.no", true },
{ "finanstilsynet.dk", true },
+ { "finanziero.de", true },
{ "finch.am", true },
{ "finchi.de", true },
- { "finchnest.co.uk", true },
{ "find-job-in.com", true },
{ "find-mba.com", true },
+ { "findaffordablehousing.ca", true },
{ "findapinball.com", true },
- { "findcarspecs.com", true },
{ "findelahistoria.com", true },
- { "findhoustonseniorcare.com", true },
{ "findingkorea.com", true },
{ "findingtheuniverse.com", true },
{ "finditez.com", true },
- { "findmynudes.com", true },
{ "findoon.de", true },
{ "findrejsepartner.dk", true },
{ "findstorenearme.ca", true },
@@ -14607,7 +16237,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "findthatnude.com", true },
{ "findyourtrainer.com", true },
{ "findyourvoice.ca", true },
- { "finecocoin.io", false },
{ "finecraft.cc", true },
{ "finefriends.nl", true },
{ "finefriends.social", true },
@@ -14616,10 +16245,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "finenet.com.tw", true },
{ "finesoon.net", true },
{ "finevegashomes.com", true },
- { "finfev.de", true },
+ { "finewineonline.com", true },
{ "finflix.net", true },
{ "finform.ch", true },
{ "fini-de-jouer.ch", true },
+ { "finilaviolence.gc.ca", true },
{ "finisron.in", true },
{ "finkelstein.fr", true },
{ "finkmartin.com", true },
@@ -14647,27 +16277,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "firebounty.com", true },
{ "fireboxfood.com", true },
{ "firebugmusic.com", true },
- { "firechip.cc", true },
{ "firecore.com", true },
{ "firecry.org", true },
{ "firefart.at", true },
{ "firefense.com", true },
{ "firefighters.dating", true },
- { "firefly-iii.org", true },
{ "firegoby.jp", true },
{ "firegore.com", true },
{ "fireleadership.gov", true },
+ { "firemist.com", true },
{ "firemudfm.com", true },
{ "firenza.org", true },
- { "fireplex.co.uk", true },
+ { "fireorbit.de", true },
{ "fireportal.cz", true },
{ "fireportal.sk", true },
{ "fireshellsecurity.team", true },
{ "firesofheaven.org", true },
+ { "firestuff.org", true },
{ "firesuite.net", true },
{ "firetotheprisons.org", true },
{ "firevap.org", true },
- { "firewallconsultants.com", true },
{ "fireworksshowvr.com", true },
{ "firexfly.com", true },
{ "firma-cerny.cz", true },
@@ -14676,6 +16305,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "firmapi.com", true },
{ "firmen-assekuranz.de", true },
{ "firmenwerbung-vermarktung.de", true },
+ { "firmware.science", true },
{ "first-house.no", true },
{ "first.org", true },
{ "first4it.com", true },
@@ -14687,17 +16317,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "firstdry.com.br", true },
{ "firstfinca.de", true },
{ "firstinnovation.co.jp", true },
- { "firstinnovationltd.com", true },
{ "firstmall.de", true },
+ { "firstnetworksouth.com", true },
{ "firstq.xyz", true },
+ { "firstsecurity.cl", true },
{ "fischer-kundendienst.de", true },
{ "fischers.cc", true },
- { "fischers.it", true },
{ "fischers.srv.br", true },
+ { "fiscoeconti.it", true },
{ "fise.cz", true },
{ "fish-hook.ru", true },
- { "fishbattle.io", true },
- { "fishbattle.net", true },
{ "fishermailbox.net", true },
{ "fishermansbend.apartments", true },
{ "fishermansbendcorporation.com.au", true },
@@ -14711,27 +16340,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fisinfomanagerdr.com", true },
{ "fisiobox.eu", true },
{ "fiskalnepretor.pl", true },
- { "fistu.la", true },
+ { "fiskelures.se", true },
{ "fit-4u.ch", true },
{ "fit-mit-nina.com", true },
{ "fit-mit-system.eu", true },
{ "fit365.jp", false },
- { "fitchannel.com", true },
+ { "fitchconnect.com", true },
{ "fitinclass.com", true },
{ "fitkram.cz", true },
- { "fitmeat.at", true },
{ "fitness-challenge.co.uk", true },
{ "fitness.gov", true },
+ { "fitnessunder50.com", true },
{ "fitseven.ru", true },
{ "fittelo.cz", true },
{ "fitzsim.org", true },
{ "fiuxy.bz", true },
- { "fiuxy.co", true },
- { "fiuxy.me", true },
+ { "fiuxy.org", true },
+ { "fiveslice.pizza", true },
{ "fivethirtyeight.com", true },
{ "fiveyearsahead.com", true },
{ "fixatom.com", true },
{ "fixed.supply", true },
+ { "fixedtodayplumbing.com.au", true },
{ "fixel.express", true },
{ "fixforce.nl", true },
{ "fixhotsauce.com", true },
@@ -14740,17 +16370,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fixmyalarmpanel.co.uk", true },
{ "fixmycomputerdude.com", true },
{ "fiziktedavi.name.tr", true },
+ { "fizjoterapia.uk", true },
{ "fizyoterapi.name.tr", true },
{ "fizz.buzz", false },
+ { "fizzgi.gs", true },
{ "fj.je", true },
{ "fj.search.yahoo.com", false },
{ "fj.simple.com", false },
{ "fjdekermadec.com", true },
- { "fjharcu.com", true },
{ "fjordboge.dk", true },
- { "fjugstad.com", true },
{ "fjzone.org", true },
- { "fkcdn.de", true },
{ "fkfev.de", true },
{ "fkosquad.moe", true },
{ "fktpm.ru", true },
@@ -14759,10 +16388,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flagfox.net", true },
{ "flagshop.jp", true },
{ "flagspot.net", false },
+ { "flam3d.be", true },
+ { "flam3d.nl", true },
+ { "flam3d.org", true },
{ "flamer-scene.com", false },
{ "flamero.fi", true },
{ "flamet.eu", true },
+ { "flameworked.com", true },
{ "flamingkeys.com", true },
+ { "flamingowomenspavilion.com", true },
{ "flamme-von-anor.de", true },
{ "flana.com", true },
{ "flanga.io", true },
@@ -14770,12 +16404,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flangaapis.com", true },
{ "flapoverspeed.com", true },
{ "flare.cloud", true },
- { "flasaki.gr", true },
{ "flashback.org", true },
{ "flashbeing.com", true },
{ "flashcomp.cz", true },
{ "flashgot.net", true },
{ "flat.io", true },
+ { "flatbellyreview.com", true },
+ { "flatbook.one", true },
{ "flatmail.pl", true },
{ "flatmatehub.com.au", true },
{ "flatpackmates.co.uk", true },
@@ -14785,8 +16420,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flavo.io", true },
{ "flavr.be", true },
{ "flawlesscowboy.xyz", true },
+ { "flcatering.com", true },
+ { "flealab.it", true },
{ "fleep.io", true },
{ "fleesty.dynv6.net", true },
+ { "fleet-group.com", true },
+ { "fleet-search.com", true },
{ "fleetcor.at", true },
{ "fleetcor.ch", true },
{ "fleetcor.cz", true },
@@ -14800,8 +16439,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fleetcorcards.be", true },
{ "fleetsmith.com", true },
{ "fleetssl.com", true },
+ { "fleetyards.net", true },
{ "flehm.de", true },
{ "fleisch.club", true },
+ { "fleischmann.com.br", true },
{ "flers-agglo.fr", true },
{ "flerstourisme.fr", true },
{ "fletcherdigital.com", true },
@@ -14809,6 +16450,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fletemaritimo.online", true },
{ "flets-ms.com", true },
{ "fleurenplume.fr", true },
+ { "fleursdujour.ph", true },
{ "fleuryfleury.com", true },
{ "flexapplications.se", true },
{ "flexbuildingsystems.com", true },
@@ -14835,16 +16477,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fliino.info", true },
{ "fliino.net", true },
{ "fliino.org", true },
- { "fliio.com", true },
{ "flinch.io", true },
{ "flip.kim", true },
{ "flipneus.net", true },
{ "fliptable.org", true },
- { "flirt-norden.de", true },
{ "flirtee.net", true },
- { "flirtfaces.de", true },
{ "flirtos.de", true },
- { "flixports.com", true },
{ "flmortgagebank.com", true },
{ "floatationlocations.com", true },
{ "floaternet.com", true },
@@ -14853,11 +16491,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "floersheimer-openair.de", true },
{ "floffi.media", true },
{ "floify.com", true },
- { "floj.tech", true },
{ "flokinet.is", true },
- { "floless.co.uk", true },
- { "flomeyer.de", true },
{ "floobits.com", true },
+ { "floodsmart.gov", true },
{ "floogulinc.com", true },
{ "floorballpoint.cz", true },
{ "flooringnightmares.com", true },
@@ -14866,9 +16502,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "floort.net", false },
{ "floraclick.net", true },
{ "floraexpress.it", true },
+ { "florafiora.com.br", true },
+ { "floravan.com", true },
+ { "floravino.de", true },
{ "florence.uk.net", true },
{ "florenceapp.co.uk", true },
- { "florent-tatard.fr", true },
{ "florentynadawn.co.uk", true },
{ "floresvilleedc.org", true },
{ "florian-bachelet.fr", true },
@@ -14883,36 +16521,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "floridagulfbeachrealty.com", true },
{ "floridahomesinvest.com", true },
{ "floridasexhealth.com", true },
+ { "floridaweightlossdoctors.com", true },
{ "florinlungu.it", true },
{ "florismoo.nl", true },
{ "florismouwen.com", false },
+ { "floristmou.com", true },
{ "florisvdk.net", true },
{ "floriswesterman.nl", true },
- { "flosch.at", false },
+ { "florlola.com", true },
{ "floskelwolke.de", true },
+ { "flossexanten.de", true },
{ "flourishtogether.com", true },
{ "flow.su", true },
- { "flowair24.ru", true },
{ "flowcom.de", true },
{ "flowersbylegacy.com", true },
{ "flowersquito.com", true },
{ "flowinvoice.com", true },
{ "flowreader.com", true },
{ "flra.gov", true },
- { "flucky.xyz", true },
{ "fluffycloud.de", true },
{ "fluggesellschaft.de", true },
{ "fluhrers.de", true },
{ "fluidmeterusa.com", true },
{ "fluids.ac.uk", true },
+ { "fluitbeurt.nl", true },
{ "flumble.nl", true },
- { "flunschi.goip.de", false },
+ { "flunschi.goip.de", true },
{ "fluoxetine.net", true },
- { "flurp.de", false },
{ "flushlife.com", true },
{ "fluteandpianoteaching.co.uk", true },
{ "flux.healthcare", true },
- { "fluxent.de", false },
{ "fluxfingers.net", true },
{ "fluxforge.com", true },
{ "fluxi.fi", true },
@@ -14920,10 +16558,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flw365365.com", true },
{ "fly-en-drive.nl", true },
{ "fly.moe", true },
+ { "flyavantar.com", true },
{ "flyboyfpv.com", true },
{ "flydrivesicilie.nl", true },
{ "flyer.tools", true },
{ "flygon.pink", true },
+ { "flyinghigh.co.jp", true },
{ "flyinglocksmiths.com", true },
{ "flyingpackets.net", true },
{ "flyingrub.me", true },
@@ -14931,13 +16571,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flynn.io", true },
{ "flyp.me", true },
{ "flypenge.dk", true },
- { "flyserver.co.il", true },
+ { "flyserver.co.il", false },
{ "flyswoop.com", true },
{ "flyt.online", true },
{ "flytoadventures.com", true },
{ "fm-cdn.de", true },
{ "fm.ie", true },
{ "fmarchal.fr", true },
+ { "fmbilder.se", true },
{ "fmc.gov", true },
{ "fmdance.cl", true },
{ "fminsight.net", true },
@@ -14970,16 +16611,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fojtova.cz", true },
{ "fojtovi.cz", true },
{ "fokan.be", true },
+ { "fokan.ch", true },
{ "fokep.no", true },
{ "fokkusu.fi", true },
{ "folio.no", true },
+ { "foliumbiosciences.com", true },
+ { "foliumfinance.com", true },
{ "foljeton.dk", true },
{ "folk.as", true },
{ "follandviolins.com", true },
{ "followback.net", true },
{ "follower98.ir", true },
{ "followerrocket.com", true },
- { "followersya.com", true },
{ "followings-live.com", true },
{ "followmystaff.com", true },
{ "followthatpage.com", true },
@@ -14989,7 +16632,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "folwark.krakow.pl", true },
{ "fomopop.com", true },
{ "fondationwiggli.ch", true },
- { "fondsdiscountbroker.de", true },
{ "fondy.eu", true },
{ "fondy.ua", true },
{ "fonga.ch", true },
@@ -14998,6 +16640,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fonseguin.ca", true },
{ "font-converter.net", true },
{ "fonte-trading.com", true },
+ { "fontedoprazer.com", true },
{ "fontein.de", true },
{ "fontlibrary.org", true },
{ "fonts4free.net", true },
@@ -15006,7 +16649,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "foo.hamburg", true },
{ "foodattitude.ch", true },
{ "foodblogger.club", true },
- { "foodev.de", true },
+ { "foodboy.com", true },
+ { "foodcare.ml", true },
+ { "foodlist.net", true },
{ "foodloader.net", true },
{ "foodsafety.gov", true },
{ "foodsafetyjobs.gov", true },
@@ -15019,9 +16664,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fooster.io", true },
{ "foot.fr", true },
{ "footagecrate.com", true },
- { "football.de", true },
{ "footballforum.de", true },
- { "footloose.co.uk", true },
{ "for.care", true },
{ "foray-jero.me", true },
{ "forbidden-mods.de", true },
@@ -15029,7 +16672,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "forcelink.eu", true },
{ "forcelinkamerica.com", true },
{ "forcelinkamerica.nl", true },
- { "forces.army", true },
{ "forcewave.com", true },
{ "ford-shop.by", true },
{ "ford.com.au", true },
@@ -15046,7 +16688,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "foreign-language-colleges.com", true },
{ "forellenpark.com", true },
{ "forento.be", true },
- { "foresdon.jp", true },
{ "foresthillhomes.ca", true },
{ "forestraven.net", true },
{ "foreverclean.com", true },
@@ -15069,11 +16710,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "formation-assureur.com", true },
{ "formation-mac.ch", true },
{ "formationseeker.com", true },
- { "formbetter.com", true },
{ "formersessalaries.com", true },
- { "formforger.com", true },
{ "formini.dz", true },
+ { "formio.nl", true },
{ "formsbyair.com", true },
+ { "formsmarts.com", true },
{ "formula-ot.ru", true },
{ "formulacionquimica.com", true },
{ "formulastudent.de", true },
@@ -15087,19 +16728,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "forrestheller.com", true },
{ "forro.berlin", true },
{ "forro.info", true },
- { "forsakringsarkivet.se", true },
{ "forsec.nl", true },
{ "forself.me", true },
{ "forstbetrieb-hennecke.de", true },
{ "forstprodukte.de", true },
{ "forteggz.nl", true },
- { "fortesanshop.it", true },
- { "fortknox.cz", true },
+ { "forthetoys.com", true },
{ "fortnine.ca", true },
{ "fortran.io", true },
{ "fortress.no", true },
{ "fortress.sk", true },
{ "fortuna-apotheke-lahnstein.de", true },
+ { "fortuna.co.ua", true },
{ "forty-two.nl", true },
{ "forty8creates.com", true },
{ "fortytwo.cloud", true },
@@ -15108,14 +16748,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "forum-kinozal-tv.appspot.com", true },
{ "forum-kinozal.appspot.com", true },
{ "forum.quantifiedself.com", false },
+ { "forumotomobil.com", true },
{ "forumvoordemocratie.nl", true },
{ "forvisualdesign.com", true },
{ "forward-fly-fishing.ch", true },
- { "foryouandyourcustomers.com", true },
{ "foryourhealthybody.com", true },
{ "fosaudit.com", true },
{ "foscamcanada.com", true },
{ "fosdem.org", true },
+ { "fosgreece.com", true },
{ "fossforward.com", true },
{ "fossilfreeyale.org", true },
{ "fosterpark.ca", true },
@@ -15128,7 +16769,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "foto-robitsch.at", true },
{ "foto-roma.ru", true },
{ "foto.by", true },
+ { "fotoallerlei.com", true },
{ "fotoboxvysocina.cz", true },
+ { "fotocopiatrici.roma.it", true },
{ "fotofaerie.net", true },
{ "fotoflits.net", true },
{ "fotografechristha.nl", true },
@@ -15139,6 +16782,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fotoleitner.com", true },
{ "fotoleitner.de", true },
{ "fotonjan.com", true },
+ { "fotostravestisbr.com", true },
{ "fotostudio-leitner.com", true },
{ "fotostudio-leitner.de", true },
{ "fotostudio-schweiz.ch", true },
@@ -15147,28 +16791,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fougner.co", true },
{ "found.website", true },
{ "foundationrepairnebraska.com", true },
- { "foundationspecialisteast.com", true },
{ "foundationspecialistmi.com", true },
+ { "foundationswellness.net", true },
{ "foundchurch.co.uk", true },
+ { "founderio.net", true },
{ "foundsounds.me", true },
{ "fourashesgolfcentre.co.uk", true },
{ "fourashesgolfcentre.com", true },
{ "fourashesgolfcentre.uk", true },
- { "fourdesignstudio.com", false },
{ "fournarisopenday.com", true },
- { "foutrelis.com", true },
{ "fowlervwparts.com", true },
{ "fowlsmurf.net", true },
{ "fox.my", false },
- { "foxbnc.co.uk", true },
- { "foxdev.co", false },
{ "foxesare.sexy", true },
- { "foxing.club", true },
{ "foxo.blue", true },
{ "foxontheinter.net", true },
{ "foxphotography.ch", true },
{ "foxquill.com", true },
+ { "foxroy.com", true },
{ "foxstreetcomms.co.za", false },
+ { "foxvisor.com", true },
{ "fozzie.space", true },
{ "fpaci.org", true },
{ "fpasca.com", true },
@@ -15177,43 +16819,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fpgradosuperior.com", true },
{ "fpsclasico.de", true },
{ "fpt-technojapan.com", true },
- { "fptravelling.com", false },
- { "fpvr.org", true },
{ "fpy.cz", true },
{ "fr.search.yahoo.com", false },
{ "frack.nl", false },
{ "fracreazioni.it", true },
{ "fraesentest.de", true },
{ "fragmentspuren.de", true },
- { "fragrances.bg", true },
{ "fragstore.net", true },
{ "fraho.eu", true },
- { "framapiaf.org", true },
+ { "framapiaf.org", false },
{ "framboise314.fr", true },
{ "framedpaws.com", true },
{ "framezdakkapellen.nl", true },
{ "fran.cr", true },
{ "francescopalazzo.com", true },
{ "francescopandolfibalbi.it", true },
+ { "francescoyatesfansite.com", true },
{ "francetraceur.fr", true },
{ "franchini.email", true },
{ "franchini.engineer", true },
{ "francinebelanger.network", true },
+ { "francis.ph", true },
{ "francis.tokyo", true },
{ "francisli.net", false },
{ "franckgirard.net", true },
{ "franckyz.com", true },
- { "francois-gaillard.fr", true },
{ "francois-occasions.be", true },
{ "francoisbelangerboisclair.com", true },
{ "francoiscarrier.com", true },
+ { "francoise-paviot.com", true },
{ "francoisharvey.ca", true },
{ "francoislepage.com", true },
{ "francoz.me", true },
{ "frandor.co.uk", true },
- { "frank.fyi", true },
{ "frankbellamy.co.uk", true },
- { "franke-chemie.de", true },
+ { "frankellawfirm.com", true },
{ "franken-lehrmittel.de", true },
{ "frankenhost.de", true },
{ "frankenlehrmittel.de", true },
@@ -15227,17 +16867,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "frankpalomeque.com", true },
{ "franksiler.com", true },
{ "frankslaughterinsurance.com", true },
- { "frankwei.xyz", true },
{ "frankyan.com", true },
{ "frantic1048.com", true },
{ "frantorregrosa.me", true },
{ "franz-vatter.de", true },
{ "franz.beer", true },
{ "franziska-pascal.de", true },
+ { "franziskaherbert.de", true },
{ "franzknoll.de", true },
- { "franzt.de", false },
{ "frappant.cc", true },
- { "frasch-umzuege.de", true },
+ { "frappant.net", true },
{ "fraselab.ru", true },
{ "frasesconemocion.com", true },
{ "frasesdodia.com", true },
@@ -15245,55 +16884,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "frasesytarjetas.com", true },
{ "frasys.net", true },
{ "frattaroli.org", true },
- { "frau-inge.de", true },
{ "frau-pusteblu.me", true },
{ "frau-sucht-bauer.de", true },
{ "fraudmarc.com", true },
{ "frauenarzt-niendorf.de", true },
{ "frauenarzt-zinke.de", true },
{ "frauenlob.rocks", true },
- { "fraurichter.net", true },
{ "fraye.net", true },
+ { "frazell.net", true },
{ "frbracch.it", true },
{ "frc.gov", true },
{ "frccsgo.tk", true },
{ "frdl.ch", true },
{ "freaksites.dk", true },
{ "freaksports.com.au", true },
- { "freakyawesome.agency", true },
- { "freakyawesome.art", true },
- { "freakyawesome.band", true },
- { "freakyawesome.business", true },
- { "freakyawesome.ca", true },
- { "freakyawesome.co.uk", true },
- { "freakyawesome.fm", true },
- { "freakyawesome.in", true },
- { "freakyawesome.io", true },
- { "freakyawesome.lgbt", true },
- { "freakyawesome.net", true },
- { "freakyawesome.org", true },
{ "frebib.co.uk", true },
{ "frebib.com", true },
{ "frebib.net", true },
{ "freddieonfire.tk", false },
- { "freddyfazbearspizzeria.com", true },
{ "freddysfuncastles.co.uk", true },
{ "fredericcote.com", true },
{ "frederik-braun.com", false },
+ { "frederikshavn.net", true },
{ "frederikvig.com", true },
{ "fredloya.com", true },
{ "fredriksslaktforskning.se", true },
+ { "freds4buildings.com", true },
+ { "fredsmith.net", true },
+ { "fredsmith.org", true },
+ { "fredsmith.us", true },
{ "fredvoyage.fr", true },
{ "free-ss.site", true },
{ "free.ac.cn", true },
{ "free.com.tw", true },
- { "freeassangenow.org", true },
+ { "freeaf.gq", true },
{ "freeasyshop.com", true },
{ "freebarrettbrown.org", true },
{ "freebcard.com", true },
{ "freebetoffers.co.uk", true },
{ "freebookmakersbetsandbonuses.com.au", true },
{ "freeboson.org", true },
+ { "freebsdbrasil.com.br", true },
{ "freebus.org", true },
{ "freecam2cam.site", true },
{ "freecloud.at", true },
@@ -15310,6 +16941,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freedomonline.bg", true },
{ "freedomrahoitus.fi", true },
{ "freeenglishhelp.com", true },
+ { "freeexampapers.com", true },
{ "freeform4u.de", true },
{ "freegame-mugen.jp", true },
{ "freegutters.com", true },
@@ -15321,7 +16953,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freeks.com.br", true },
{ "freela.ch", true },
{ "freelance.boutique", true },
- { "freelance.guide", true },
{ "freelance.nl", true },
{ "freelanceessaywriters.com", true },
{ "freelancehunt.com", true },
@@ -15330,19 +16961,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freelauri.com", true },
{ "freelifer.jp", true },
{ "freelo.cz", true },
- { "freelysurf.cf", true },
{ "freemania.eu", true },
{ "freemania.nl", true },
{ "freemanlogistics.com", true },
{ "freemans.com", true },
{ "freeministryresources.org", true },
+ { "freemomhugs.org", true },
{ "freemyipod.org", true },
{ "freend.me", false },
{ "freenetproject.org", true },
{ "freeonplate.com", true },
{ "freepnglogos.com", true },
{ "freepublicprofile.com", true },
- { "freergform.org", true },
{ "freertomorrow.com", true },
{ "freeshell.de", true },
{ "freeshkre.li", true },
@@ -15353,7 +16983,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freesoftlab.com", true },
{ "freesolitaire.win", true },
{ "freesourcestl.org", true },
- { "freesquare.net", true },
+ { "freespot.mobi", true },
{ "freessl.tech", true },
{ "freesslcertificate.me", true },
{ "freetaxusa.com", true },
@@ -15361,10 +16991,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freetsa.org", true },
{ "freeweibo.com", true },
{ "freewoodfactory.com", true },
+ { "freexmovie.com", true },
{ "freeyourmusic.com", true },
{ "freezion.com", true },
- { "frei.social", true },
{ "freie-software.net", true },
+ { "freiewaehler-verden.de", true },
{ "freifahrt.de", true },
{ "freifamily.ch", true },
{ "freifunk-burgaltendorf.de", true },
@@ -15393,32 +17024,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freshdesigns.de", true },
{ "freshdns.nl", true },
{ "freshempire.gov", true },
- { "freshislandfish.com", true },
{ "freshlymind.com", true },
{ "freshmaza.com", true },
{ "freshmaza.net", true },
- { "freshpounds.com", true },
{ "fretscha.com", true },
{ "frettirnar.is", true },
{ "fretworksec.com", true },
{ "freundinnen-ausflug.de", true },
{ "freundinnen-kurzurlaub.de", true },
{ "freundinnen-urlaub.de", true },
+ { "frforms.com", true },
{ "friarsonbase.com", true },
{ "frickelboxx.de", true },
{ "frickelmeister.de", true },
- { "fridayfoucoud.ma", true },
{ "fridolinka.cz", true },
- { "friedenauer-herbstfest.de", true },
{ "friederes.lu", true },
{ "friederloch.de", true },
{ "friedrich-foto-art.de", true },
{ "friedsamphotography.com", true },
+ { "friedstechnology.com", true },
+ { "friedstechnology.nl", true },
+ { "friedstechnology.online", true },
{ "friedzombie.com", true },
+ { "friedzombie.nl", true },
+ { "friedzombie.online", true },
{ "friendlysiberia.com", true },
{ "friendowment.us", true },
{ "friends-of-naz.com", true },
{ "friends-socialgroup.org", true },
+ { "friends.tn", true },
{ "friends24.cz", true },
{ "friendship-quotes.co.uk", true },
{ "friendshipismagicsquad.com", true },
@@ -15426,9 +17060,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "frieslandrail.nl", true },
{ "friet.org", true },
{ "frietbesteld.nl", true },
+ { "frietzombie.nl", true },
{ "friezy.ru", true },
{ "frigi.ch", true },
{ "frigolit.net", true },
+ { "friller.com.au", true },
{ "frillip.com", true },
{ "fringeintravel.com", true },
{ "frinkiac.com", true },
@@ -15436,23 +17072,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "friplay.host", true },
{ "frippz.se", true },
{ "friss.com", true },
+ { "fritz-koehne-schule.de", true },
{ "fritzrepair.com", true },
{ "frizo.com", true },
- { "frly.de", true },
+ { "frizzless.com", true },
{ "frnco.uk", true },
{ "frob.nl", true },
{ "froehliche-hessen.de", true },
{ "frogatto.com", true },
{ "frogeye.fr", true },
{ "froggitt.com", true },
- { "frogsonamission.de", true },
{ "froh.co.jp", true },
{ "frolova.org", true },
- { "from-the-net.com", true },
+ { "fromager.net", true },
+ { "fromanolderwoman.com", true },
{ "fromscratch.rocks", true },
{ "fronteers.nl", false },
{ "frontier-ad.co.jp", true },
+ { "frontier.bet", true },
{ "frontiers.nl", true },
+ { "frontletter.io", true },
{ "frontline.cloud", true },
{ "frontlinemessenger.com", true },
{ "fropky.com", true },
@@ -15466,8 +17105,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "frozen-solid.net", true },
{ "frozenjam.com", true },
{ "frpg.gov", true },
+ { "frprn.com", true },
{ "frprn.es", true },
+ { "frprn.xxx", true },
{ "frsnpwr.net", true },
+ { "frtib.gov", true },
{ "frtn.com", true },
{ "frtr.gov", true },
{ "frtrains.com", true },
@@ -15492,55 +17134,63 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fsbnh.bank", true },
{ "fsbpaintrock.com", true },
{ "fsbturton.com", true },
- { "fsck.jp", true },
+ { "fsch2009.com", true },
+ { "fsck.cz", true },
+ { "fsck.jp", false },
{ "fsckd.com", true },
{ "fscott.de", true },
- { "fsdress.com", true },
{ "fsfxpackages.com", true },
{ "fsg.one", true },
{ "fsgeek.ca", true },
{ "fsk.fo", true },
+ { "fskounoike.com", true },
{ "fsky.info", true },
{ "fsm2016.org", true },
{ "fsps.ch", true },
- { "fsstyle.com", true },
{ "fsty.uk", true },
+ { "fsvoboda.cz", true },
{ "fsvt.ch", true },
{ "ft.com", false },
+ { "ftang.de", true },
{ "ftc.gov", false },
{ "ftccomplaintassistant.gov", true },
{ "ftcefile.gov", true },
{ "ftdev.in", true },
- { "ftf.agency", true },
+ { "ftexchange.com", true },
{ "fthat.link", true },
{ "ftng.se", true },
{ "ftptest.net", true },
{ "ftrsecure.com", true },
- { "fu898.top", true },
+ { "ftv.re", true },
{ "fuantaishenhaimuli.net", true },
- { "fuck-your-false-positive.de", true },
- { "fuckav.ru", true },
+ { "fuciam.com.co", true },
{ "fuckcie.com", true },
{ "fucklife.ch", true },
- { "fuckonthefirst.date", true },
- { "fuckup.dk", true },
+ { "fucknazis.cf", true },
+ { "fucknazis.tk", true },
+ { "fuckonthefirst.date", false },
{ "fuckyoupaypal.me", true },
+ { "fuckz.net", true },
{ "fuechschen.org", true },
- { "fuelfirebrand.com", true },
+ { "fuego.tech", true },
{ "fuelingyourdreams.com", true },
{ "fuerstenfelder-immobilien.de", true },
{ "fuglede.dk", true },
{ "fuite.ch", true },
+ { "fuitedeau.ch", true },
{ "fuites.ch", true },
{ "fujianshipbuilding.com", true },
{ "fujiwaraqol.com", true },
{ "fujiwarashinzo.com", true },
{ "fukakukeiba.com", true },
+ { "fukata.org", true },
{ "fukikaeru.com", true },
{ "fukuiedu.com", true },
+ { "fukushima-fun.com", true },
{ "fukushimacoffee.com", true },
{ "fulfilmentcrowd.com", true },
{ "fulgenzis.com", true },
+ { "fulijiejie.com", true },
{ "fuliwang.info", true },
{ "fuliwang.us", true },
{ "full-race.com", true },
@@ -15550,19 +17200,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fullereno.com", true },
{ "fullerlife.org.uk", true },
{ "fullfilez.com", true },
- { "fullhost.com", true },
{ "fullhub.ru", true },
{ "fullmatch.net", true },
- { "fullnitrous.com", true },
{ "fullstack.love", true },
- { "fullstacknotes.com", true },
+ { "fullstacknotes.com", false },
{ "fumblers.ca", true },
{ "fumerolles.ch", true },
{ "fumo.se", false },
{ "fun-bounce.co.uk", true },
+ { "fun-fan.biz", true },
{ "fun-tasia.co.uk", true },
{ "fun4kidzbouncycastles.co.uk", true },
- { "fun4tomorrow.com", true },
{ "fun4ubouncycastles.co.uk", true },
{ "fun888city.com", true },
{ "fun888city.net", true },
@@ -15572,23 +17220,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "funandbounce.com", true },
{ "funatic.nl", true },
{ "funbouncelincs.co.uk", true },
+ { "funbuynet.com.br", true },
{ "funchestra.at", false },
{ "functional.cc", true },
{ "functions-online.com", true },
+ { "fundacionfranciscofiasco.org", true },
+ { "fundavi.jp", true },
+ { "fundayltd.com", true },
{ "fundays.nl", true },
{ "fundchan.com", true },
{ "fundeego.com", true },
{ "fundingempire.com", true },
+ { "fundmylegalclaim.co.uk", true },
{ "fundort.ch", true },
{ "funds.ddns.net", 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 },
+ { "funkazoid-radio.com", true },
{ "funken-networks.de", true },
+ { "funkfernbedienung-industrie.de", true },
+ { "funknotaus.de", true },
{ "funktionel.co", true },
{ "funktionsverket.se", true },
{ "funkygamer1.de", true },
@@ -15616,30 +17271,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "furkot.it", true },
{ "furkot.pl", true },
{ "furlan.co", true },
- { "furlog.it", true },
+ { "furlog.it", false },
{ "furnfurs.com", true },
{ "furnishedproperty.com.au", true },
+ { "furniturezoneboone.com", true },
{ "furries-united.de", true },
{ "furry.bot", true },
{ "furry.cat", true },
+ { "furry.cool", true },
{ "furry.dk", true },
{ "furrytech.network", true },
- { "furrytf.club", true },
- { "furryyiff.site", true },
{ "fursuitbutts.com", true },
{ "fusa-miyamoto.jp", true },
{ "fuselight.nl", true },
{ "fuseos.net", true },
- { "fushee.com", true },
{ "fusiongaming.de", true },
{ "fussball-xxl.de", true },
{ "fussell.io", true },
{ "fuszara.pl", true },
- { "futa.moe", true },
+ { "futa.moe", false },
{ "futaba-works.com", true },
- { "futagro.com", true },
+ { "futbolvivo.tv", true },
{ "futbomb.com", true },
{ "futcre.com", true },
+ { "futos.de", true },
{ "futrou.com", true },
{ "future-moves.com", true },
{ "futureaudiographics.com", true },
@@ -15650,18 +17305,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "futuressm.com", true },
{ "futuretimes.io", true },
{ "futurezone.at", true },
- { "futurope.com", true },
{ "fuvelis.fr", true },
{ "fuwafuwa.moe", true },
{ "fuyu.moe", true },
+ { "fuzenet.net", true },
+ { "fuzoku.jp", true },
{ "fuzzing-project.org", true },
{ "fveevaete.com", true },
{ "fwdx.net", true },
{ "fwest.ovh", true },
{ "fwest98.nl", true },
{ "fwest98.ovh", true },
+ { "fwz.me", true },
{ "fx-rk.com", true },
- { "fx24.uk", true },
{ "fx5.de", true },
{ "fxislamic.com", true },
{ "fxmarketing.com.au", true },
@@ -15686,29 +17342,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fyfywka.com", true },
{ "fyksen.me", true },
{ "fyn.nl", true },
+ { "fyner.lt", true },
{ "fyol.xyz", false },
{ "fyreek.me", true },
{ "fyretrine.com", true },
{ "fysesbjerg.dk", true },
- { "fysio123.nl", true },
{ "fysiomassageoosterhout.nl", true },
{ "fysiotherapieapeldoornzuid.nl", true },
{ "fysiotherapieholtenbroek.nl", true },
- { "fysiotherapienieuwveen.nl", true },
{ "fysiovdberg.nl", true },
{ "fysuite.com", true },
{ "fytcart.com", true },
+ { "fytorio-pasxalis.gr", true },
{ "fzbrweb.cz", true },
+ { "fzdm.com", true },
+ { "fzhyzamt.com", true },
+ { "fztopsec.com", true },
{ "fzx750.ru", true },
{ "g-ds.de", true },
+ { "g-fruit.gr", true },
{ "g-m-w.eu", true },
{ "g-p-design.com", true },
{ "g-rom.net", true },
{ "g.co", true },
+ { "g01.in.ua", true },
{ "g0881.com", true },
{ "g0man.com", true },
{ "g1.ie", true },
{ "g10e.ch", true },
+ { "g116688.com", true },
{ "g2links.com", true },
{ "g2pla.net", true },
{ "g2ship.com", true },
@@ -15718,26 +17380,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "g3dev.ch", true },
{ "g3rv4.com", true },
{ "g4w.co", true },
- { "g5.gov", true },
+ { "g5197.co", true },
+ { "g6729.co", true },
+ { "g6957.co", true },
{ "g8energysolutions.co.uk", true },
+ { "g9297.co", true },
+ { "g9397.com", true },
+ { "g9721.com", true },
+ { "g9728.co", true },
+ { "ga-2.it", true },
+ { "ga-part.ru", true },
{ "gaaz.fr", true },
{ "gabe565.com", true },
{ "gabeb1920.com", true },
{ "gabecook.com", true },
+ { "gabinetejuridicotecnologicojuandemeseguer.es", true },
{ "gabinetpsychoterapii.krakow.pl", true },
{ "gabiocs.com", true },
{ "gabriel.to", true },
+ { "gabriele-kluge.de", true },
{ "gabriele.tips", true },
- { "gabrielkoo.com", true },
+ { "gabrielgn.com.br", true },
{ "gabrielsteens.nl", true },
+ { "gabz.pw", true },
{ "gachimuchi.ru", true },
{ "gachiyase.com", true },
{ "gachter.name", true },
{ "gadabit.pl", true },
+ { "gaddini.it", true },
{ "gadget-tips.com", true },
{ "gadgetadvisor.com", true },
{ "gadgethacks.com", true },
- { "gadse.games", true },
{ "gae123.com", true },
{ "gaengler.com", true },
{ "gaest.com", true },
@@ -15752,6 +17425,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gagniard.org", true },
{ "gagor.pl", true },
{ "gagygnole.ch", true },
+ { "gaiavanderzeyp.com", true },
{ "gailbartist.com", true },
{ "gailfellowsphotography.com", true },
{ "gaines-sodiamex.fr", true },
@@ -15761,9 +17435,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gaitandmobility.com", true },
{ "gaitrehabilitation.com", true },
{ "gaitresearch.com", true },
+ { "gajas18.com", true },
+ { "gajowniczek.eu", true },
{ "gakdigital.com", true },
- { "gakkainavi-epsilon.jp", true },
- { "gakkainavi-epsilon.net", true },
{ "gakki.photos", true },
{ "gaku-architect.com", true },
{ "gala.kiev.ua", false },
@@ -15771,13 +17445,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "galacg.me", true },
{ "galactic-crew.org", true },
{ "galak.ch", true },
+ { "galaltosalento.it", true },
{ "galanight.cz", true },
+ { "galax.us", true },
+ { "galaxieblog.com.my", true },
+ { "galaxus.at", true },
+ { "galaxus.ch", true },
+ { "galaxus.com", true },
+ { "galaxus.de", true },
+ { "galaxus.eu", true },
+ { "galaxus.fr", true },
{ "galaxy.edu.pe", true },
{ "galaxymimi.com", true },
+ { "galaxymusicpromo.com", true },
{ "galeria42.com", true },
- { "galerialottus.com.br", true },
+ { "galeriajardim.com.br", true },
{ "galeriarr.pl", true },
{ "galeries.photo", true },
+ { "galighticus.com", true },
{ "galileanhome.org", true },
{ "galilel.cloud", true },
{ "galinas-blog.de", true },
@@ -15793,37 +17478,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gallun-shop.com", true },
{ "galoserver.org", true },
{ "galpaoap.com.br", true },
+ { "galvingao.com", true },
{ "gamberorosso.menu", true },
{ "gambetti.fr", true },
{ "gambit.pro", true },
- { "gambitboard.com", true },
{ "gambitnash.co.uk", true },
{ "gambitnash.com", true },
{ "gambitprint.com", true },
+ { "gambler.ru", true },
{ "gamblerhealing.com", true },
+ { "gamcore.com", true },
{ "game-club.me", true },
{ "game-files.net", false },
+ { "game-topic.ru", true },
{ "game4less.com", true },
{ "game7.de", true },
+ { "game88city.com", true },
{ "game88city.net", true },
{ "gameanalytics.com", true },
{ "gameblabla.nl", true },
{ "gamebrott.com", true },
{ "gamecard-shop.nl", true },
{ "gamechefpummarola.eu", true },
+ { "gamechurch.de", true },
{ "gameclue.jp", true },
{ "gamecollector.be", true },
{ "gameconservation.org.uk", true },
{ "gamedevelopers.pl", true },
{ "gamegix.com", true },
- { "gameguardian.net", true },
{ "gameharbor.duckdns.org", true },
{ "gameindustry.de", true },
{ "gameisbest.jp", true },
+ { "gamejobs.co", true },
{ "gamekaitori.jp", true },
{ "gamekeepers.cz", true },
{ "gamemodding.com", true },
+ { "gamenauta.com.br", true },
{ "gamenerd.net", true },
+ { "gameofbooks.de", true },
{ "gamepad.com.br", true },
{ "gameplaysforkids.com", true },
{ "gamepreorders.com", true },
@@ -15831,6 +17523,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gamer-portal.com", true },
{ "gamercredo.com", true },
{ "gamereader.de", true },
+ { "gamerepublic.hu", true },
+ { "gameres.com", true },
{ "gamerezo.com", true },
{ "gamerwares.com", true },
{ "gamerzdot.com", true },
@@ -15841,9 +17535,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gameshogun.xyz", true },
{ "gameshowchallenge.ie", true },
{ "gamesided.com", true },
+ { "gamesme.cn", true },
{ "gamesplanet.com", true },
{ "gamesputnik.ru", true },
{ "gamestats.gg", true },
+ { "gametilt.com", true },
{ "gametube.website", true },
{ "gamilab.com", true },
{ "gamilab.no", true },
@@ -15858,8 +17554,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gamismurahonline.com", true },
{ "gamivo.com", true },
{ "gamoloco.com", true },
+ { "gamster.tv", true },
{ "ganado.org", true },
{ "ganaenergia.com", true },
+ { "ganaenergia.es", true },
{ "ganasoku.net", true },
{ "gancedo.com.es", true },
{ "gandalfservice.com", true },
@@ -15869,44 +17567,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gangnamavenue.com", true },
{ "gangnamcool.com", true },
{ "gansleit.com", false },
+ { "ganyouxuan.com", true },
{ "ganztagplus.de", true },
{ "gao.ci", true },
{ "gao.rocks", true },
{ "gaodebo.com", true },
{ "gaojianli.me", true },
- { "gaojianli.tk", true },
{ "gaos.org", true },
{ "gapdirect.com", true },
{ "gapfa.org", true },
+ { "gaphag.ddns.net", true },
{ "garage-leone.com", true },
- { "garage-meynard.com", true },
{ "garagedejan.ch", true },
{ "garagedoorrepairingsanjose.com", true },
{ "garageenginuity.com", true },
{ "garagefox.ch", true },
{ "garagegoossens.be", true },
- { "garagelink.jp", true },
{ "garagemhermetica.org", true },
+ { "garagesmart.com.au", true },
{ "garagevanhulle-used.be", true },
{ "garanteasy.com", true },
+ { "garazskapuszereles.hu", true },
{ "garbagedisposalguides.com", true },
{ "garbomuffin.com", true },
+ { "garcia-franco.com", true },
{ "garciagerman.com", true },
{ "garda-see.mobi", true },
{ "gardedenfantspourtous.fr", true },
{ "gardengameshireuk.com", true },
+ { "gardeningdirect.co.uk", true },
+ { "gardenstate.tech", true },
{ "garderobche.eu", true },
{ "gardikagigih.com", true },
- { "gardinte.com", true },
{ "gardis.ua", true },
{ "garedtech.com", false },
{ "garethbowker.com", true },
{ "garethkirk.com", true },
- { "garethkirkreviews.com", true },
{ "garethrhugh.es", true },
- { "garforthgolfclub.co.uk", true },
{ "gargazon.net", true },
{ "garnuchbau.de", true },
+ { "garriganenterprises.com", true },
+ { "garriganenterprisesinc.com", true },
{ "garron.net", true },
{ "garrowmediallc.com", true },
{ "gartenbaur.de", true },
@@ -15919,6 +17620,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "garyswine.com", true },
{ "garywhittington.com", true },
{ "gashalot.com", true },
+ { "gaspapp.com", true },
{ "gastauftritt.net", true },
{ "gastoudererenda.nl", true },
{ "gastromedicalcenter.com.br", true },
@@ -15928,7 +17630,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gateaucreation.fr", true },
{ "gatekiller.co.uk", true },
{ "gatewaybridal.com", true },
- { "gatewaybronco.com", true },
+ { "gathermycrew.org.au", true },
{ "gathu.co.ke", true },
{ "gauche.com", true },
{ "gaudeamus-folklor.cz", true },
@@ -15941,15 +17643,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gavins.stream", true },
{ "gaw.sh", true },
{ "gawrimanecuta.com", true },
+ { "gay-sissies.com", true },
+ { "gay.systems", true },
+ { "gayauthors.org", true },
+ { "gaycc.cc", true },
{ "gayhotti.es", true },
{ "gaymerconnect.net", true },
{ "gaymerx.com", true },
{ "gaymerx.net", true },
{ "gaymerx.org", true },
{ "gaysexpositions.guide", true },
+ { "gaysfisting.com", true },
+ { "gaytorrent.ru", true },
{ "gayukai.net", true },
- { "gazachallenge.org", true },
- { "gazellegames.net", false },
+ { "gayxsite.com", true },
+ { "gazellegames.net", true },
{ "gazete.org", true },
{ "gazette.govt.nz", true },
{ "gbc-radio.nl", true },
@@ -15958,13 +17666,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gboys.net", true },
{ "gbs-uk.com", true },
{ "gc-mc.de", true },
+ { "gc.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 },
{ "gcs-ventures.com", true },
{ "gcsepod.com", true },
@@ -15972,11 +17679,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gdax.com", true },
{ "gdb-tutorial.net", true },
{ "gdgrzeszow.pl", true },
- { "gdhzcgs.com", true },
{ "gdiary.net", true },
{ "gdngs.de", true },
- { "gdoce.es", true },
+ { "gdoce.es", false },
{ "gdpr-pohotovost.cz", true },
+ { "gdraco.com", true },
+ { "gdsqua.re", true },
{ "gdv.me", true },
{ "gdz-spishy.com", true },
{ "ge3k.net", false },
@@ -15996,6 +17704,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gecem.org", true },
{ "gechr.io", true },
{ "geckler-ee.de", false },
+ { "gedachtekaarsje.nl", true },
{ "geder.at", true },
{ "gedlingcastlehire.co.uk", true },
{ "gedlingtherapy.co.uk", true },
@@ -16006,16 +17715,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "geekabit.nl", true },
{ "geekandi.com", true },
{ "geekariom.com", true },
+ { "geekbundle.org", true },
{ "geekclubbooks.com", true },
{ "geekeffect.co.uk", true },
{ "geeklair.net", true },
{ "geeklan.co.uk", true },
{ "geekles.net", true },
- { "geeknik.com", true },
{ "geekpad.com", true },
+ { "geeks.berlin", true },
+ { "geeks.lgbt", true },
{ "geeks.one", false },
{ "geekshirts.cz", true },
+ { "geekstreet.fr", true },
{ "geekthis.de", true },
+ { "geektier.com", true },
{ "geektopia.es", true },
{ "geekwhack.org", true },
{ "geekwithabudget.com", true },
@@ -16027,9 +17740,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "geerdsen.net", true },
{ "geertdegraaf.nl", true },
{ "geertswei.nl", true },
+ { "gefolge.org", true },
{ "gegeco.ch", true },
{ "geh.li", true },
- { "gehaowu.com", true },
{ "gehas-wein-shop.de", true },
{ "gehirn.co.jp", true },
{ "gehirn.jp", true },
@@ -16050,13 +17763,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "geleia-real.com", true },
{ "geli-graphics.com", true },
{ "gelis.ch", true },
- { "gelodosul.com.br", true },
+ { "gellis12.com", true },
{ "gelog-software.de", false },
{ "gelonghui.com", true },
{ "geloofindemocratie.nl", false },
+ { "gelpinhos.pt", true },
+ { "gelsey.com", true },
{ "geluidsstudio.com", true },
+ { "geluk.io", true },
{ "gelukkigehonden.nl", true },
- { "gem-indonesia.net", false },
{ "gem-info.fr", true },
{ "gemails.eu", true },
{ "gemeinsam-ideen-verwirklichen.de", true },
@@ -16085,9 +17800,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "generali-worldwide.com", true },
{ "generalinsuranceservices.com", true },
{ "generationgoat.com", true },
- { "generationsweldom.com", true },
+ { "generationr.nl", true },
{ "generator.creditcard", true },
{ "generic.cx", true },
+ { "generujdata.cz", true },
{ "genesiseureka.com", true },
{ "genesismachina.ca", true },
{ "genesistrading.com", true },
@@ -16100,14 +17816,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "genfaerd.dk", true },
{ "geniofinanciero.org", true },
{ "geniush.ovh", true },
- { "geniushost.in", true },
{ "geniusteacher.in", true },
{ "geniuszone.biz", true },
{ "genocidediary.org", true },
{ "genodeftest.de", true },
- { "genome.gov", true },
{ "genomequestlive.com", true },
{ "genosse-einhorn.de", true },
+ { "genossenwiese.ch", true },
{ "genoveve.de", true },
{ "gensend.com", true },
{ "gensenwedding.jp", true },
@@ -16117,19 +17832,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "genslerwisp.com", true },
{ "gensokyo.re", true },
{ "gensonline.eu", true },
+ { "gentcdn.com", true },
{ "gentianes.ch", true },
+ { "gentlent.net", true },
{ "gentoo-blog.de", true },
+ { "gentz.rocks", true },
{ "genusshotel-riegersburg.at", true },
+ { "genxnotes.com", true },
{ "geocar.com", true },
{ "geocompass.at", true },
{ "geoffsec.org", true },
- { "geofox.org", true },
{ "geography-schools.com", true },
{ "geoinstinct.com", true },
{ "geoip.fedoraproject.org", true },
{ "geoip.stg.fedoraproject.org", true },
{ "geojs.io", true },
{ "geology-schools.com", true },
+ { "geomac.gov", true },
{ "geometra.roma.it", true },
{ "geometra24.it", true },
{ "geomex.be", true },
@@ -16139,18 +17858,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "georadar-algerie.com", true },
{ "george-brighton.co.uk", true },
{ "george-orwell.com", true },
+ { "georgeblack.me", true },
{ "georgebrighton.co.uk", true },
{ "georgecolgrove.com", true },
{ "georgedesign.ch", true },
- { "georgemaschke.com", true },
{ "georgemaschke.net", true },
{ "georgepancescu.ro", true },
- { "georgescarryout.com", true },
+ { "georgescarryout.com", false },
+ { "georgewatson.me", true },
{ "georgewbushlibrary.gov", true },
{ "georgiaautoglass.net", true },
{ "georgiaglassrepair.com", true },
{ "georgiastuartyoga.co.uk", true },
- { "georgiatransport.com", true },
{ "georgiaurologist.com", true },
{ "georgioskontaxis.com", true },
{ "georgioskontaxis.net", true },
@@ -16158,7 +17877,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "georgmayer.eu", true },
{ "geoscan.aero", true },
{ "geoscope.ch", true },
- { "geosphereservices.com", true },
{ "geotab.com", true },
{ "gepgroup.gr", true },
{ "gepps.de", true },
@@ -16172,18 +17890,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gerbyte.com", true },
{ "gerbyte.uk", true },
{ "germandarknes.net", true },
+ { "germanmasterpainters.nz", true },
{ "germanssky.de", true },
{ "gernert-server.de", true },
{ "gero.io", true },
{ "gerritcodereview.com", true },
+ { "gervais-avocat.fr", true },
{ "gerwinvanderkamp.nl", true },
{ "ges-bo.de", true },
- { "geschenkly.de", false },
+ { "geschichtscheck.de", true },
{ "geschmacksache.online", true },
{ "geschwinder.net", true },
{ "gesica.cloud", true },
{ "gesnex.com", true },
{ "gessettirotti.it", true },
+ { "gestionrocamar.es", true },
{ "gestorehotel.com", true },
{ "gestormensajeria.com", true },
{ "gestsal.com", true },
@@ -16196,47 +17917,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "get-refer.com", true },
{ "get.how", true },
{ "get2getha.org", true },
- { "get4x.com", true },
- { "geta.pub", true },
{ "getbonfire.com", true },
{ "getbooks.co.il", true },
{ "getbox.me", true },
{ "getbreadcrumbs.com", true },
{ "getbrowink.com", true },
{ "getbutterfly.com", true },
+ { "getcard.cc", true },
{ "getcloak.com", false },
- { "getcommande.com", true },
{ "getdash.io", true },
{ "getdeveloper.de", true },
{ "geteckeld.nl", true },
+ { "geteduroam.no", true },
{ "geterp.ru", true },
+ { "geteventbox.com", true },
{ "getfedora.org", true },
{ "getfilterlive.org", true },
{ "getfirstalert.com", true },
{ "getflorence.co.uk", true },
- { "getfoundquick.com", true },
{ "getgeek.es", true },
+ { "getgeek.se", true },
{ "gethow.org", true },
{ "gethttpsforfree.com", true },
- { "geti2p.com", true },
{ "getidmcc.com", true },
{ "getimgs.com", true },
{ "getinphase.com", true },
+ { "getintopc.com", true },
{ "getitlive.de", true },
- { "getitpeople.com", true },
{ "getlawyered.com.au", true },
{ "getmango.com", true },
{ "getmdl.io", true },
{ "getmerch.eu", true },
- { "getmovil.com", true },
+ { "getmovil.com", false },
{ "getnib.com", true },
{ "getnikola.com", true },
- { "getoutofdebt.org", true },
{ "getpagespeed.com", true },
{ "getpanelapp.com", true },
{ "getpei.com", true },
- { "getprivacy.de", true },
- { "getprivacy.net", true },
{ "getpublii.com", true },
{ "getpuck.com", true },
{ "getrambling.com", true },
@@ -16244,14 +17961,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "getsecure.nl", true },
{ "getsensibill.com", true },
{ "getsetbounce.co.uk", true },
- { "getsilknow.com", true },
{ "getsmartaboutdrugs.gov", false },
{ "getsport.mobi", true },
- { "getswadeshi.com", true },
{ "getteamninja.com", true },
{ "getthefriendsyouwant.com", true },
{ "getticker.com", true },
- { "gettodoing.com", true },
+ { "gettok.com", true },
{ "gettopquality.com", true },
{ "getupandbounce.co.uk", true },
{ "getvdownloader.com", true },
@@ -16267,7 +17982,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gfast.ru", true },
{ "gfcleisure.co.uk", true },
{ "gfe.li", true },
- { "gfe.link", true },
+ { "gfedating.com", true },
{ "gfelite.de", true },
{ "gfestival.fo", true },
{ "gfk-kunststoff-luebben.de", true },
@@ -16276,7 +17991,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gfnetfun.cf", true },
{ "gforce.ninja", true },
{ "gfoss.eu", true },
+ { "gfourmis.co", true },
{ "gfxbench.com", true },
+ { "gg5197.co", true },
+ { "gg6729.co", true },
+ { "gg6729.com", true },
+ { "gg6957.co", true },
+ { "gg9297.co", true },
+ { "gg9397.com", true },
+ { "gg9721.com", true },
+ { "gg9728.co", true },
+ { "ggbet.me", true },
{ "ggdcpt.com", true },
{ "gginin.today", true },
{ "ggl-luzern.ch", true },
@@ -16287,24 +18012,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ggs.jp", true },
{ "ggservers.com", true },
{ "ggx.us", true },
+ { "gh-sandanski.com", true },
{ "gha.st", true },
{ "ghettonetflix.de", true },
{ "ghfip.com.au", true },
{ "ghini.com", true },
{ "ghislainphu.fr", true },
- { "ghost-legion.com", true },
- { "ghostblog.info", false },
{ "ghostcir.com", true },
- { "ghou.me", true },
{ "ghowell.io", true },
- { "ghrelinblocker.info", true },
- { "ghrelinblocker.org", true },
{ "ghuntley.com", false },
{ "giac.org", true },
- { "giacomodrago.com", true },
- { "giacomodrago.it", true },
{ "giacomopelagatti.it", true },
- { "giaithich.net", true },
{ "giakki.eu", false },
{ "giannademartini.com", true },
{ "gianproperties.com", true },
@@ -16313,45 +18031,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gianttree.de", true },
{ "giardinaggio.milano.it", true },
{ "giardinaggio.napoli.it", true },
+ { "giardiniblog.it", true },
{ "giardiniere.bologna.it", true },
{ "giardiniere.milano.it", true },
+ { "giardiniere.roma.it", true },
{ "gichigamigames.com", true },
{ "gidari.shop", true },
{ "giebel.it", true },
+ { "giemall.com", true },
{ "gierds.de", true },
{ "giethoorn.com", true },
{ "gietvloergarant.nl", false },
+ { "gifino.fr", true },
{ "giftcard.net", true },
{ "giftcardgranny.com", true },
{ "giftedconsortium.com", true },
{ "giftking.nl", false },
{ "giftlist.guru", true },
{ "giftmaniabrilhos.com.br", true },
- { "gifts.best", true },
{ "gifts365.co.uk", true },
{ "giftya.com", true },
{ "gifudodo.com", true },
{ "gig-raiffeisen.de", true },
{ "giga.nl", true },
- { "gigabitz.pw", true },
+ { "gigabitz.pw", false },
{ "gigacog.com", true },
{ "gigantism.com", true },
- { "gigawa.lt", true },
{ "giggletotz.co.uk", true },
{ "gigin.eu", true },
{ "gigin.me", true },
{ "gigis-pizzeria.de", true },
{ "gigis.cloud", true },
{ "giglink.club", true },
+ { "gigolodavid.be", true },
{ "gigseekr.com", true },
{ "gigtroll.eu", true },
{ "gijsbertus.com", true },
{ "gijswesterman.nl", true },
{ "gikovatelojavirtual.com.br", true },
- { "gilangcp.com", false },
+ { "gilangcp.com", true },
{ "gileadpac.com", true },
{ "giliamor.com", true },
- { "gillesdesnoyers.com", true },
{ "gillesmorelle.com", true },
{ "gillfamily.de", true },
{ "gillmanandsoame.co.uk", true },
@@ -16362,6 +18082,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gimme.money", true },
{ "gina-architektur.design", true },
{ "ginabaum.com", true },
+ { "ginen.xyz", true },
{ "gingersutton.com", true },
{ "ginionusedcars.be", true },
{ "ginja.co.th", true },
@@ -16372,7 +18093,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ginza-viola.com", true },
{ "ginzadelunch.jp", true },
{ "ginzaj.com", true },
- { "giochi-online.ws", true },
{ "giochiecodici.it", true },
{ "gioielleriamolena.com", true },
{ "gippert-klein.de", true },
@@ -16382,24 +18102,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "giri.co", true },
{ "girlan.net", true },
{ "girlsforum.com", true },
- { "girlsgenerationgoods.com", true },
+ { "girlsnet.work", true },
{ "girlz.jp", true },
{ "girsa.org", true },
{ "girvas.ru", true },
+ { "gisac.org", true },
{ "gisch.tk", true },
- { "gisgov.be", true },
{ "gisher.news", true },
{ "gisher.org", true },
{ "gisher.video", true },
{ "gishiko.net", true },
{ "gistr.io", true },
- { "git.market", true },
+ { "git.market", false },
+ { "git.org.il", true },
{ "git.sb", true },
{ "git.tt", true },
+ { "gitecolombedesbois.com", true },
{ "gitep.org.uk", true },
{ "gites-alizea.com", true },
{ "gitesdeshautescourennes.com", true },
{ "github.com", true },
+ { "githubapp.com", true },
{ "githubber.com", true },
{ "githubber.tv", true },
{ "gitla.in", true },
@@ -16407,20 +18130,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gittigidiyor.com", true },
{ "gittr.ch", true },
{ "giuem.com", true },
- { "giulianosdeli.com", true },
{ "giunchi.net", true },
{ "giuseppemacario.men", true },
+ { "give.net", true },
{ "give2charity.co", true },
{ "give2charityapp.com", true },
{ "giveattheoffice.org", false },
{ "giveaways.ph", true },
- { "giveme.online", true },
{ "given2.com", true },
+ { "giveoneup.org", true },
{ "givesunlight.com", true },
{ "givingnexus.org", false },
{ "givingtools.com", true },
{ "gixtools.com", true },
{ "gixtools.net", true },
+ { "gizmo.ovh", true },
{ "gj-bochum.de", true },
{ "gjcampbell.co.uk", true },
{ "gjengset.com", true },
@@ -16428,10 +18152,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gkoenig-innenausbau.de", true },
{ "gkralik.eu", true },
{ "gl.search.yahoo.com", false },
- { "gla-hyperloop.com", false },
+ { "gla-hyperloop.com", true },
{ "glaciernursery.com", true },
- { "gladiatorboost.com", true },
+ { "gladdy.co.uk", true },
+ { "gladdy.uk", true },
+ { "gladdymedia.co.uk", true },
+ { "gladdymedia.com", true },
+ { "gladdymedia.uk", true },
+ { "gladiac.duckdns.org", true },
{ "gladwellentertainments.co.uk", true },
+ { "gladysstrickland.com", true },
{ "glahcks.com", true },
{ "glamguru.co.il", true },
{ "glamguru.world", true },
@@ -16442,16 +18172,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "glasen-hardt.de", true },
{ "glasfaser-im-hanseviertel.de", true },
{ "glasgestaltung.biz", true },
- { "glasner.photo", true },
- { "glass-mag.eu", true },
+ { "glaspe.com", true },
{ "glass.google.com", true },
{ "glasschmuck-millefiori.de", true },
+ { "glassemployees.com", true },
{ "glassexpertswa.com", true },
{ "glassrainbowtrust.org.je", true },
{ "glassrom.pw", true },
{ "glasweld.com", true },
{ "glavsudexpertiza.ru", true },
- { "glazedmag.fr", true },
{ "glcastlekings.co.uk", true },
{ "gleanview.com", true },
{ "gleich-aluminium-shop.de", true },
@@ -16460,24 +18189,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "glendarraghbouncycastles.co.uk", true },
{ "glenhuntlyapartments.com.au", true },
{ "glenshere.com", true },
- { "glevolution.com", true },
{ "glidingshop.cz", true },
{ "glidingshop.de", true },
{ "glidingshop.eu", true },
{ "glitzerstuecke.de", true },
{ "glixee.com", true },
{ "glloq.org", true },
- { "glob-coin.com", true },
{ "global-adult-webcams.com", true },
- { "global-lights.ma", true },
{ "global-office.com", true },
{ "global-village.koeln", true },
+ { "globalbano.com", true },
+ { "globalbridge-japan.com", true },
{ "globalcanineregistry.com", true },
{ "globalchokepoints.org", true },
{ "globalcomix.com", true },
{ "globalgovernancewatch.org", true },
{ "globalhealth.gov", true },
+ { "globalhealthstrategiesnetwork.com", true },
+ { "globalhealthstrategiesnetwork.info", true },
+ { "globalhealthstrategiesnetwork.net", true },
+ { "globalhealthstrategiesnetwork.org", true },
{ "globalhorses.de", true },
+ { "globalinvestigations.co.uk", true },
{ "globalipaction.ch", true },
{ "globalisierung-fakten.de", true },
{ "globalitac.com", true },
@@ -16488,21 +18221,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "globalresearchcouncil.org", true },
{ "globalresistancecorporation.com", true },
{ "globalventil.com", true },
- { "globcoin.io", true },
+ { "globalwitness.org", true },
+ { "globe-flight.de", true },
+ { "globecollege.nl", true },
{ "globelink-group.com", true },
+ { "globologic.com", true },
{ "glocalworks.jp", true },
+ { "gloeckle-gruppe.de", true },
{ "glofox.com", true },
{ "glolighting.co.za", true },
{ "gloneta.com", false },
{ "gloning.name", true },
{ "glont.net", true },
{ "gloria.tv", true },
+ { "gloryholefucking.com", true },
{ "glosiko.com", true },
{ "glotech.co.uk", true },
{ "glotechkitchens.co.uk", true },
{ "glotechrepairs.co.uk", true },
- { "glu3cifer.rocks", true },
- { "glueck-im-norden.de", true },
+ { "gloucestershiregospelpartnership.org.uk", true },
{ "gluecksgriff-taschen.de", true },
{ "glueckskindter.de", true },
{ "gluedtomusic.com", true },
@@ -16511,6 +18248,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "glutenfreevr.com", true },
{ "glykofridis.nl", true },
{ "glyph.ws", true },
+ { "glyptodon.com", true },
{ "glyxins.com", true },
{ "gm-net.jp", true },
{ "gm.search.yahoo.com", false },
@@ -16522,13 +18260,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gmcd.co", true },
{ "gmdu.net", true },
{ "gme.one", true },
- { "gmind.ovh", true },
{ "gmod.de", true },
{ "gmpark.dk", true },
{ "gmpartsdb.com", true },
{ "gmslparking.co.uk", true },
{ "gmta.nl", true },
{ "gmtplus.co.za", true },
+ { "gmuh.fr", true },
{ "gmw-hannover.de", true },
{ "gmw-ingenieurbuero.de", true },
{ "gmx.at", true },
@@ -16540,17 +18278,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gmx.fr", true },
{ "gmx.net", true },
{ "gn00.com", true },
- { "gn00.ink", true },
{ "gnax.jp", false },
{ "gndh.net", true },
{ "gnetion.com", true },
{ "gnetwork.eu", true },
{ "gnfrazier.me", true },
- { "gnilebein.de", true },
{ "gnk.io", true },
- { "gnuand.me", true },
{ "gnucashtoqif.us", true },
- { "gnunet.org", true },
{ "gnwp.eu", true },
{ "go-dutch.eu", true },
{ "go-embedded.de", true },
@@ -16567,15 +18301,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "goanalyse.co.uk", true },
{ "goand.run", true },
{ "goarmy.eu", true },
- { "goatbot.xyz", true },
{ "goatcloud.com", true },
{ "gobarrelroll.com", true },
{ "gobouncy.co.uk", true },
{ "gobouncy.com", true },
- { "gobranding.com.vn", true },
+ { "gobytedesign.co.uk", true },
+ { "gocardless.com", true },
{ "gocher.me", true },
{ "gochu.se", true },
{ "gocleanerslondon.co.uk", true },
+ { "gocphongthuy.net", true },
{ "god-clan.hu", true },
{ "godattributes.com", true },
{ "godaxen.tv", true },
@@ -16583,13 +18318,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "godesigner.ru", true },
{ "godsofhell.com", true },
{ "godsofhell.de", true },
+ { "goeb.eu", true },
+ { "goeb.org", true },
{ "goededoelkerstkaarten.nl", true },
{ "goedkoopstecartridges.nl", true },
{ "goedkopecartridgeskopen.nl", true },
- { "goedkopelaptopshardenberg.nl", true },
{ "goedkopeonesies.nl", true },
{ "goedkopetonerkopen.nl", true },
{ "goedverzekerd.net", true },
+ { "goehler-baumpflege.de", true },
{ "goemail.me", true },
{ "goerlitz-zgorzelec.org", true },
{ "goerres2014.de", true },
@@ -16616,16 +18353,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "golang.org", true },
{ "golang.zone", true },
{ "golangnews.com", true },
- { "gold24.ru", true },
+ { "goldclubcasino.com", true },
+ { "goldcoast-plumbing.com.au", true },
{ "goldcoastasian.com", true },
{ "goldcoasthypnotherapyhypnosis.com.au", true },
{ "goldcoastphotographycourses.com", true },
{ "goldcoaststumpbusters.com", true },
- { "goldegg-training.com", false },
{ "goldenbadger.de", true },
{ "goldendawnapersonalaffair.com", true },
{ "goldenhillsoftware.com", true },
- { "goldenhost.ca", true },
+ { "goldenhost.ca", false },
{ "goldenmonrepos.com", true },
{ "goldenplate.com.sg", true },
{ "goldenruleemail.com", true },
@@ -16635,6 +18372,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "goldsecurity.com", true },
{ "goldsilver.org.ua", true },
{ "goldstein.tel", true },
+ { "goldsteinlawgroup.com", true },
{ "goldytechspecialists.com", true },
{ "golf18network.com", true },
{ "golf18staging.com", true },
@@ -16647,14 +18385,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "golser-schuh.at", true },
{ "golser.info", true },
{ "gomasy.jp", true },
+ { "gomedium.com", true },
{ "gomel.chat", true },
{ "gomel.city", true },
{ "gomelchat.com", true },
{ "gomelphoto.com", true },
- { "gomena.io", true },
{ "gommista.roma.it", true },
{ "gondawa.com", true },
{ "gondelvaartdwarsgracht.nl", true },
+ { "gondola-parkinson.com", true },
{ "gongjianwei.com", true },
{ "gongjuhao.com", true },
{ "gonx.dk", false },
@@ -16663,31 +18402,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "good-tips.pro", true },
{ "good588.com", true },
{ "gooday.life", true },
+ { "gooddayatwork.co.uk", true },
{ "goodhealthtv.com", true },
+ { "goodiesoft.hu", false },
{ "goodiesoftware.xyz", true },
{ "goodquote.gq", true },
{ "goodryb.top", true },
{ "goodshepherdmv.com", true },
{ "goodth.ink", true },
+ { "goodvibesblog.com", true },
{ "google", true },
{ "google-analytics.com", true },
{ "googleandroid.cz", true },
{ "googlemail.com", false },
{ "googleplex.com", true },
+ { "googleshortcuts.org", true },
{ "googlesource.com", true },
{ "goombi.fr", true },
{ "goonersworld.co.uk", true },
+ { "goonfleet.com", true },
{ "goooo.info", true },
{ "goover.de", true },
{ "goow.in", true },
{ "goozp.com", true },
{ "gopher.tk", true },
{ "gophoto.it", true },
- { "goplex.com.au", true },
+ { "goprimal.eu", true },
{ "goproallaccess.com", true },
{ "goproinspectiongroup.com", true },
{ "goquiq.com", true },
{ "gordeijnsbouw.nl", true },
+ { "gordonchevy.com", true },
{ "gordonobrecht.com", true },
{ "gordonscouts.com.au", true },
{ "gorealya.com", true },
@@ -16696,19 +18441,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gorgias.me", true },
{ "gorky.media", true },
{ "gorn.ch", true },
- { "goru.travel", true },
+ { "gornergrat-kulm.ch", true },
{ "gosccs.com", true },
- { "gosciencegirls.com", true },
{ "gosforthdentalsurgery.co.uk", true },
{ "goshawkdb.io", true },
{ "goshin-group.co.jp", true },
+ { "goshow.tv", true },
{ "gosnipe.com", true },
{ "gosolockpicks.com", true },
{ "gospelfollower.com", true },
- { "gospelofmark.ch", true },
{ "gospelvestcination.de", true },
+ { "gosportweather.co.uk", true },
{ "gostaffer.com", true },
- { "gostest.org", false },
+ { "gostargazing.co.uk", true },
{ "gosu.pro", true },
{ "gosuland.org", true },
{ "got-tty.de", true },
@@ -16720,16 +18465,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gotmalk.org", false },
{ "goto.google.com", true },
{ "goto.msk.ru", true },
- { "goto.world", true },
{ "goto10.se", true },
- { "gotomi.info", true },
+ { "gotomi.info", false },
{ "gotowned.org", false },
{ "gotoxy.at", true },
{ "gotrail.fr", true },
+ { "gotrek.com.au", true },
{ "gottcode.org", false },
- { "gottfridsberg.org", true },
{ "goudenharynck.be", true },
- { "goufaan.com", true },
{ "gouforit.com", true },
{ "gouldcooksey.com", true },
{ "goup.co", true },
@@ -16737,48 +18480,51 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gouptime.ml", true },
{ "gourmetfestival.de", true },
{ "gourmetspalencia.com", true },
- { "gov.tc", true },
+ { "gov.uk", false },
{ "governmentjobs.gov", true },
{ "governorhub.com", true },
{ "govisitcostarica.co.cr", true },
{ "govisitcostarica.com", true },
+ { "govloans.gov", true },
+ { "govsurvey.us", true },
{ "govtjobs.blog", true },
- { "govtrack.us", true },
{ "govype.com", true },
{ "gow220.ru", true },
{ "gowancommunications.com", true },
- { "gowe.wang", false },
+ { "goweraesthetics.co.uk", true },
{ "gowildrodeo.co.uk", true },
{ "gowithflo.de", true },
{ "gozenhost.com", true },
+ { "gpalabs.com", true },
+ { "gpccp.cc", true },
{ "gpcsolutions.fr", true },
{ "gpdimaranathasiantar.org", false },
{ "gpgscoins.com", true },
{ "gplans.us", true },
{ "gpm.ltd", true },
{ "gprs.uk.com", true },
- { "gpscamera.nl", true },
{ "gpsolarpanels.com", true },
{ "gpsvideocanada.com", true },
+ { "gpu.nu", true },
{ "gpureport.cz", true },
{ "gpws.ovh", true },
{ "gpyy.net", true },
{ "gqmstore.com.br", true },
{ "gr.search.yahoo.com", false },
- { "gra2.com", true },
+ { "gr8engineer2b.com", true },
{ "graandco.com", false },
{ "graasp.net", false },
{ "grabacabpa.com", true },
+ { "grabadolasermonterrey.com", true },
+ { "grabatt.de", true },
{ "grace-wan.com", true },
{ "gracebaking.com", false },
{ "gracedays.org", true },
{ "gracethrufaith.com", true },
{ "gracetini.com", true },
- { "graciousmay.com", true },
{ "gradecam.com", false },
{ "gradienthosting.co.uk", true },
{ "gradients.com", true },
- { "gradingcontractornc.com", true },
{ "gradualgram.com", true },
{ "graeber.com", true },
{ "graecum.org", true },
@@ -16798,11 +18544,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grailify.com", true },
{ "graingert.co.uk", true },
{ "graliv.net", false },
- { "gram.tips", true },
{ "gramati.com.br", true },
{ "grammysgrid.com", true },
{ "granary-demo.appspot.com", false },
- { "grancellconsulting.com", true },
{ "grandcafecineac.nl", true },
{ "grandcafetwist.nl", true },
{ "grandcapital.cn", true },
@@ -16812,23 +18556,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grandcastles.co.uk", true },
{ "grandchene.ch", true },
{ "grande.coffee", true },
- { "grandefratellonews.com", true },
{ "grandeto.com", true },
{ "grandjunctionbrewing.com", true },
{ "grandmusiccentral.com.au", true },
{ "grandpadusercontent.com", true },
{ "grandwailea.com", true },
+ { "grandworldnghiduong.com", true },
{ "granfort.es", false },
{ "granishe.com", true },
{ "graniteind.com", true },
{ "grannys-stats.com", true },
{ "grannyshouse.de", true },
{ "grantcooper.com", true },
- { "grantdb.ca", true },
{ "grantmorrison.net", true },
{ "grantplatform.com", true },
{ "grantsplatform.com", true },
- { "granular.ag", true },
{ "graonatural.com.br", true },
{ "grapee.jp", true },
{ "grapeintentions.com", true },
@@ -16836,6 +18578,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "graph.org", true },
{ "graphcommons.com", true },
{ "graphene.software", true },
+ { "grapheneos.org", true },
{ "graphic-schools.com", true },
{ "graphic-shot.com", true },
{ "graphobyte.com", true },
@@ -16854,6 +18597,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grasshoppervape.com", true },
{ "grasso.io", true },
{ "grassreinforcement.com.au", true },
+ { "gratis.market", true },
{ "gratisgamecards.nl", true },
{ "gratisrollenspieltag.de", true },
{ "gratiswifivoorjegasten.nl", true },
@@ -16862,7 +18606,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "graumeier.de", true },
{ "gravilink.com", true },
{ "gravitascreative.net", true },
- { "gravitechthai.com", true },
{ "gravity-inc.net", true },
{ "gravityformspdfextended.com", true },
{ "gravitypdf.com", true },
@@ -16876,16 +18619,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grayson.sh", true },
{ "graz2020.com", true },
{ "grazieitalian.com", true },
+ { "grazitti.com", true },
{ "grc.com", false },
{ "greatagain.gov", true },
+ { "greaterlowellpediatrics.com", true },
{ "greatestwebsiteonearth.com", true },
{ "greatfire.org", true },
{ "greathairtransplants.com", true },
- { "greathosts.biz", true },
{ "greatislandarts.ca", true },
{ "greatlakeside.de", true },
{ "greatlifeinsurancegroup.com", true },
{ "greatskillchecks.com", true },
+ { "greatwebdesign.uk", true },
{ "greboid.co.uk", true },
{ "greboid.com", true },
{ "greek.dating", true },
@@ -16898,11 +18643,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "green-light.ga", true },
{ "green-light.gq", true },
{ "green-light.ml", true },
+ { "green-techno.ru", true },
{ "greenaddress.it", true },
{ "greenapproach.ca", true },
{ "greencircleplantnursery.com.au", true },
{ "greencircleplantnursery.net.au", true },
{ "greener.pl", true },
+ { "greengorych.ru", true },
{ "greenhats.de", true },
{ "greenliquidsystem.com", true },
{ "greenliv.pl", true },
@@ -16911,28 +18658,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "greenoutdoor.dk", false },
{ "greenpanda.de", true },
{ "greenpartyofnewmilford.org", true },
- { "greenpaws.ee", true },
{ "greenpeace-magazin.de", true },
{ "greenpeace.berlin", true },
+ { "greenponik.com", true },
{ "greenroach.ru", true },
{ "greenrushdaily.com", true },
{ "greensborosecuritycameras.com", true },
{ "greensdictofslang.com", true },
{ "greensquare.tk", true },
{ "greenteamtwente.nl", true },
- { "greenwaylog.net", true },
{ "greenwithdecor.com", true },
- { "greer.ru", true },
{ "greg.red", true },
{ "gregbrimble.com", true },
{ "greger.me", true },
{ "gregmilton.com", true },
{ "gregmote.com", true },
- { "grego.pt", true },
{ "gregoirow.be", true },
{ "gregorians.org", true },
{ "gregorkofler.com", true },
{ "gregory-kramer.fr", true },
+ { "gregory-thibault.com", true },
{ "gregorykelleher.com", true },
{ "gregoryrealestategroup.com", true },
{ "gregorywiest.com", true },
@@ -16946,11 +18691,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grepmaste.rs", true },
{ "grepular.com", true },
{ "gresak.io", true },
+ { "greta-birkner.de", true },
{ "grexx.co.uk", true },
{ "grexx.de", true },
{ "grexx.nl", true },
{ "grey.house", true },
- { "greybeards.ca", true },
+ { "greyhash.se", true },
{ "greymattertechs.com", true },
{ "greysky.me", true },
{ "greyskymedia.com", true },
@@ -16960,20 +18706,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grh.am", true },
{ "griassdi-reseller.de", true },
{ "gricargo.com", true },
+ { "grid.studio", true },
{ "gridle.io", true },
+ { "gridpack.org", true },
{ "gridsmartercities.com", true },
{ "griechische-pfoetchen.de", true },
{ "griefheart.com", true },
{ "grieg-gaarden.no", true },
- { "grieg.com", true },
- { "grieg.net", true },
- { "grieg.no", true },
- { "grieg.org", true },
+ { "grieg.no", false },
{ "griegfoundation.no", true },
{ "grieglogistics.no", true },
{ "griegshipbrokers.com", true },
{ "griegshipbrokers.no", true },
+ { "grienenberger.eu", true },
{ "griesser2.de", true },
+ { "grifomarchetti.com", true },
{ "grillen-darf-nicht-gesund-sein.de", true },
{ "grillhutsunderland.com", true },
{ "grillteller42.de", true },
@@ -16981,14 +18728,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grimm-gastrobedarf.de", true },
{ "grimneko.de", true },
{ "grimstveit.no", true },
+ { "grinnellplanes.com", true },
{ "grinnellplans.com", true },
- { "grippe-impftermin.de", true },
{ "gritte.ch", true },
- { "grmp.fr", true },
+ { "grizzlys.com", true },
{ "grocerybuild.com", true },
{ "grocock.me.uk", true },
{ "groenaquasolutions.nl", true },
- { "groenewoud.me", true },
{ "groentebesteld.nl", true },
{ "groenteclub.nl", true },
{ "groepjam-usedcars.be", true },
@@ -16998,21 +18744,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grolimur.ch", true },
{ "gronau-it-cloud-computing.de", true },
{ "grondius.com", true },
- { "groomershop.ru", true },
+ { "groomershop.ru", false },
{ "groomscroft.co.uk", true },
{ "groomscroft.com", true },
{ "grootinadvies.nl", true },
{ "groovydisk.com", true },
{ "groovygoldfish.org", true },
{ "gropp.org", true },
+ { "grosdebit.com", true },
+ { "gross-gerau-hausarzt.de", true },
{ "gross.business", true },
- { "grossberger-ge.org", true },
+ { "grossberger-ge.org", false },
+ { "grossiste-en-ligne.com", true },
{ "groszek.pl", true },
{ "groth.im", true },
{ "groth.xyz", true },
{ "grothoff.org", true },
{ "grottenthaler.eu", true },
- { "groundlevelup.com", true },
{ "groundmc.net", true },
{ "groundthumpingmotors.com", true },
{ "groundthumpingmotors.net", true },
@@ -17025,6 +18773,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grouphomes.com.au", false },
{ "groupme.com", true },
{ "groups.google.com", true },
+ { "groupseslogistic.com", true },
{ "grove-archiv.de", true },
{ "growingallthings.co.uk", true },
{ "growit.events", true },
@@ -17046,23 +18795,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grundlage.com.ua", true },
{ "grunwaldzki.center", true },
{ "grunwasser.fr", true },
+ { "gruper.mk", true },
{ "grupodatco.com", true },
{ "grupomakben.com", true },
{ "grupomedlegal.com", true },
{ "grupoparco.com", true },
{ "grupoproabienesraices.com.mx", true },
- { "gruselgrotte.com", true },
{ "grusenmeyer.be", true },
{ "grusig-geil.ch", true },
{ "gruver.de", true },
{ "gruwa.net", true },
+ { "gs1pt.org", 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 },
@@ -17075,7 +18824,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gtdgo.com", false },
{ "gtlaun.ch", true },
{ "gtlfsonlinepay.com", true },
- { "gtmasterclub.it", false },
{ "gtmetrix.com", true },
{ "gtn-pravda.ru", true },
{ "gtoepfer.de", true },
@@ -17086,20 +18834,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gtxbbs.com", true },
{ "gtxmail.de", true },
{ "guadagnare.info", true },
- { "guajars.cl", true },
- { "guannan.net.cn", true },
+ { "guadalgrass.com", true },
{ "guanyembadalona.org", true },
{ "guanzhong.ca", true },
{ "guardian360.nl", true },
{ "guardianportal.us", true },
{ "guardianproject.info", true },
- { "guardiansoftheearth.org", true },
{ "gubagoo.com", true },
{ "gubagoo.io", true },
{ "gudini.net", true },
{ "gudrunfit.dk", true },
{ "guegan.de", true },
- { "guelo.ch", true },
{ "guenthereder.at", true },
{ "guenthernoack.de", true },
{ "guerard.info", true },
@@ -17110,9 +18855,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gueze-sas.fr", true },
{ "guffr.it", true },
{ "guge.ch", true },
- { "guhei.net", true },
{ "guhenry3.tk", true },
{ "guiacidade.com.br", true },
+ { "guiadamassagem.site", true },
+ { "guiaextra.com", true },
{ "guiaswow.com", true },
{ "guichet-entreprises.fr", true },
{ "guichet-qualifications.fr", true },
@@ -17121,42 +18867,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "guida.org", true },
{ "guide-peche-cantal.com", true },
{ "guidebook.co.tz", true },
- { "guidedselling.net", true },
{ "guidedsteps.com", true },
{ "guideline.gov", false },
{ "guidelines.gov", false },
{ "guideo.ch", true },
{ "guidepointsecurity.com", true },
- { "guides-peche64.com", true },
+ { "guidesacademe.com", true },
{ "guidetoiceland.is", false },
+ { "guildbase.de", true },
{ "guildofmusicsupervisors.co.uk", true },
{ "guillaume-briand.fr", true },
{ "guillaumeperrin.io", true },
- { "guillemaud.me", true },
+ { "guillemaud.me", false },
{ "guim.co.uk", true },
{ "guineapigmustach.es", true },
- { "guishem.com", true },
{ "guitarvolume.com", true },
{ "gulchuk.com", true },
- { "gulenbase.no", true },
{ "gulfstream.ru", true },
{ "gulshankumar.net", true },
{ "gume4you.com", true },
{ "gumeyamall.jp", true },
{ "gumi.ca", true },
+ { "gummientchen.net", true },
{ "gunauc.net", true },
- { "gunceloyunhileleri.com", true },
+ { "gunbrig.com", true },
{ "gunn.ee", true },
- { "gunsofshadowvalley.com", true },
{ "gunwatch.co.uk", true },
{ "gunworld.com.au", true },
+ { "gunz.net", true },
{ "guochang.xyz", true },
{ "guodong.net", true },
+ { "guohuageng.com", true },
{ "guoke.com", true },
{ "guolaw.ca", true },
{ "guoliang.me", true },
{ "guozeyu.com", true },
{ "gupfen.ch", true },
+ { "guphi.net", false },
{ "gurkan.in", true },
{ "gurmel.ru", true },
{ "gurpusmaximus.com", true },
@@ -17167,7 +18914,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gururi.com", true },
{ "gus.host", true },
{ "gustaff.de", true },
- { "gustom.io", true },
{ "gut8er.com.de", true },
{ "gutools.co.uk", true },
{ "guts.me", true },
@@ -17177,29 +18923,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "guus-thijssen.nl", true },
{ "guusvandewal.nl", true },
{ "guyeskens.be", true },
+ { "guysauto.com", true },
+ { "guytarrant.co.uk", true },
{ "gv-neumann.de", true },
{ "gv-salto.nl", true },
{ "gvatas.in", true },
{ "gvc-it.tk", true },
{ "gveh.de", true },
{ "gvi-timing.ch", true },
- { "gviedu.com", true },
{ "gvitiming.ch", true },
{ "gvobgyn.ca", true },
{ "gvoetbaldagenalcides.nl", true },
{ "gvt2.com", true },
{ "gvt3.com", true },
+ { "gvwgroup.cloud", true },
{ "gvwgroup.com", true },
{ "gw2efficiency.com", true },
{ "gw2treasures.com", true },
{ "gw2zone.net", true },
{ "gwerder.net", true },
{ "gwhois.org", true },
+ { "gwilken.com", true },
+ { "gwo24.pl", true },
{ "gwrtech.com", true },
{ "gwsec.co.uk", true },
- { "gx3.cn", true },
+ { "gwynfryncottages.com", true },
{ "gxmyqy.net", true },
- { "gyara.moe", true },
{ "gyas.nl", true },
{ "gymagine.ch", true },
{ "gymbunny.de", true },
@@ -17211,51 +18960,58 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gympap.de", true },
{ "gynaecology.co", true },
{ "gynoguide.com", true },
+ { "gyoza.beer", true },
{ "gypsyreel.com", true },
{ "gyre.ch", true },
{ "gyrenens.ch", true },
{ "gyu-raku.jp", true },
{ "gyulakerezsi.ro", true },
- { "gyume.ir", true },
{ "gz-architekten.de", true },
{ "gz-benz.com", true },
{ "gz-bmw.com", true },
{ "gza.jp", true },
{ "gzom.ru", true },
{ "gzriedstadt.de", true },
+ { "h-ealthy.net", true },
{ "h-jo.net", true },
- { "h-suppo.com", true },
{ "h001.ru", true },
{ "h09.eu", true },
- { "h0r.st", true },
{ "h10l.com", true },
{ "h11.io", false },
- { "h11.moe", true },
{ "h1ctf.com", true },
{ "h1z1swap.com", true },
{ "h24.org", true },
+ { "h2b.me", true },
+ { "h2rul.eu", true },
{ "h2s-design.de", true },
{ "h2u.tv", true },
- { "h33t.xyz", true },
{ "h3artbl33d.nl", true },
{ "h3b.nl", true },
{ "h3x.net", true },
{ "h3z.jp", true },
{ "h404bi.com", true },
+ { "h5197.co", true },
+ { "h6729.co", true },
+ { "h6729.com", true },
+ { "h6957.co", true },
+ { "h9297.co", true },
+ { "h9397.com", true },
+ { "h9728.co", true },
{ "ha-kunamatata.de", true },
+ { "ha.com", true },
{ "ha3.eu", true },
{ "ha6.ru", true },
- { "haancommunity.cf", true },
+ { "haaksmadehaanuitvaart.nl", true },
+ { "haarigerrattenarsch.com", true },
{ "haarlemsesaxofoonschool.nl", true },
+ { "haarstudiok99.nl", true },
{ "haavard.me", true },
{ "haazen.xyz", true },
{ "habarisoft.com", true },
- { "habbig.cc", true },
{ "haberer.me", true },
{ "habitat-domotique.fr", true },
{ "habr.com", true },
{ "habtium.es", true },
- { "habview.net", true },
{ "hacc.top", true },
{ "haccp.bergamo.it", true },
{ "haccp.milano.it", true },
@@ -17265,12 +19021,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hachre.de", false },
{ "hack.club", true },
{ "hackademix.net", true },
+ { "hackadena.com", true },
{ "hackanders.com", true },
{ "hackattack.com", true },
{ "hackbarth.guru", true },
{ "hackbeil.name", true },
{ "hackcraft.net", true },
- { "hackdown.me", true },
+ { "hackdown.org", true },
+ { "hackendoz.com", true },
{ "hackenkunjeleren.nl", true },
{ "hackenturet.dk", true },
{ "hacker.club", true },
@@ -17280,6 +19038,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hacker.parts", true },
{ "hacker1.com", true },
{ "hacker101.com", true },
+ { "hacker8.cn", false },
{ "hackerchai.com", true },
{ "hackereyes.com", true },
{ "hackergateway.com", true },
@@ -17289,21 +19048,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hackerone.at", true },
{ "hackerone.blog", true },
{ "hackerone.com", true },
+ { "hackerone.events", true },
{ "hackerone.net", true },
{ "hackerone.org", true },
{ "hackerschat.net", true },
- { "hackettrecipes.com", true },
{ "hackgins.com", true },
+ { "hackhouse.sh", true },
{ "hackingand.coffee", false },
{ "hackingdh.com", true },
{ "hackingondemand.com", true },
{ "hackmd.io", true },
{ "hackmeimfamo.us", true },
{ "hackreone.com", true },
- { "hacksecu.re", true },
{ "hacksoc.co.uk", true },
{ "hackthissite.org", true },
{ "hacktivis.me", true },
+ { "hacktober.dk", true },
{ "hackworx.com", false },
{ "hadaly.fr", true },
{ "hadleighswimmingclub.co.uk", true },
@@ -17318,11 +19078,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "haferman.net", true },
{ "haferman.org", true },
{ "hafniatimes.com", true },
+ { "hag27.com", true },
{ "haggeluring.su", true },
{ "hagiati.gr", true },
{ "hagier.pl", true },
+ { "hagskold.se", true },
{ "hagueaustralia.com.au", true },
{ "haha-raku.com", true },
+ { "haha.nl", true },
{ "hahay.es", true },
{ "haibara.top", true },
{ "haiboxu.com", true },
@@ -17330,7 +19093,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hailstorm.nl", true },
{ "haim.bio", true },
{ "haimablog.ooo", true },
- { "hairbeautyartists.it", true },
{ "haircrazy.com", true },
{ "hairplaybychenellekay.com", false },
{ "hairraisingphotobooths.co.uk", true },
@@ -17340,24 +19102,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hajekj.com", true },
{ "hajekj.cz", true },
{ "hajekj.net", true },
- { "hajnzic.at", true },
- { "hak5.org", true },
- { "hakans.science", true },
+ { "haju.fi", true },
+ { "haka.se", true },
{ "hakaru.org", true },
- { "hakase.io", true },
{ "hakase.pw", true },
{ "hakatabijin-mind.com", true },
{ "hake.me", true },
- { "hakkasangroup.com", true },
{ "hakkasannightclub.com", true },
+ { "hakurei.moe", true },
{ "halacs.hu", true },
+ { "halbich.design", true },
{ "haleo.net", true },
{ "half.host", true },
{ "halfhosting.de", true },
+ { "halihali.cc", true },
+ { "halihali.tv", true },
{ "halitopuroprodutos.com.br", true },
{ "halkirkbouncycastles.co.uk", true },
{ "hallelujahsoftware.com", true },
- { "hallettxn.com", true },
+ { "halletienne.fr", true },
{ "hallhuber.com", true },
{ "halliday.work", true },
{ "halligladen.de", true },
@@ -17375,18 +19138,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hambassadors.org", true },
{ "hamburg40grad.de", true },
{ "hamburgerbesteld.nl", true },
+ { "hamburgobgyn.com", true },
{ "hamcocc.com", true },
{ "hamcram.io", true },
{ "hamiltonlinen.com", true },
{ "hamiltonmedical.nl", true },
+ { "hamiltonweather.ca", true },
+ { "hammer-schnaps.com", true },
{ "hammer-sms.com", true },
{ "hampl.tv", true },
{ "hampshiretechservices.co.uk", true },
- { "hamsters-uk.org", true },
{ "hana.ondemand.com", true },
{ "hanakaraku.com", true },
{ "hanakatova.com", true },
- { "hanashi.eu", true },
+ { "hanazono.tokyo", true },
{ "hanbing.it", true },
{ "handbrake.fr", true },
{ "handcraft.eu.org", true },
@@ -17404,11 +19169,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "handysex.live", true },
{ "handyticket.de", true },
{ "hanfox.co.uk", false },
+ { "hanfverband-erfurt.de", true },
{ "hang333.moe", true },
{ "hangar.hosting", true },
{ "hangcapnach.com", true },
+ { "hangerphant.com", true },
+ { "hangout", true },
{ "hangouts.google.com", true },
{ "hangtenseo.com", true },
+ { "hangw.xyz", true },
+ { "hanjuapp.com", true },
{ "hankr.com", true },
{ "hanksacservice.com", true },
{ "hannah.link", true },
@@ -17416,6 +19186,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hannasecret.de", true },
{ "hannoluteijn.nl", true },
{ "hannover.de", true },
+ { "hannywbarek.com", true },
{ "hanpenblog.com", true },
{ "hansahome.ddns.net", true },
{ "hansashop.eu", true },
@@ -17424,6 +19195,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hanschventures.com", true },
{ "hansen-kronshagen.de", true },
{ "hansen.hn", true },
+ { "hansgoes.it", true },
+ { "hansgoes.nl", true },
+ { "hansgoesit.nl", true },
+ { "hansminten.com", true },
{ "hansmund.com", true },
{ "hansolrella.com", true },
{ "hansonian.com", true },
@@ -17432,34 +19207,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hantse.com", true },
{ "hanu.la", true },
{ "hanyibo.com", true },
- { "hanying6.com", true },
{ "hanzubon.jp", true },
{ "hao-zhang.com", true },
- { "haocq3.com", true },
{ "haogoodair.ca", true },
{ "haoqi.men", true },
- { "haorenka.cc", true },
+ { "haorenka.org", true },
{ "haozhang.org", true },
- { "haozhexie.com", true },
- { "haozi.me", true },
{ "hapheemraadssingel.nl", true },
- { "hapijs.cn", true },
- { "happndin.com", true },
+ { "hapimiennam.com", true },
+ { "haplogroup.org", true },
+ { "happist.com", true },
{ "happy-baby.info", true },
- { "happy-end-shukatsu.com", true },
{ "happy-life-food.de", true },
{ "happyagain.de", true },
{ "happyagain.se", true },
{ "happyandrelaxeddogs.eu", true },
- { "happybeerdaytome.com", true },
{ "happybirthdaywisher.com", true },
{ "happybounce.co.uk", true },
{ "happycarb.de", true },
- { "happycoder.net", false },
+ { "happychat.io", true },
+ { "happychungus.tk", true },
+ { "happycoder.net", true },
{ "happydietplan.com", true },
{ "happydoq.ch", true },
{ "happygadget.me", true },
- { "happyhealthylifestyle.com", true },
{ "happykidscastles.co.uk", true },
{ "happylifestyle.com", true },
{ "happyschnapper.com", true },
@@ -17482,17 +19253,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hardforum.com", true },
{ "hardh.at", true },
{ "hardhat.io", true },
- { "hardloopfysio.nl", true },
{ "hardrain980.com", true },
{ "hardtfrieden.de", true },
{ "hardwareschotte.de", true },
- { "harekaze.info", true },
{ "harelmallac.com", true },
{ "harelmallacglobal.com", true },
{ "haribilalic.com", true },
{ "harilova.fr", true },
{ "harion.fr", true },
{ "harisht.me", false },
+ { "harititan.com", true },
{ "harjitbhogal.com", true },
{ "harlor.de", true },
{ "harmfarm.nl", true },
@@ -17500,17 +19270,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "harmoney.com", true },
{ "harmoney.com.au", true },
{ "harmonyplace.com", true },
+ { "harms.io", true },
+ { "harmsboone.org", true },
{ "harnov.dk", true },
{ "haroldsharpe.com", true },
{ "harp.gov", true },
+ { "harpoo.jp", true },
{ "harrcostl.com", true },
{ "harringtonca.com", true },
+ { "harrisconsulting.ie", true },
{ "harrisonswebsites.com", true },
- { "harrisonvillenaz.org", true },
- { "harry-baker.com", true },
{ "harrygerritstransport.nl", true },
{ "harrymclaren.co.uk", true },
- { "harryphoto.fr", true },
{ "harrysgardengamehire.co.uk", true },
{ "harrysmallbones.co.uk", true },
{ "harrysqnc.co.uk", true },
@@ -17520,6 +19291,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hartlep.email", true },
{ "hartlieb.me", true },
{ "hartzer.com", true },
+ { "haruhi.org.ua", true },
{ "harukakikuchi.com", true },
{ "harukawa.moe", true },
{ "haruue.moe", true },
@@ -17531,6 +19303,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "harveysautoservice.net", true },
{ "has-no-email-set.de", false },
{ "has.work", true },
+ { "haschrebellen.de", true },
{ "hasdf.de", true },
{ "hasecuritysolutions.com", true },
{ "haselsteiner.me", true },
@@ -17542,7 +19315,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hashemian.com", true },
{ "hashes.org", true },
{ "hashi.dk", true },
- { "hashiconf.eu", true },
{ "hashicorp.com", true },
{ "hashimah.ca", true },
{ "hashimoto-jimusho.com", true },
@@ -17551,17 +19323,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hashiura.jp", true },
{ "hashnode.com", true },
{ "hashru.nl", true },
+ { "hashtagpatriot.com", true },
{ "hashworks.net", true },
{ "hashxp.org", true },
{ "hasilocke.de", true },
+ { "haskett.ca", true },
{ "haskovec.com", true },
{ "hasselbach-dellwig.de", true },
{ "hatarisecurity.co.ke", true },
+ { "hatcher.cloud", true },
{ "hatpakha.com", true },
{ "hatter.ink", true },
{ "hatul.info", true },
{ "haucke.xyz", true },
+ { "hauller.ch", true },
+ { "hauntedfieldsofglory.com", true },
{ "hauntedhouserecords.co.uk", true },
+ { "hauora.fyi", true },
{ "haus-garten-test.de", true },
{ "haus-henne.de", true },
{ "haus-zeitlos.de", true },
@@ -17576,8 +19354,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hautaka.com", true },
{ "hautarztzentrum.ch", true },
{ "hauteslatitudes.com", true },
+ { "havarijna-sluzba-bratislava.sk", true },
+ { "havasigabor.hu", true },
{ "havasuinsurance.com", true },
- { "havasutacohacienda.com", true },
{ "have.jp", true },
{ "haveabounce.co.uk", true },
{ "haveacry.com", true },
@@ -17593,8 +19372,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "havetherelationshipyouwant.com", true },
{ "hawaar.com", true },
{ "hawaiianchoice.com", true },
- { "hawawa.kr", true },
- { "hawaya.com", true },
+ { "hawaiioceanproject.com", true },
{ "hawkeyeinsight.com", true },
{ "hawkinsonkiaparts.com", true },
{ "hawkofgeorgia.com", true },
@@ -17609,18 +19387,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "haydenjames.io", true },
{ "hayfordoleary.com", true },
{ "haynes-davis.com", true },
+ { "haystack-staging.com", true },
{ "hayvid.com", true },
{ "haz.cat", true },
{ "haze.productions", true },
+ { "hazeltime.com", true },
{ "hazeover.com", true },
{ "hazloconlapix.com", true },
{ "hazukilab.com", true },
+ { "hb5197.com", false },
+ { "hb6729.com", true },
{ "hb8522.com", true },
+ { "hb9397.com", true },
{ "hbcu-colleges.com", true },
{ "hbkonsult.com", true },
{ "hboeck.de", true },
{ "hbpowell.com", true },
- { "hcaz.io", true },
{ "hcbj.io", true },
{ "hcie.pl", false },
{ "hcscrusaders.com", true },
@@ -17628,8 +19410,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hd-offensive.at", false },
{ "hd-only.org", true },
{ "hd-outillage.com", true },
- { "hd4138.com", true },
- { "hd6556.com", true },
+ { "hd5197.com", false },
+ { "hd6729.com", true },
+ { "hd9397.com", true },
+ { "hd9721.com", true },
{ "hdc.cz", true },
{ "hdcamvids.com", true },
{ "hdcenter.cc", true },
@@ -17641,18 +19425,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hdhoang.space", true },
{ "hdkandsons.com", true },
{ "hdnastudio.com", true },
+ { "hdritalyphotos.com", true },
{ "hdrsource.com", true },
{ "hdrtranscon.com", true },
{ "hds-lan.de", true },
+ { "hdtwinks.com", true },
{ "hdv.paris", true },
+ { "hdwallpapers.net", true },
{ "heaaart.com", true },
{ "head.org", true },
{ "head.ru", true },
+ { "headforcloud.com", true },
{ "headjapan.com", true },
{ "headlinepublishing.be", true },
- { "headshopinternational.com", true },
+ { "headlinesclub.com", true },
{ "headshotharp.de", true },
- { "health-booster.com", true },
+ { "healike.hk", true },
+ { "healingourskin.com", true },
+ { "health-booster.com", false },
+ { "health-iq.com.au", true },
{ "health-plan-news.com", true },
{ "health.gov", true },
{ "health.graphics", true },
@@ -17661,12 +19452,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "healthcare.gov", false },
{ "healthcultureexpo.com", true },
{ "healthdata.gov", true },
- { "healtheals.com", true },
{ "healtheffectsofasbestos.com", true },
{ "healthery.com", true },
{ "healthfinder.gov", true },
{ "healthfoam.com", true },
{ "healthgames.co.uk", true },
+ { "healthiercompany.com", true },
{ "healthiergenerations.co.uk", true },
{ "healthit.gov", true },
{ "healthplansamerica.org", true },
@@ -17675,37 +19466,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "healththoroughfare.com", true },
{ "healthy-map.com", true },
{ "healthybeterlife.click", true },
+ { "healthyfitfood.com", true },
{ "healthypeople.gov", true },
{ "healthyrecharge.com", true },
+ { "healthyspirituality.org", true },
+ { "healthysuperhuman.com", true },
{ "healthyteame.com", true },
{ "heap.zone", true },
{ "heapkeeper.org", true },
- { "hearinghelpexpress.com", true },
{ "hearmeraw.uk", true },
- { "heartbeat24.de", true },
- { "heartgames.pl", true },
+ { "heartcomms.com.au", true },
{ "heartlandbiomed.com", true },
{ "heartmdinstitute.com", true },
{ "heartsintrueharmony.com", true },
{ "hearttruth.gov", true },
{ "heartview.com.br", true },
{ "heartwoodart.com", true },
- { "hearty.blog", true },
{ "hearty.ga", true },
{ "hearty.gq", true },
{ "hearty.me", true },
{ "hearty.ml", true },
{ "hearty.ooo", true },
- { "hearty.org.tw", true },
{ "hearty.tw", true },
{ "heartyapp.tw", true },
{ "heartycraft.com", true },
{ "heatershop.co.uk", true },
{ "heatingandairconditioningdallastx.com", true },
{ "heatingpartswarehouse.co.uk", true },
+ { "heaven.moe", true },
{ "heavensattic.co.uk", true },
{ "heavensinferno.net", true },
{ "heavyequipments.org", true },
+ { "heayao.com", true },
{ "hebamme-cranio.ch", true },
{ "hebikhiv.nl", true },
{ "hebingying.cn", true },
@@ -17714,13 +19506,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hec.global", true },
{ "heckelektro.de", true },
{ "heckerundknopp.de", true },
- { "heckticmedia.com", true },
+ { "heddoun.com", true },
+ { "hedge.fi", true },
{ "hedgeschool.ie", true },
{ "hedonism.org", true },
{ "hedonistic-imperative.com", true },
{ "hedonistic.org", true },
{ "hedonium.com", true },
{ "hedweb.co.uk", true },
+ { "hedweb.com", true },
{ "hedweb.net", true },
{ "hedweb.org", true },
{ "heello.es", true },
@@ -17747,47 +19541,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "heimatverein-eitensheim.de", true },
{ "heimdallr.nl", true },
{ "heimonen.eu", true },
- { "heimprofis.de", true },
- { "heinemann.io", true },
{ "heinemeier.dk", true },
+ { "heino-peters.de", true },
{ "heinpost.nl", false },
{ "heinzelmann.co", true },
{ "heiraten-gardasee.de", true },
{ "heiraten-venedig.de", true },
- { "heisenberg.co", true },
{ "heissluft-fritteuse.com", true },
{ "heistheguy.com", true },
{ "heitepriem.info", true },
{ "heitland-it.de", true },
{ "heiwa-valve.co.jp", false },
- { "hejahanif.se", true },
{ "hejianpeng.cn", true },
{ "heka.ai", true },
+ { "hektenkairez.com", true },
{ "helber-it-services.de", true },
{ "helden-spielen.de", true },
{ "heldenhalde.de", true },
- { "heldtech.services", true },
{ "heldundsexgott.de", true },
{ "heleendebruyne.be", true },
{ "helenaknowledge.com", true },
{ "helenekurtz.com", true },
- { "helenelefauconnier.com", true },
{ "helenkellersimulator.org", true },
+ { "helensmithpr.co.uk", true },
{ "helfordriversc.co.uk", true },
{ "helichat.de", true },
{ "helifreak.club", true },
+ { "helijobs.net", true },
{ "helikon.ro", true },
{ "helioanodyne.eu", true },
{ "helios4.com", true },
{ "heliosnet.com", true },
{ "heliosvoting.org", true },
{ "helix.am", true },
+ { "hell.sh", true },
{ "hellenicagora.co.uk", true },
+ { "hellenicmusicacademy.com", true },
{ "hellerarko.de", true },
{ "hellersgas.com", true },
{ "helles-koepfchen.de", true },
{ "helloacm.com", true },
{ "hellobrian.me", true },
+ { "hellomedian.com", true },
{ "hellomookie.com", true },
{ "hellomouse.cf", true },
{ "hellomouse.net", true },
@@ -17796,20 +19591,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "helloyemek.com", true },
{ "hellsgamers.pw", true },
{ "hellsh.com", true },
+ { "helm-pokale.de", true },
{ "help.simpletax.ca", true },
+ { "help207.xyz", true },
{ "helpconnect.com.au", true },
+ { "helpmij.cf", true },
{ "helpscoutdocs.com", true },
{ "helpstarloja.com.br", true },
{ "helptasker.com", true },
{ "helptasker.net", true },
{ "helptasker.ru", true },
+ { "helpwithadoption.com", true },
{ "helpwithinsomnia.org", true },
{ "helpwithmybank.gov", true },
+ { "helsenorge.no", true },
{ "helserbrothers.com", true },
{ "helsinki.dating", true },
{ "helvella.de", true },
{ "hematoonkologia.pl", true },
{ "hemdal.se", true },
+ { "hemkoll.nu", true },
{ "hemnet.se", true },
{ "hems.si", true },
{ "hemtest.com", true },
@@ -17819,9 +19620,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hendersonvalleyautomotive.co.nz", true },
{ "hendric.us", false },
{ "hendrickx.be", true },
- { "hendrik.li", true },
{ "hendrinortier.nl", true },
- { "hengelsportdeal.com", true },
+ { "hengroenet.de", true },
{ "hengstumone.com", true },
{ "henkboelman.com", true },
{ "henke-home.eu", true },
@@ -17831,6 +19631,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "henleybouncycastles.co.uk", true },
{ "hennecke-forstbetrieb.de", true },
{ "henneke.me", true },
+ { "hennes-haan.de", true },
+ { "hennes-shop.de", true },
{ "hennies.org", true },
{ "henningkerstan.de", true },
{ "hennymerkel.com", true },
@@ -17840,8 +19642,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "henrikwelk.de", true },
{ "henrilammers.nl", true },
{ "henry.gg", true },
+ { "henryocallaghan.com", true },
{ "henryphan.com", false },
{ "henrysautodetail.com", true },
+ { "hentaipornography.com", true },
+ { "hentaiz.net", true },
{ "hentschke-bau.de", true },
{ "hentschke-betonfertigteilwerk.de", true },
{ "hentschke-invest.de", true },
@@ -17849,27 +19654,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "heppler.net", true },
{ "heptafrogs.de", true },
{ "her25.com", false },
+ { "heraldik-wiki.de", true },
+ { "herba-belgie.be", true },
{ "herberichfamily.com", true },
{ "herbert.io", true },
{ "herbertjanvandinther.nl", true },
{ "herbhuang.com", true },
+ { "herbolarigranvida.com", true },
{ "herbweb.net", true },
{ "herbweb.org", true },
- { "herculex.fi", true },
{ "herds.eu", true },
{ "herdserv.de", true },
- { "herebedragons.io", true },
{ "herecsrymy.cz", true },
{ "heren.fashion", true },
- { "heribro.com", true },
+ { "heretic-guild.com", true },
{ "heritagebaptistchurch.com.ph", true },
+ { "heritagecoffee.co.uk", true },
{ "herkam.pl", true },
{ "hermanbrouwer.nl", true },
{ "hermes-net.de", true },
{ "herminghaus24.de", true },
- { "herndl.org", true },
{ "herni-kupony.cz", true },
- { "hernn.com", true },
{ "herocentral.de", true },
{ "heroco.xyz", true },
{ "herofil.es", true },
@@ -17878,25 +19683,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "heroicpixel.com", true },
{ "heroku.com", true },
{ "heroku.ga", true },
+ { "heroliker.com", true },
{ "heromuster.com", true },
{ "herpes-no.com", true },
- { "herramientasbazarot.com", true },
{ "herranzramia.com", false },
{ "herrderzeit.de", true },
{ "herrenmuehle-wein.de", true },
+ { "herrfirm.com", true },
{ "herringboneeats.com", true },
{ "herringsresidence.be", true },
{ "herrkaschke.com", true },
{ "herrsmith.com", true },
{ "herrtxbias.net", false },
+ { "hersdorf-eifel.de", true },
{ "hertsbouncycastles.com", true },
{ "hertz.bj", true },
{ "herzbotschaft.de", true },
{ "herzfuersoziales.at", true },
{ "herzig.cc", true },
{ "herzogglass.com", true },
+ { "herzwacht.de", true },
{ "hesaplama.net", true },
- { "hessen-liebe.de", true },
{ "hesslag.com", true },
{ "hestervanderheijden.nl", true },
{ "hestia-systeme.be", true },
@@ -17908,18 +19715,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hethely.ch", true },
{ "hetluisterbos.be", true },
{ "hetmer.cz", true },
+ { "hetushu.com", true },
{ "heute-kaufen.de", true },
{ "heute.training", true },
+ { "heutger.net", true },
{ "hevertonfreitas.com.br", true },
- { "hex.nl", true },
{ "hexagon-e.com", true },
{ "hexapt.com", true },
- { "hexclock.io", true },
{ "hexcode.in", true },
{ "hexed.it", true },
{ "hexiaohu.cn", true },
{ "hexicurity.com", true },
- { "hexid.me", true },
{ "hexo.io", false },
{ "hexony.com", true },
{ "hexr.org", true },
@@ -17928,28 +19734,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hexstreamsoft.com", true },
{ "hexxagon.com", true },
{ "heywood.cloud", true },
- { "hf-tekst.nl", true },
{ "hf51.nl", true },
{ "hfox.org", true },
{ "hg.gg", true },
{ "hg.python.org", true },
+ { "hg0086.la", true },
+ { "hg170.cc", true },
{ "hgbet.com", true },
+ { "hghanbarimd.com", true },
{ "hgpowerglue.nl", true },
+ { "hguandl.com", true },
{ "hgvnet.de", true },
{ "hgw168.com", true },
+ { "hgw777.cc", true },
{ "hh-medic.com", true },
{ "hh-wolke.dedyn.io", true },
+ { "hh5197.co", true },
+ { "hh6729.co", true },
+ { "hh6729.com", true },
+ { "hh6957.co", true },
+ { "hh9297.co", true },
+ { "hh9397.com", true },
+ { "hh9721.com", true },
+ { "hh9728.co", true },
{ "hhgdo.de", true },
{ "hhh1080.com", true },
{ "hhhdb.com", true },
{ "hhidr.org", true },
{ "hhmmmm.de", true },
{ "hhs.gov", true },
+ { "hhtoners.com.br", true },
+ { "hhuitvaart.nl", true },
{ "hibari.moe", true },
{ "hiccupsandjuice.co.uk", true },
{ "hickorywinecellar.com", true },
{ "hicl.org", true },
{ "hicoria.com", true },
+ { "hicts.nl", true },
+ { "hiczp.com", true },
{ "hidbo.de", true },
{ "hiddendepth.ie", true },
{ "hiddenhillselectric.com", true },
@@ -17961,13 +19783,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hiddenhillsoutdoorlighting.com", true },
{ "hiddenmalta.net", true },
{ "hideallip.com", true },
+ { "hideo54.com", true },
{ "hideouswebsite.com", true },
{ "hidroshop.com.br", true },
+ { "hidroshoping.com.br", true },
+ { "hidupnomad.com", true },
+ { "hielscher.com", true },
{ "hieu.com.au", true },
- { "higgsboson.tk", true },
+ { "hiffo.de", true },
{ "higgstools.org", true },
{ "highair.net", true },
+ { "highdesertroboticsurgery.com", true },
{ "higherpress.org", true },
+ { "highkick.jp", true },
{ "highlatitudestravel.com", true },
{ "highlegshop.com", true },
{ "highlevelwoodlands.com", true },
@@ -17975,11 +19803,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "highlnk.com", true },
{ "highspeed-arnsberg.de", true },
{ "highspeedinternet.my", true },
- { "hightechbasementsystems.com", true },
+ { "hightimes.com", true },
{ "highwaytohoell.de", true },
{ "higilopocht.li", true },
- { "hijackpost.com", true },
- { "hikarukujo.com", true },
+ { "hiimodel.com", true },
+ { "hik-cloud.com", true },
+ { "hikawa.top", true },
{ "hike.pics", true },
{ "hikerone.com", true },
{ "hikinggearlab.com", true },
@@ -17988,28 +19817,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hilaryhutler.com", true },
{ "hilchenba.ch", true },
{ "hilde.link", true },
+ { "hildebrand.group", true },
{ "hildegardis-schule.de", true },
+ { "hilden.ws", true },
{ "hilfe-bei-krebs-vechta.de", true },
{ "hilfreiche-server.tips", true },
{ "hilhorst-uitvaartverzorging.nl", true },
- { "hillcountryoralsurgery.com", true },
{ "hillcrestswimclub.com", true },
+ { "hillebrand.io", true },
+ { "hillier-swift.co.uk", true },
+ { "hillsandsaunders.co.uk", true },
+ { "hillsandsaunders.com", true },
{ "hillsboroccpa.org", true },
{ "hillstrak.com.au", true },
+ { "hillstrakwpg.com.au", true },
{ "hilltopcellar.com", true },
{ "hilnu.com", true },
{ "hiltonarubabeachservices.com", true },
- { "himalaya-cross.com", true },
- { "himalaya.video", true },
- { "himcy.ga", true },
{ "himecorazon.com", true },
{ "himekomi.com", true },
{ "himiku.com", true },
{ "hin10.com", true },
+ { "hinaryazan.com", true },
{ "hinata-hidetoshi.com", true },
- { "hindi-movie.org", true },
{ "hindimoviedownload.net", true },
{ "hindimovieonline.net", true },
+ { "hingston.org", true },
+ { "hinkel-sohn.de", true },
{ "hintergrundbewegung.de", true },
{ "hinterhofbu.de", true },
{ "hinterposemuckel.de", true },
@@ -18017,11 +19851,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hiphop.ren", true },
{ "hipnos.net", true },
{ "hippies.com.br", true },
- { "hippo.ge", true },
{ "hippomovers.com", true },
{ "hippopotamuses.org", true },
{ "hips.com", true },
- { "hipstercat.fr", true },
+ { "hipstercat.fr", false },
{ "hiqfranchise.co.uk", true },
{ "hiqhub.co.uk", false },
{ "hiqonline.co.uk", true },
@@ -18031,10 +19864,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hire-a-coder.de", true },
{ "hireabouncycastle.net", true },
{ "hiresteve.ca", true },
+ { "hirevets.gov", true },
{ "hirevo.eu", true },
{ "hirevue.com", true },
{ "hirezzportal.com", true },
- { "hiring-process.com", true },
{ "hiromuogawa.com", true },
{ "hirotaka.org", true },
{ "hirtzfr.eu", true },
@@ -18044,23 +19877,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hisingensck.se", true },
{ "hisnet.de", true },
{ "hispanic.dating", true },
+ { "hisregistries.com", true },
+ { "hisregistries.net", true },
+ { "hisregistries.org", true },
{ "histoire-cite.ch", true },
{ "historia-arte.com", true },
+ { "historiasdepueblo.es", true },
{ "history-schools.com", true },
{ "history.google.com", false },
{ "history.gov", true },
{ "hitandhealth.nl", true },
{ "hitchpin.com", true },
+ { "hitechgr.eu", true },
{ "hiteco.com", true },
{ "hiteshbrahmbhatt.com", true },
+ { "hiteshchandwani.com", true },
+ { "hitflow.fr", true },
{ "hititgunesi-tr.com", true },
{ "hitmanstat.us", true },
{ "hitn.at", true },
- { "hitoapi.cc", false },
+ { "hitoapi.cc", true },
{ "hitocom.net.br", true },
{ "hitokoto-mania.com", true },
- { "hitokoto.cn", true },
+ { "hitokoto.cn", false },
{ "hitomecha.com", true },
+ { "hitrost.com", true },
{ "hitter-lauzon.com", true },
{ "hitter.family", true },
{ "hitterfamily.com", true },
@@ -18068,24 +19909,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hiv.com.tw", true },
{ "hiv.gov", true },
{ "hivatalinfo.hu", true },
- { "hiverlune.net", false },
+ { "hiverlune.net", true },
{ "hiwiki.tk", true },
{ "hiyacar.co.uk", true },
{ "hiyobi.me", true },
- { "hiyuki2578.net", true },
+ { "hiyuki2578.net", false },
{ "hizzacked.xxx", true },
{ "hj-mosaiques.be", true },
{ "hj.rs", true },
- { "hj3455.com", true },
- { "hj99vip.com", true },
{ "hjartasmarta.se", true },
- { "hjkbm.cn", true },
+ { "hjertingfysioterapi.dk", true },
{ "hjort.land", true },
{ "hjortland.org", true },
{ "hjphoto.co.uk", true },
{ "hjtky.cn", true },
- { "hjw-kunstwerk.de", true },
- { "hjyl9898.com", true },
{ "hk.search.yahoo.com", false },
{ "hkas.org.hk", true },
{ "hkbsurgery.com", true },
@@ -18093,13 +19930,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hkr.at", true },
{ "hks-projekt.at", true },
{ "hks.pw", true },
+ { "hktech.com", true },
{ "hktkl.com", true },
{ "hkustmbajp.com", true },
- { "hl8999.com", true },
{ "hlavacek.us", true },
{ "hlavi.hu", true },
{ "hledejlevne.cz", true },
- { "hledejpravnika.cz", true },
{ "hlfh.space", true },
{ "hlidacnajemneho.cz", true },
{ "hlin.cloud", true },
@@ -18111,6 +19947,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hm773.org", true },
{ "hmcdj.cn", true },
{ "hmhotelec.com", false },
+ { "hmnd.io", true },
{ "hmoegirl.com", true },
{ "hms-waldmann.de", true },
{ "hmsseahawk.com", true },
@@ -18127,6 +19964,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hoathienthao.vn", true },
{ "hobby-drechselei.de", true },
{ "hobbyspeed.com", true },
+ { "hocassian.cn", true },
{ "hochdorf-tennis.de", true },
{ "hochhaus.us", true },
{ "hochoukikikiraku.com", true },
@@ -18137,16 +19975,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hochzeitsplanerin-hamburg.de", true },
{ "hockeyapp.ch", true },
{ "hockeymotion.ch", true },
- { "hoctap.net", true },
{ "hodgephotography.com", true },
{ "hodnos.com", true },
{ "hoe.re", true },
{ "hoeft-autolackierung.de", true },
{ "hoekvanholland.eu", true },
- { "hoepli.it", true },
{ "hoeren.club", true },
{ "hoesnelwasik.nl", true },
- { "hoeveiligismijn.nl", true },
{ "hoevenstein.nl", false },
{ "hoewler.ch", true },
{ "hoezzi.nl", true },
@@ -18161,37 +19996,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hogrebe.de", true },
{ "hogwarts.io", true },
{ "hohenleimbach.de", true },
- { "hoikuen-now.top", true },
+ { "hohm.in", true },
{ "hoiquanadida.com", true },
{ "hoish.in", false },
{ "hoken-wakaru.jp", true },
{ "hokioisecurity.com", true },
{ "hokung.xyz", true },
+ { "hokusya.com", true },
{ "holadinero.es", true },
{ "holadinero.mx", true },
- { "holboxwhalesharktours.com", true },
+ { "holboxwhalesharktours.com", false },
{ "holebedeljek.hu", true },
{ "holidayacademy.co.uk", true },
{ "holidaysportugal.eu", true },
{ "holisticacupuncture.com.au", true },
{ "holistichealer.in", true },
{ "holisticon.de", true },
+ { "holland-sailing.de", true },
{ "hollandsdiep.nl", true },
{ "hollermann.eu", true },
{ "hollo.me", true },
{ "hollowpoint.xyz", true },
{ "hollowrap.com", true },
+ { "hollowwinds.xyz", true },
{ "hollyforrest.ca", true },
{ "hollyforrestphotography.ca", true },
{ "holmesian.org", true },
- { "holmq.dk", true },
{ "holo.ovh", true },
- { "holodeck.us", true },
{ "holofono.com", true },
{ "holofox.ru", true },
{ "holoxplor.space", true },
{ "holvonix.com", true },
- { "holy-hi.com", false },
{ "holycrossphl.org", true },
{ "holycrossverobeach.org", true },
{ "holydragoon.jp", true },
@@ -18216,17 +20051,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "holzvergaser-forum.de", true },
{ "homatism.com", true },
{ "hombresconestilo.com", true },
- { "home-handymen.co.uk", true },
{ "homebasedsalons.com.au", true },
{ "homebodyalberta.com", true },
{ "homecareassociatespa.com", true },
{ "homecheck.gr", true },
+ { "homecompost.in", true },
+ { "homeeducator.com", true },
{ "homefacialpro.com", false },
{ "homegardeningforum.com", true },
{ "homegardenresort.nl", true },
{ "homegreenmark.com", true },
+ { "homehunting.pt", true },
{ "homeimagician.com.au", true },
+ { "homelab.farm", true },
{ "homelabquotes.com", true },
+ { "homeland.ie", true },
{ "homem-viril.com", true },
{ "homeodynamics.com", true },
{ "homeofjones.net", true },
@@ -18236,16 +20075,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "homepage.shiga.jp", true },
{ "homeporn.stream", true },
{ "homeprivate.de", true },
- { "homes-in-norcal.com", true },
- { "homes-in-stockton.com", true },
{ "homeseller.com", true },
{ "homeserver-kp.de", true },
- { "homestay.id", true },
{ "homesteadandprepper.com", true },
{ "homesteadfarm.org", true },
{ "homewatt.co.uk", true },
{ "homeyou.com", true },
{ "hommeatoutfaire.be", true },
+ { "homoo.social", true },
{ "homophoni.com", true },
{ "hompus.nl", false },
{ "homunyan.com", true },
@@ -18261,16 +20098,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "honeyhaw.com", true },
{ "honeypot.net", true },
{ "hong.io", true },
+ { "honglitrading.co.uk", true },
{ "hongoi.com", true },
+ { "honigdealer.de", true },
{ "honkion.net", true },
{ "honoka-seitai.jp", true },
{ "honovere.de", true },
{ "hontoir.eu", true },
{ "hoodtrader.com", true },
{ "hoofddorp-centraal.nl", true },
+ { "hoofdredacteuren.nl", true },
+ { "hoogeveen.nl", true },
{ "hookany.com", true },
{ "hookbin.com", true },
{ "hookupndate.com", true },
+ { "hookxlab.org", true },
+ { "hoooc.com", true },
{ "hooowl.com", true },
{ "hoop.la", true },
{ "hoopertechnicalsolutions.com", true },
@@ -18278,7 +20121,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hooray.beer", true },
{ "hoorr.com", true },
{ "hoosa.de", true },
- { "hootworld.net", false },
{ "hoovism.com", true },
{ "hoowhen.cn", true },
{ "hopconseils.ch", true },
@@ -18289,11 +20131,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
{ "horairetrain.fr", true },
@@ -18302,11 +20142,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "horecatiger.eu", true },
{ "horeco.com", true },
{ "horeizai.net", true },
+ { "horgenberg.com", true },
{ "horizonhomes-samui.com", true },
- { "horizonshypnosis.ca", true },
+ { "horizonlawncare.tk", true },
{ "horizzon.cloud", true },
{ "horn.co", true },
{ "hornertranslations.com", true },
+ { "horoca.net", true },
+ { "horochx.org", true },
{ "horodance.dk", true },
{ "horrell.ca", true },
{ "horrendous-servers.com", true },
@@ -18333,12 +20176,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hostedcomments.com", true },
{ "hostedtalkgadget.google.com", true },
{ "hostfission.com", true },
- { "hostgigz.com", true },
- { "hostico.ro", true },
+ { "hostiberi.com", true },
{ "hostinecpodlipou.cz", true },
{ "hosting-swiss.ch", true },
{ "hostingactive.it", true },
- { "hostingalternative.com", true },
+ { "hostingalternative.com", false },
{ "hostinghelp.guru", true },
{ "hostinginnederland.nl", true },
{ "hostinglogin.net", true },
@@ -18348,15 +20190,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hostingsolutions.cz", true },
{ "hostix.de", true },
{ "hostmark.pl", true },
- { "hostme.co.il", true },
{ "hostmijnpagina.nl", true },
{ "hostmodern.com.au", true },
+ { "hostmywebsite.online", true },
{ "hosts.cf", true },
- { "hostworkz.com", true },
+ { "hot-spa.ch", true },
{ "hotcandlestick.com", true },
{ "hotchillibox.com", true },
{ "hotcoin.io", true },
- { "hotdoc.com.au", true },
{ "hotel-alan.hr", true },
{ "hotel-kontorhaus-stralsund.de", true },
{ "hotel-kontorhaus.de", true },
@@ -18364,9 +20205,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hotel-le-vaisseau.ch", true },
{ "hotel-pension-sonnalp.eu", true },
{ "hotel-rosner.at", true },
+ { "hotel-schiller.de", true },
{ "hotel1926.com.mt", true },
{ "hotelamgarnmarkt.at", false },
- { "hotelarevalo.com", true },
{ "hotelbonacabol.com", true },
{ "hotelbretagne.dk", true },
{ "hotelcoliber.pl", true },
@@ -18379,7 +20220,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hotelmarinaadria.com", true },
{ "hotelneptundalmatien.com", true },
{ "hotelpostaorvieto.it", true },
- { "hotelromacuernavaca.com.mx", true },
{ "hotels-insolites.com", true },
{ "hotels3d.com", true },
{ "hotels4teams.com", true },
@@ -18390,20 +20230,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hotelvalena.com", true },
{ "hotelvillaluisa.de", true },
{ "hothbricks.com", true },
+ { "hothiphopmusic.com", true },
+ { "hotjuice.com", true },
{ "hotnewhiphop.com", true },
- { "hoto.us", true },
{ "hoton.in", true },
+ { "hotornot.com", true },
{ "hotplate.co.nz", true },
- { "hotplug.gr", true },
{ "hottaro.com", true },
{ "hottheme.net", true },
{ "hotting.nl", true },
{ "hottubhirenewcastle.co.uk", true },
{ "hottubspasnewcastle.co.uk", true },
+ { "hotwifer.com", true },
{ "houdremont-la-courneuve.info", true },
{ "houraiteahouse.net", true },
- { "house-of-japan.co.jp", true },
{ "house-sparrow.com", true },
+ { "houseandgarden.co.uk", true },
{ "houseboydesigns.com", true },
{ "housekeeperlondon.co.uk", true },
{ "houselocal.co.uk", true },
@@ -18418,7 +20260,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "houstontxlocksmiths.com", true },
{ "houtinee.com", true },
{ "hoverboardbarato.com", true },
- { "how2play.pl", true },
+ { "how-old.info", true },
+ { "how2dev.tools", true },
{ "howa-n.net", true },
{ "howardtyson.com", true },
{ "howbehealthy.com", true },
@@ -18431,15 +20274,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "howmanymilesfrom.com", true },
{ "howsecureismypassword.net", true },
{ "howsmyssl.com", true },
+ { "howsmytls.com", true },
+ { "howson.me", true },
{ "howsyourhealth.org", true },
- { "howtocommunicate.com.au", true },
{ "howtogeek.com", true },
- { "howtogeekpro.com", true },
{ "howtogosolar.org", true },
{ "howtolaser.com", true },
{ "howtomovetheneedle.com", true },
{ "howtoteachviolin.com", true },
{ "howtotech.de", true },
+ { "hoxo.fr", true },
{ "hozana.si", false },
{ "hp-work.net", true },
{ "hp42.de", true },
@@ -18451,27 +20295,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hps.digital", true },
{ "hps.hu", true },
{ "hpsdigital.hu", true },
- { "hqhh.org", true },
+ { "hpvtimmerwerken.nl", true },
+ { "hq77.ru", true },
+ { "hqq.tv", true },
{ "hquest.pro.br", true },
{ "hqwebhosting.tk", false },
{ "hr-tech.shop", true },
- { "hrabogados.com", true },
+ { "hr28.co.uk", true },
{ "hraesvelg.net", true },
{ "hrafnkellbaldurs.com", true },
{ "hranicka.cz", true },
+ { "hrbanen.nl", true },
{ "hrbatypes.cz", true },
- { "hrbl.lc", true },
+ { "hrbrt.nl", true },
{ "hrdns.de", false },
+ { "hrebecek.cz", true },
{ "href.one", true },
{ "hreflang.info", true },
{ "hrjfeedstock.org", true },
{ "hrltech.com.br", true },
- { "hro.to", true },
- { "hrobert.hu", true },
{ "hroling.nl", true },
{ "hroschyk.cz", true },
{ "hrsa.gov", true },
- { "hrstapps-dev.com", true },
{ "hrtech.shop", true },
{ "hryniewski.net", true },
{ "hryx.net", true },
@@ -18485,7 +20330,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hsivonen.com", true },
{ "hsivonen.fi", true },
{ "hsivonen.iki.fi", true },
+ { "hsiwen.com", true },
{ "hsmr.cc", true },
+ { "hsn-tsn.com", true },
+ { "hsn.com", true },
+ { "hspinc.ca", true },
{ "hsr.gov", false },
{ "hsts.eu", true },
{ "hsts.me", true },
@@ -18495,14 +20344,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hstspreload.com", true },
{ "hstspreload.de", true },
{ "hstspreload.org", true },
- { "hsuan.pw", true },
+ { "hsturan.com", true },
+ { "hsuan.pw", false },
{ "hszemi.de", true },
{ "ht.mk", true },
{ "htaccessbook.com", true },
{ "htaps.com", true },
+ { "htb.click", true },
+ { "htdcomputer.vn", true },
{ "hte.ovh", true },
{ "hti.digital", true },
+ { "htmanager.fr", true },
+ { "htmdom.com", true },
{ "html.moe", true },
+ { "html2gutenberg.com", true },
{ "html5.org", true },
{ "html5media.info", true },
{ "htmlacademy.ru", true },
@@ -18519,7 +20374,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "https4all.org", true },
{ "httpsalarm.com", true },
{ "httpsecured.net", true },
- { "httpsecurityreport.com", true },
{ "httpsiseasy.com", true },
{ "httpsispisseasy.com", true },
{ "httpsnow.com", true },
@@ -18527,29 +20381,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "httpswatch.ca", true },
{ "httpswatch.com", true },
{ "hu.search.yahoo.com", false },
- { "hu8188.com", true },
- { "hu8518.com", true },
- { "hu8555.com", true },
- { "hu8588.com", true },
- { "hu8777.com", true },
- { "hu8bet.com", true },
- { "hu8hu8.com", true },
- { "huabianwa.com", true },
{ "huagati.com", true },
{ "huahinpropertylisting.com", true },
{ "hualao.co", true },
+ { "huang-haitao.com", true },
{ "huang.nu", true },
{ "huangh.com", true },
- { "huangjia71.com", true },
- { "huangjia72.com", true },
- { "huangjia73.com", true },
- { "huangjia74.com", true },
- { "huangjia75.com", true },
- { "huangjia76.com", true },
- { "huangjia77.com", true },
- { "huangjia78.com", true },
- { "huangjia79.com", true },
- { "huangjia99.com", true },
{ "huangjiaint.com", true },
{ "huangjingjing.com", true },
{ "huangqifu.com", true },
@@ -18559,6 +20396,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hub.org.ua", true },
{ "hub385.com", true },
{ "hubapi.com", true },
+ { "hubbroker.com", true },
{ "hubchain.com", true },
{ "hubchain.com.br", true },
{ "hubchain.fr", true },
@@ -18569,6 +20407,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hubspot.com", true },
{ "huchet.me", true },
{ "hudebnibazarmixer.cz", true },
+ { "hudobniny.net", true },
{ "hudrydum.cz", true },
{ "hudsonfaceandeye.com", true },
{ "huduser.gov", true },
@@ -18576,15 +20415,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "huersch.com", true },
{ "hues-in-lee.de", true },
{ "huffduffer.com", true },
- { "huffsinsurance.com", true },
- { "hughtodd.ink", true },
+ { "hugh-dancy.com", true },
{ "hugi.is", true },
{ "huglen.info", true },
{ "hugo.pro", true },
- { "hugo6.com", true },
{ "hugofs.com", true },
+ { "hugolegrand.fr", true },
{ "hugolynx.fr", true },
{ "hugonote.ml", true },
+ { "hugonote.ovh", true },
+ { "hugovr.nl", true },
{ "huguesblanchard.paris", true },
{ "huguesditciles.com", true },
{ "huh.gdn", true },
@@ -18593,7 +20433,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "huininga.com", true },
{ "huininga.nl", true },
{ "huininga.org", true },
- { "huirongis.me", true },
+ { "huipc.com", true },
{ "huisartsenpraktijkheemraadssingel.nl", true },
{ "huisartsenpraktijksonmezer.nl", true },
{ "huisartsenpraktijkzonnehoed.nl", true },
@@ -18602,7 +20442,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "huislijn.nl", true },
{ "huissier-vosges.com", true },
{ "huitaodang.com", true },
- { "hukutuu.com", true },
+ { "huizenvlees.nl", true },
+ { "hulaginswoodworking.com", true },
{ "hulet.tech", true },
{ "hulldevs.net", true },
{ "hulpbijmarketing.nl", true },
@@ -18643,19 +20484,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "humboldtmfg.com", true },
{ "humeur.de", true },
{ "humexe.com", true },
+ { "humio.com", true },
+ { "hummingbird.services", true },
{ "hummy.tv", true },
- { "humorcaliente.com", true },
- { "humpchies.com", true },
{ "humpen.se", true },
{ "humppakone.com", true },
{ "hund.io", true },
- { "hundeformel.de", true },
{ "hundesport-psvhalle.de", true },
{ "hundeverwaltung.de", true },
{ "hundhausen.de", true },
{ "hundter.com", true },
{ "hunger.im", true },
{ "huniverse.co", true },
+ { "hunqz.com", true },
{ "hunstoncanoeclub.co.uk", true },
{ "hunter-read.com", true },
{ "hunter.io", true },
@@ -18668,34 +20509,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "huntsvillecottage.ca", true },
{ "huoduan.com", true },
{ "huonit.com.au", true },
+ { "huoqibaike.club", true },
+ { "huoyankan.com", true },
{ "hup.hu", true },
{ "hurd.is", true },
{ "huren.nl", true },
+ { "hurleyhomestead.com", true },
{ "huroji.com", true },
{ "hurtigtinternet.dk", true },
{ "husakbau.at", true },
{ "hushfile.it", true },
{ "husic.net", false },
{ "huskyeye.de", true },
- { "huskyinc.us", true },
+ { "huskyinc.us", false },
{ "hussam.eu.org", true },
{ "hustlehope.com", true },
- { "hustunique.com", true },
{ "huurwoordenaar.nl", true },
{ "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 },
- { "hverdagogkink.no", true },
{ "hvh.no", true },
{ "hvmk.nl", true },
{ "hvrint.de", true },
{ "hvtuananh.com", true },
- { "hwaddress.com", true },
{ "hwag-pb.de", true },
{ "hwlibre.com", true },
{ "hx53.de", true },
@@ -18708,16 +20548,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hybridworx.eu", true },
{ "hybridworx.net", true },
{ "hybridworx.org", true },
+ { "hybrydowe-samochody.pl", true },
{ "hybula.com", true },
{ "hycken.com", true },
{ "hyckenberg.com", true },
{ "hyderabadonlinegifts.com", true },
- { "hydrasolutions.de", true },
+ { "hydra.zone", true },
+ { "hydracommunity.net", true },
+ { "hydrante.ch", true },
{ "hydrazin.pw", true },
{ "hydro17.com", true },
{ "hydroagro.pl", true },
{ "hydrographicsocietybenelux.eu", true },
{ "hydronicheatingaustralia.com.au", true },
+ { "hydrosnow.fr", true },
{ "hydroturbine.info", true },
{ "hydrozone.fr", true },
{ "hyec.jp", true },
@@ -18728,9 +20572,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hyparia.fr", true },
{ "hyparia.org", true },
{ "hype.ru", true },
- { "hypeitems.pl", true },
+ { "hypehost.net", false },
{ "hypemgmt.com", true },
{ "hyper-text.org", true },
+ { "hyper.ai", true },
+ { "hyper.lol", true },
{ "hyperactive.am", true },
{ "hyperalgesia.com", true },
{ "hyperautomotive.com.au", true },
@@ -18743,27 +20589,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hyperthymia.com", true },
{ "hyphen.co.za", true },
{ "hyphenpda.co.za", true },
+ { "hypnovir.us", true },
{ "hypotecnicentrum.cz", true },
{ "hypothecairelening.net", true },
{ "hypotheekbond.nl", true },
{ "hypothes.is", true },
+ { "hypothesis.link", true },
{ "hypothyroidmom.com", true },
- { "hyr.mn", true },
- { "hysh.jp", true },
{ "hytale.com", true },
{ "hytzongxuan.com", true },
+ { "hytzongxuan.top", true },
{ "hyundai.no", true },
{ "hyvanilmankampaamo.fi", true },
{ "hyvanolonterapia.fi", true },
{ "hyvinvointineuvoja.fi", true },
- { "hyyen.com", true },
+ { "hywlovexyc.info", true },
{ "hztgzz.com", true },
{ "i--b.com", true },
- { "i-0v0.in", true },
{ "i-aloks.ru", true },
{ "i-geld.de", true },
{ "i-hakul.net", true },
+ { "i-hoz.ru", true },
{ "i-logic.co.jp", false },
+ { "i-meto.com", true },
{ "i-office.com.vn", true },
{ "i-proswiss.com", true },
{ "i-red.info", true },
@@ -18771,20 +20619,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "i-stuff.site", true },
{ "i-telligence.de", true },
{ "i-verbi.it", true },
+ { "i-voting.pl", true },
{ "i00.eu", true },
{ "i1314.gdn", true },
- { "i1place.com", true },
{ "i2b.ro", true },
{ "i2gether.org.uk", true },
+ { "i2verify.com", true },
+ { "i5197.co", true },
{ "i5y.co.uk", true },
{ "i5y.org", true },
+ { "i6729.co", true },
+ { "i6729.com", true },
+ { "i6957.co", true },
{ "i879.com", true },
+ { "i8cp.com", true },
+ { "i9297.co", true },
+ { "i9397.com", true },
{ "i95.me", false },
+ { "i9721.com", true },
+ { "i9728.co", true },
{ "i9s.in", true },
{ "ia.cafe", true },
{ "ia.net", true },
{ "iaco.li", true },
- { "iacono.com.br", false },
{ "iactu.info", true },
{ "iaeste.no", true },
{ "iaeste.or.jp", true },
@@ -18801,8 +20658,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iambozboz.co.uk", true },
{ "iamcryptoki.com", true },
{ "iamhansen.xyz", true },
- { "iaminashittymood.today", true },
{ "iamjoshellis.com", true },
+ { "iamlife.com", true },
{ "iamtheib.me", true },
{ "iamtonyarthur.com", true },
{ "iamusingtheinter.net", false },
@@ -18816,22 +20673,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iankmusic.com", true },
{ "ianmooreis.me", true },
{ "ianmoriarty.com.au", true },
+ { "iansyst.co.uk", true },
{ "ianwalsh.org", false },
{ "iap.network", true },
{ "ias-gruppe.net", true },
{ "iassess.eu", true },
{ "iatfei.com", true },
+ { "iautodily.cz", true },
{ "iavian.com", true },
{ "iba.community", true },
{ "ibacktraced.it", true },
{ "ibaq.nl", true },
{ "ibauruapan.com.mx", true },
+ { "ibavaro.com", true },
+ { "ibb.co", true },
+ { "ibcl.us", true },
{ "ibcmed.org", true },
{ "ibe.de", true },
{ "ibeep.com", true },
{ "iberiaversicherungen.com", true },
{ "ibericaderedes.es", true },
+ { "ibericarbenet.es", true },
+ { "ibericarcuzco.es", true },
+ { "ibericarcuzcomini.es", true },
+ { "ibericarformula.es", true },
+ { "ibericargestoso.es", true },
+ { "ibericarmotors.es", true },
+ { "ibericarmotorsmalaga.es", true },
+ { "ibericarmovilcentro.es", true },
+ { "ibericarmovilsur.es", true },
+ { "ibericarreicomsa.es", true },
+ { "ibericartechnik.es", true },
+ { "iberiserver.es", true },
+ { "ibestreview.com", true },
{ "ibexcore.com", true },
+ { "ibi.mt", true },
{ "ibigawamizueco.com", true },
{ "ibin.co", true },
{ "ibiz.mk", true },
@@ -18843,7 +20719,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ibsociety.com", true },
{ "ibstyle.tk", true },
{ "ibuki.run", true },
- { "ibutikk.no", true },
{ "ibwc.gov", true },
{ "ibykos.com", true },
{ "ic-lighting.com.au", true },
@@ -18851,32 +20726,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ic3.gov", true },
{ "icafecash.com", true },
{ "icanhasht.ml", true },
+ { "icanhazpass.com", true },
{ "icarlos.net", true },
{ "icasture.top", true },
{ "iccpublisher.com", true },
{ "icdp.org.ua", true },
{ "ice.xyz", true },
{ "iceberg.academy", true },
- { "icebook.co.uk", true },
{ "icecars.net", true },
{ "icecontrol.ro", true },
{ "icedream.tech", true },
+ { "icelandicasian.com", true },
{ "icetiger.eu", true },
+ { "icetravellers.com", 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 },
{ "iclart.com", true },
{ "iclinic.ua", true },
+ { "icloud.st", true },
{ "icloudlogin.com", true },
{ "icmhd.ch", true },
{ "icmp2018.org", true },
- { "icmshoptrend.com", false },
- { "icnsoft.cf", true },
- { "icnsoft.ga", true },
- { "icnsoft.ml", true },
+ { "icmshoptrend.com", true },
{ "icobench.com", true },
{ "icodeconnect.com", true },
{ "icoh.it", true },
@@ -18884,19 +20758,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "icowhitepapers.co", true },
{ "icpc.pp.ua", true },
{ "icq-project.net", true },
- { "icsadviseurs.nl", true },
{ "icsfinomornasco.gov.it", true },
{ "icsfinomornasco.it", true },
- { "ict-concept.nl", false },
+ { "ict-concept.nl", true },
{ "ict-crew.nl", true },
{ "ict-helpteam.nl", true },
{ "ict-radar.com", true },
{ "ict-radar.nl", true },
+ { "ictbaneninnederland.nl", true },
+ { "ictbiz.com.au", true },
{ "ictcareer.ch", true },
{ "ictl.eu", true },
{ "ictoniolopisa.it", true },
{ "ictradar.com", true },
{ "ictussistemas.com.br", true },
+ { "icy.aq", true },
{ "icyapril.com", true },
{ "icymint.me", true },
{ "icynet.eu", true },
@@ -18906,22 +20782,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "id.mayfirst.org", false },
{ "id.search.yahoo.com", false },
{ "id0-rsa.pub", true },
- { "id7.fr", true },
+ { "idaeus.eu", true },
{ "idahoansforliberty.net", true },
+ { "idar-oberstein.de", true },
{ "idarv.com", true },
{ "idaspis.com", true },
{ "idatha.de", true },
{ "idc-business.be", true },
{ "idconsult.nl", true },
+ { "ideageek.net", true },
{ "ideal-envelopes.co.uk", false },
- { "idealcontabilidade.net", true },
{ "idealimplant.com", 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 },
{ "ideatarmac.com", true },
@@ -18944,9 +20820,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "idgard.de", false },
{ "idgateway.co.uk", true },
{ "idhosts.co.id", true },
- { "idid.tk", true },
{ "idiotentruppe.de", true },
- { "idisposable.co.uk", true },
+ { "idleleo.com", true },
{ "idlethoughtsandramblings.com", true },
{ "idmanagement.gov", true },
{ "idmobile.co.uk", true },
@@ -18958,12 +20833,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "idolknow.com", true },
{ "idontplaydarts.com", true },
{ "idoparadoxon.hu", true },
- { "idranktoomuch.coffee", true },
{ "idratherbequilting.com", true },
{ "idraulico-roma.it", true },
{ "idraulico-roma.org", true },
{ "idraulico.roma.it", true },
- { "idrinktoomuch.coffee", true },
{ "idrissi.eu", true },
{ "idroserviceweb.com", true },
{ "idrottsnaprapaten.se", true },
@@ -18973,14 +20846,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "idunno.org", true },
{ "idvl.de", true },
{ "idxforza.com", true },
+ { "idysse.com", true },
{ "ie.search.yahoo.com", false },
{ "iea-annex61.org", true },
+ { "iec.pe", true },
{ "ieeedeis.org", true },
{ "ieeesb.nl", true },
{ "ieeesbe.nl", true },
{ "ieeespmb.org", true },
- { "ieffalot.me", true },
- { "ieji.de", false },
+ { "iegat.com", true },
+ { "ieji.de", true },
{ "iemb.tk", true },
{ "ienakanote.com", false },
{ "ies-italia.it", true },
@@ -18990,28 +20865,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ifangpei.cn", true },
{ "ifangpei.com.cn", true },
{ "ifelse.io", true },
+ { "ifengge.cn", true },
+ { "ifengge.me", true },
{ "ifgcdn.com", true },
{ "ifibe.com", true },
{ "ifightsurveillance.com", true },
{ "ifightsurveillance.net", true },
{ "ifightsurveillance.org", true },
- { "ifixe.ch", true },
{ "iflare.de", true },
+ { "ifma.edu.br", true },
{ "ifort.fr", true },
{ "ifosep.fr", true },
{ "ifoss.me", true },
- { "ifreetion.cn", true },
- { "ifreetion.com", true },
{ "ifsac.org", true },
{ "ifsclist.com", true },
{ "ifsr.de", true },
- { "iftarsaati.org", true },
+ { "ift.cx", true },
{ "iftrue.de", true },
- { "ifttl.com", false },
+ { "ifttl.com", true },
{ "ifxd.bid", true },
- { "ifyou.live", true },
{ "ig.com", true },
{ "iga-semi.jp", true },
+ { "igarage.nl", true },
{ "igcc.jp", true },
{ "igdn.de", true },
{ "igeh-immo.at", true },
@@ -19019,9 +20894,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iggprivate.com", true },
{ "iggsoft.com", true },
{ "iggsoftware.com", true },
+ { "igiftcards.de", true },
+ { "igiftcards.nl", true },
{ "igimusic.com", true },
{ "igk.nz", true },
- { "igm-be.ch", true },
+ { "iglosujemy.pl", true },
{ "igmus.org", true },
{ "ignace72.eu", true },
{ "ignacjanskiednimlodziezy.pl", true },
@@ -19031,41 +20908,51 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ignatovich.me", true },
{ "ignet.gov", true },
{ "ignitedlocal.com", true },
- { "ignitedmindz.in", true },
{ "ignitelocal.com", true },
+ { "ignition.gg", true },
+ { "igorandandre.com", true },
{ "igorrealestate.com", true },
{ "igorw.org", true },
{ "igotoffer.com", false },
{ "igrarium.com.ua", true },
{ "igrivi.com", true },
- { "igsmgmt.com", true },
{ "iguana.com.ec", false },
- { "igva.or.kr", true },
{ "ih8sn0w.com", true },
+ { "iha6.com", true },
{ "ihacklabs.com", false },
- { "ihakkitekin.com", true },
- { "ihc.im", true },
{ "ihcprofile.com", true },
+ { "ihearmedical.com", true },
+ { "ihempz.cz", true },
{ "ihkk.net", true },
- { "ihls.stream", true },
- { "ihls.world", true },
{ "ihmphila.org", true },
{ "ihoey.com", true },
{ "ihollaback.org", true },
{ "ihopeit.works", true },
+ { "ihorizon.jp", true },
{ "ihostup.net", true },
- { "ihotel.io", false },
+ { "ihotel.io", true },
{ "ihrhost.com", true },
{ "ihtdenisjaccard.com", true },
{ "ihuan.me", true },
+ { "ii5197.co", true },
+ { "ii6729.com", true },
+ { "ii6957.co", true },
{ "ii74.com", true },
+ { "ii918.com", true },
+ { "ii9297.co", true },
+ { "ii9397.com", true },
+ { "ii9721.com", true },
+ { "ii9728.co", true },
+ { "iiax.net", true },
+ { "iiax.org", true },
{ "iiit.pl", true },
- { "iimarckus.org", true },
{ "iinf.in", true },
+ { "iinix.com", true },
{ "iiong.com", true },
- { "iirii.com", true },
+ { "iisjy.cn", true },
{ "iix.se", true },
{ "iiyama-bg.com", true },
+ { "ijinus.com", true },
{ "ijm.io", true },
{ "ijohan.nl", true },
{ "ijsbaanwitten.nl", true },
@@ -19074,20 +20961,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
+ { "ikiler.com", true },
{ "ikinokori-marketing.com", true },
{ "ikk.me", true },
- { "ikkakujuku.work", true },
+ { "ikkakujuku.work", false },
{ "ikkatsu-satei.jp", true },
{ "ikkbb.de", true },
{ "ikke-coach.nl", true },
@@ -19095,14 +20981,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ikkoku.de", true },
{ "iklive.org", false },
{ "ikmx.net", true },
+ { "iknet.top", true },
+ { "ikparis.com", true },
{ "ikraenglish.com", false },
- { "iktisatbank.com", true },
{ "ikulist.me", true },
- { "ikumi.us", true },
- { "ikuuuu.com", true },
{ "ikvts.de", true },
{ "ikwilthepiratebay.org", true },
{ "ikxkx.com", true },
+ { "ikymbo.com", true },
{ "ila.fi", true },
{ "ilamparas.at", true },
{ "ilamparas.co.uk", true },
@@ -19112,6 +20998,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ilamparas.mx", true },
{ "ilard.fr", true },
{ "ilazycat.com", true },
+ { "ildomani.it", true },
{ "ile-kalorii.pl", true },
{ "ile-sapporo.jp", true },
{ "ileci.de", true },
@@ -19119,13 +21006,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ilemonrain.com", false },
{ "ilformichiere.com", true },
{ "ilhan.name", true },
- { "ilhansubasi.com", true },
{ "iliastsi.net", true },
{ "iligang.cn", true },
{ "iligang.com", true },
{ "iligang.link", true },
{ "iligang.xin", true },
- { "ilkeakyildiz.com", true },
+ { "iliz-kafe.fr", true },
+ { "ilkeakyildiz.com", false },
{ "illambias.ch", true },
{ "illative.net", true },
{ "illegalpornography.com", true },
@@ -19162,6 +21049,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ilya.pp.ua", true },
{ "im-c-shop.com", true },
{ "im-haus-sonnenschein.de", true },
+ { "im-in.space", true },
{ "im2net.com", true },
{ "im4h.de", true },
{ "im4h.eu", true },
@@ -19172,6 +21060,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imacs.org", true },
{ "image-drive.de", true },
{ "imagebin.ca", true },
+ { "imagecurl.com", true },
+ { "imagecurl.org", true },
{ "imagefu.com", true },
{ "imageination.co", true },
{ "imagerive.ch", true },
@@ -19179,6 +21069,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imaginair.es", true },
{ "imaginary.ca", true },
{ "imaginary.stream", true },
+ { "imaginationpathway.com", true },
{ "imagine-programming.com", true },
{ "imaginetricks.com", true },
{ "imagr.io", true },
@@ -19187,27 +21078,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imanesdeviaje.com", true },
{ "imanolbarba.net", true },
{ "imap2imap.de", true },
- { "imaple.org", true },
{ "imarkethost.co.uk", true },
- { "imask.ml", true },
{ "imawhale.com", true },
+ { "imbiancatura.milano.it", true },
{ "imbianchino.roma.it", true },
{ "imbushuo.net", true },
{ "imcsi.cn", true },
{ "imcsx.co", true },
{ "imdemos.com", true },
{ "ime.moe", true },
+ { "imed.com.pt", true },
+ { "imed.pt", true },
{ "imediafly.com", true },
{ "imedikament.de", true },
{ "imeds.pl", true },
- { "imefuniversitario.org", true },
{ "imeid.de", false },
{ "imex-dtp.com", true },
{ "imforza.com", true },
+ { "img.com.ru", true },
{ "img.mg", true },
{ "img.ovh", true },
{ "imga.ch", true },
{ "imgaa.com", true },
+ { "imgal.vin", true },
{ "imgbb.com", true },
{ "imgg.es", true },
{ "imgup.co", true },
@@ -19216,6 +21109,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imi-rhapsody.eu", true },
{ "iminshell.com", false },
{ "imirhil.fr", true },
+ { "imisa.com.mx", true },
{ "imitza.com", true },
{ "imjad.cn", true },
{ "imjo.in", true },
@@ -19223,29 +21117,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imjustcreative.com", true },
{ "imkerei-freilinger.de", false },
{ "imkerverein-moenchswald.de", true },
+ { "imlonghao.com", true },
{ "immarypoppinsyall.tk", true },
{ "immaterium.de", true },
{ "immatix.xyz", true },
- { "immersa.co.uk", true },
{ "immersion-pictures.com", true },
- { "immigrantdad.com", true },
- { "immigrationdirect.com.au", true },
{ "immo-agentur.com", false },
{ "immo-passion.net", true },
{ "immobilien-badlippspringe.de", true },
{ "immobilien-in-istanbul.de", true },
{ "immobilien-zirm.de", true },
{ "immobiliengutachter-holland.de", true },
+ { "immobilier-nice.fr", true },
{ "immobilier92.net", true },
{ "immobiza.com", false },
{ "immortal.run", true },
{ "imobile3.com", true },
+ { "imoe.xyz", true },
{ "imokuri123.com", true },
+ { "imoney.tw", true },
{ "imouto.my", false },
{ "imouyang.com", true },
+ { "imovel5.com.br", true },
{ "impact.health.nz", true },
{ "impacter.eu", true },
{ "impactfestival.be", true },
+ { "impactingsports.com", true },
+ { "impactplumbingdrainage.com.au", true },
{ "impactpub.ch", true },
{ "impakho.com", true },
{ "impas.se", true },
@@ -19257,30 +21155,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
+ { "impns.org", true },
{ "imponet.com.ar", true },
{ "import-shopping.de", true },
{ "importsagt.com", true },
+ { "impossible.co", true },
+ { "impossible.org", true },
+ { "impossiblefitness.com", true },
+ { "impossiblehq.com", true },
+ { "impossiblenutrition.com", true },
+ { "impossiblex.com", true },
{ "impotsimple.ca", true },
{ "imppac-schmuck.de", true },
{ "imppac.de", true },
{ "imprendo.co", true },
{ "imprendo.pro", true },
+ { "impresa-di-pulizie.milano.it", true },
{ "impresa-di-pulizie.org", true },
{ "impresa-pulizie.it", true },
+ { "impresadipulizia.roma.it", true },
{ "impresadipulizie.roma.it", true },
{ "impresaedile.roma.it", true },
- { "impressivebison.eu", true },
+ { "impresapulizia.milano.it", true },
+ { "impresapulizie.firenze.it", true },
+ { "impresapuliziebergamo.it", true },
+ { "imprezzor.com", true },
{ "imprimante-3d-store.fr", true },
{ "improfestival.ee", true },
{ "improklinikken.dk", true },
{ "improved-madness.de", true },
{ "improvision.eu", true },
- { "impulsionsa.com", true },
{ "impyus.com", true },
{ "imququ.com", true },
{ "imreh.net", true },
@@ -19292,6 +21198,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imtikaib.ml", true },
{ "imwalking.de", true },
{ "imwnk.cn", true },
+ { "imy.rs", true },
{ "imydl.tech", true },
{ "imyjy.cn", true },
{ "imyrs.cn", true },
@@ -19309,14 +21216,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inares.org", true },
{ "inbitcoin.it", true },
{ "inbounder.io", false },
- { "inbox-group.com", true },
{ "inbox.google.com", true },
{ "inbulgaria.info", true },
{ "inc.wf", true },
+ { "incarceratedwombats.com", true },
{ "incarna.co", true },
{ "incco.ir", true },
{ "incert.cn", true },
{ "incertint.com", true },
+ { "incestporn.tv", true },
{ "inchcape-fleet-autobid.co.uk", true },
{ "inche-ali.com", true },
{ "inchenaim.com", true },
@@ -19335,10 +21243,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "incubos.org", true },
{ "incy.io", true },
{ "ind.ie", true },
- { "indarceky.sk", false },
{ "indecipherable.info", true },
{ "independencerecovery.com", true },
- { "independent-operators.com", true },
{ "independenttravelcats.com", true },
{ "index-mp3.com", true },
{ "indiaflowermall.com", true },
@@ -19347,8 +21253,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "indianaberry.com", true },
{ "indianafoundationpros.com", true },
{ "indianamoldrepairpros.com", true },
+ { "indianareflux.com", true },
{ "indianawaterdamagerepairpros.com", true },
{ "indiansmartpanel.com", true },
+ { "indiapur.com", true },
{ "indiatrademarkwatch.com", true },
{ "indiayogastudio.net", true },
{ "indicateurs-flash.fr", true },
@@ -19356,6 +21264,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "indiecongdr.it", true },
{ "indiegame.space", true },
{ "indievelopment.nl", true },
+ { "indigitalagency.com", true },
+ { "indigoblack.com.au", true },
{ "indigoinflatables.com", true },
{ "indigolawnscape.net", true },
{ "indigosakura.com", true },
@@ -19363,14 +21273,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "indika.pe", true },
{ "indio.co.jp", true },
{ "inditip.com", true },
- { "indochina.io", true },
{ "indogermanstartup.com", true },
{ "indoorcomfortteam.com", true },
+ { "indota.hu", true },
{ "indovinabank.com.vn", true },
{ "indusap.com", true },
{ "indusfastremit-us.com", true },
{ "indust.me", true },
{ "industriafranchini.com", true },
+ { "industrial-remote-control.com", true },
{ "industrialstarter.com", true },
{ "industriemeister.io", true },
{ "indybay.org", true },
@@ -19378,12 +21289,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inebula.it", true },
{ "ineed.coffee", false },
{ "inertianetworks.com", true },
- { "inesfinc.es", true },
{ "inessoftsec.be", true },
{ "inesta.nl", true },
{ "inet.se", true },
{ "inethost.eu", true },
- { "inetpub.cn", true },
{ "inetserver.eu", true },
{ "inetsoftware.de", true },
{ "inf-fusion.ca", true },
@@ -19391,12 +21300,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "infermiere.roma.it", true },
{ "inff.info", true },
{ "inffin-portal.de", true },
- { "inffin-tec.de", true },
{ "inficom.org", true },
- { "infinitegroup.info", true },
+ { "infinipharm.com", true },
{ "infinitescript.com", true },
{ "infinitiofallentownparts.com", true },
- { "infinitiofaugustaparts.com", true },
{ "infinitioflynnwoodparts.com", true },
{ "infinitomaisum.com", true },
{ "infinitybas.com", true },
@@ -19406,34 +21313,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "infirmieredevie.ch", true },
{ "inflatablehire-scotland.co.uk", true },
{ "inflatablesny.com", true },
- { "inflatadays.co.uk", true },
{ "inflatamania.com", true },
- { "inflated.cloud", true },
{ "inflationstation.net", true },
{ "inflexsys.com", true },
{ "influo.com", true },
+ { "infmed.com", true },
{ "info-beamer.com", true },
- { "info-d-74.com", true },
+ { "info-o-zbozi.cz", true },
{ "info-screen-usercontent.me", true },
{ "info-screen.me", true },
{ "info-screw.com", true },
{ "infobae.com", true },
{ "infobrain.net", true },
+ { "infocity-tech.fr", true },
{ "infocoin.es", true },
{ "infocommsociety.com", true },
{ "infocon.org", true },
{ "infocusvr.net", true },
+ { "infodesigners.eu", true },
+ { "infodesk.at", true },
+ { "infodiscus.com", true },
{ "infoduv.fr", true },
{ "infogram.com", true },
{ "infogrfx.com", true },
+ { "infogym.com", true },
+ { "infohub.com.ua", true },
+ { "infomasx.com", true },
{ "infomegastore.com", true },
{ "infomir.eu", true },
{ "infomisto.com", true },
- { "infopier.sg", true },
- { "infopulsa.com", true },
+ { "infonote.ca", true },
{ "infopuntzorg.nl", true },
{ "infor-allaitement.be", true },
- { "informaciondeciclismo.com", true },
+ { "informace-zbozi.cz", true },
{ "informatiebeveiliging.nl", true },
{ "informatik-handwerk.de", true },
{ "informationrx.org", true },
@@ -19444,20 +21356,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "infosec.exchange", false },
{ "infosec.pizza", true },
{ "infosec.wiki", true },
+ { "infosecchicago.com", true },
{ "infosectalks.com", true },
{ "infosectekniques.com", true },
+ { "infosective.org", true },
{ "infosenior.ch", true },
{ "infotainworld.com", true },
{ "infotolium.com", false },
{ "infotrac.net", true },
{ "infotune.nl", true },
{ "infovision-france.com", true },
- { "infoweb.ee", true },
{ "infra.land", true },
{ "infraball.com", true },
{ "infrabeep.com", true },
{ "infrabeta.com", true },
+ { "infrabind.com", true },
{ "infrabold.com", true },
+ { "infrabond.com", true },
{ "infraboom.com", true },
{ "infraclass.com", true },
{ "infraclip.com", true },
@@ -19465,6 +21380,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "infradart.com", true },
{ "infradisk.com", true },
{ "infradrop.com", true },
+ { "infrafile.com", true },
+ { "infrafind.com", true },
{ "infrafire.com", true },
{ "infraflip.com", true },
{ "infraflux.com", true },
@@ -19493,8 +21410,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "infrapilot.com", true },
{ "infraping.com", true },
{ "infrapirtis.lt", true },
+ { "infraplot.com", true },
{ "infrarank.com", true },
{ "infrarank.net", true },
+ { "infraredradiant.com", true },
{ "infraspin.com", true },
{ "infratank.com", true },
{ "infratask.com", true },
@@ -19502,17 +21421,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "infratrip.com", true },
{ "infravibe.com", true },
{ "infravideo.com", true },
+ { "infravoce.com", true },
{ "infrazine.com", true },
{ "infruction.com", true },
+ { "infstudios.nl", true },
{ "infuzeit.com.au", true },
+ { "ing-buero-junk.de", true },
+ { "ingalls.run", true },
{ "ingatlanjogaszok.hu", true },
- { "ingatlanneked.hu", true },
{ "ingatlanrobot.hu", true },
{ "ingber.com", true },
{ "inge-r.nl", true },
{ "ingeeibach.de", true },
{ "ingenius.ws", true },
- { "ingerhy.com", true },
{ "ingi.ga", true },
{ "ingjobs.ch", true },
{ "inglebycakes.co.uk", true },
@@ -19520,36 +21441,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ingo-schlueter.de", true },
{ "ingolonde.pw", true },
{ "ingoschlueter.de", true },
- { "ingredientdaddy.ro", true },
+ { "ingressfs.pl", true },
{ "ingridbai.me", true },
{ "inhaltsangabe.de", true },
{ "inheritestate.com", true },
{ "inhouseents.co.uk", true },
{ "iniiter.com", true },
{ "inima.org", true },
- { "inios.fr", true },
+ { "iningrui.com", true },
{ "inishbofin.ie", true },
{ "initq.net", true },
{ "initramfs.io", true },
+ { "initrd.net", true },
{ "inixal.com", true },
{ "injigo.com", false },
{ "injurylawyer.com", true },
{ "ink.horse", true },
{ "inkable.com.au", true },
- { "inkeliz.com", true },
{ "inkhor.se", true },
{ "inkontriamoci.com", true },
+ { "inkopers.org", true },
{ "inksay.com", true },
{ "inkspire.co.uk", true },
{ "inkurz.de", true },
{ "inlabo.de", true },
{ "inline-sport.cz", true },
+ { "inlinea.ch", true },
{ "inlink.ee", true },
{ "inmaps.xyz", true },
{ "inmatefinancial.com", true },
{ "inmateintake.com", true },
{ "inmobillium.fr", true },
+ { "inmueblescartagena.com.co", true },
{ "inmusrv.de", true },
+ { "innatocol.com", true },
{ "innerfence.com", true },
{ "innerlightcrystals.co.uk", true },
{ "innermostparts.org", true },
@@ -19565,6 +21490,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "innotas.com", true },
{ "innoteil.com", true },
{ "innotel.com.au", true },
+ { "innovamag.com", true },
{ "innovaptor.at", true },
{ "innovaptor.com", true },
{ "innovate-indonesia.com", true },
@@ -19573,35 +21499,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "innover.se", true },
{ "innovere.co.uk", true },
{ "innovum.cz", false },
- { "innsalzachsingles.de", true },
{ "innwan.com", true },
{ "inoa8.com", true },
{ "inobun.jp", true },
+ { "inondation.ch", true },
{ "inovatecsystems.com", true },
+ { "inovitec.eu", true },
{ "inoxandco.com", true },
{ "inoxdesign.fr", true },
{ "inoxdesign.pro", true },
{ "inoxmavang.net", true },
{ "inpas.co.uk", true },
+ { "inphi.com", true },
+ { "input.sh", true },
{ "inputmag.com", true },
+ { "inputmodes.com", true },
+ { "inqorp.ca", true },
{ "inquant.de", true },
{ "ins-kreativ.de", true },
{ "ins.to", true },
{ "ins1gn1a.com", true },
{ "insblauehinein.nl", true },
{ "inscomers.net", true },
+ { "inscribe.ai", true },
{ "inscripcionessena.com", true },
{ "insecret.co.ua", true },
{ "insecret.com.ua", true },
{ "insecret.trade", true },
{ "insecure.org.je", true },
+ { "insegne.roma.it", true },
{ "insertcoins.net", true },
+ { "inserzioniticino.ch", true },
{ "insgesamt.net", true },
{ "inshapenutrition.com.br", true },
{ "insho.fashion", true },
+ { "inshop.hu", true },
{ "inside19.com", true },
{ "insideaudit.com", true },
{ "insidebedroom.com", true },
+ { "insideevs.com", true },
+ { "insideevs.fr", true },
{ "insidesolutions.nl", true },
{ "insidethefirewall.tk", true },
{ "insighti.org", true },
@@ -19609,19 +21546,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "insignificant.space", true },
{ "insinuator.net", true },
{ "insistel.com", true },
- { "insofttransfer.com", true },
- { "insolent.ch", true },
{ "insolved.com", true },
- { "insping.com", true },
+ { "insomniasec.com", true },
{ "inspiratienodig.nl", true },
{ "inspired-lua.org", true },
{ "inspiredlife.fun", true },
{ "inspiredrealtyinc.com", true },
{ "insrt.uk", true },
{ "insside.net", true },
+ { "instachina.ru", true },
{ "instafind.nl", true },
{ "instafuckfriend.com", true },
+ { "instagib.info", true },
{ "instagram-atom.appspot.com", true },
+ { "instagram.com", true },
{ "instagrammernews.com", true },
{ "instagramtweet.com", true },
{ "instahub.net", true },
@@ -19645,12 +21583,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "institutmaupertuis.hopto.org", true },
{ "institutogiuseppe.com", true },
{ "institutogiuseppe.com.ar", true },
+ { "institutolancaster.com", true },
{ "institutomaritimocolombiano.com", true },
{ "instrumart.ru", false },
{ "insult.es", true },
{ "insurance321.com", true },
+ { "insurancesloans.com", true },
{ "insureon.com", true },
- { "insurgentsmustdie.com", true },
{ "int64software.com", true },
{ "intafe.co.jp", true },
{ "intal.info", true },
@@ -19665,6 +21604,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "integrateur-web-paris.com", true },
{ "integrity.gov", true },
{ "integrityfortcollins.com", true },
+ { "integrityglobal.com", true },
{ "integrityokc.com", true },
{ "integrityoklahoma.com", true },
{ "integrogroup.com", true },
@@ -19677,23 +21617,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "intelhost.com.co", true },
{ "intelhost.com.mx", true },
{ "intelhost.com.pe", true },
+ { "inteli.com.pl", true },
{ "intellar.com", true },
{ "intellectdynamics.com", true },
{ "intelligence-explosion.com", true },
{ "intelligenetics.com", true },
+ { "intellihr.io", true },
+ { "intellimax.ir", true },
{ "intellinetixvibration.com", true },
{ "intellitonic.com", true },
{ "intelly.nl", true },
{ "intelly365.nl", true },
{ "intencje.pl", true },
- { "intensifyrsvp.com.au", true },
{ "inter-corporate.com", true },
{ "inter-culinarium.com", true },
- { "interabbit.com", true },
{ "interaffairs.com", true },
{ "interaktiva.fi", true },
{ "interasistmen.se", true },
{ "interchangedesign.com", true },
+ { "interchanges.io", true },
{ "intercom.com", true },
{ "intercom.io", true },
{ "interessengemeinschaft-pregelstrasse.tk", true },
@@ -19701,9 +21643,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "interflores.com.br", true },
{ "interfug.de", true },
{ "intergozd.si", true },
+ { "interguard.net", true },
{ "interiery-waters.cz", true },
{ "interimages.fr", true },
{ "interior-design-colleges.com", true },
+ { "interiordesignsconcept.com", true },
{ "interiorprofesional.com.ar", true },
{ "interisaudit.com", true },
{ "interlijn.nl", true },
@@ -19718,6 +21662,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "international-nash-day.com", true },
{ "internationalfashionjobs.com", true },
{ "internationalschool.it", true },
+ { "internationalschoolnewyork.com", true },
{ "internationalstudentassociation.com", true },
{ "internationaltalento.it", true },
{ "internect.co.za", true },
@@ -19725,6 +21670,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "internet-pornografie.de", false },
{ "internet-software.eu", true },
{ "internetaanbieders.eu", true },
+ { "internetanbieter-experte.de", true },
{ "internetbank.swedbank.se", true },
{ "internetbugbounty.com", true },
{ "internetbusiness-howto.com", true },
@@ -19736,6 +21682,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "internetinhetbuitengebied.nl", true },
{ "internetmedia.si", true },
{ "internetmuseum.se", true },
+ { "internetnz.nz", true },
{ "internetofdon.gs", true },
{ "internetoffensive.fail", true },
{ "internetofinsecurethings.com", true },
@@ -19743,31 +21690,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "internetpro.me", true },
{ "internetstaff.com", true },
{ "internetzentrale.net", true },
+ { "interparcel.com", true },
{ "interpol.gov", true },
{ "interracial.dating", true },
{ "interseller.io", true },
+ { "interssl.com", true },
{ "interstateautomotiveinc.com", true },
{ "intertime.services", true },
- { "interview-suite.com", true },
+ { "interviewme.pl", true },
{ "interways.de", true },
{ "intheater.de", true },
{ "inthepicture.com", true },
{ "inthouse.cloud", true },
{ "intita.com", true },
- { "intl-webs.com", true },
{ "intmissioncenter.org", true },
{ "into.technology", true },
- { "intocities.de", false },
{ "inton.biz", true },
- { "intoparking.com", false },
+ { "intoparking.com", true },
+ { "intoparking.fi", true },
{ "intpforum.com", true },
+ { "intr0.cf", true },
{ "intr0.com", true },
+ { "intr0.tk", true },
+ { "intrack.net.au", true },
{ "intradayseasonals.com", true },
{ "intramanager.dk", true },
+ { "intranet.dvag", true },
{ "intranetsec-regionra.fr", true },
{ "intraobes.com", true },
{ "intrasoft.com.au", true },
{ "intraxia.com", true },
+ { "intrepy.com", true },
+ { "intrigue3d.com", true },
{ "intropickup.ru", true },
{ "intrp.net", true },
{ "intvonline.com", true },
@@ -19777,6 +21731,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inusasha.de", true },
{ "inuyasha-petition.tk", true },
{ "invadelabs.com", true },
+ { "invalida.ru", true },
{ "invasion.com", true },
{ "invasivespeciesinfo.gov", true },
{ "invasmani.com", true },
@@ -19790,8 +21745,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inventum.cloud", true },
{ "inverselink-user-content.com", true },
{ "investarholding.nl", true },
- { "investigatore.it", true },
+ { "investigatore.roma.it", true },
+ { "investigazione.milano.it", true },
+ { "investigazione.roma.it", true },
{ "investigazionimoretti.it", true },
+ { "investinghacker.com.au", true },
{ "investinturkey.com.tr", true },
{ "investir.ch", true },
{ "investor-academy.jp", true },
@@ -19800,13 +21758,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "investorforms.com", true },
{ "investosure.com", true },
{ "investpay.ru", true },
+ { "invidio.us", true },
{ "invinoaustria.com", true },
{ "invinoaustria.cz", true },
{ "invioinc.com", true },
{ "inviosolutions.com", true },
{ "invisible-college.com", true },
- { "invisibles.ch", true },
- { "invisionita.com", true },
{ "invisiverse.com", true },
{ "invitacionesytarjetas.gratis", true },
{ "invitemember.com", true },
@@ -19814,57 +21771,67 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "invitethemhome.com", true },
{ "invkao.com", true },
{ "invoiced.com", true },
- { "invoicefinance.com", true },
- { "invoicefinance.nl", true },
{ "invoicehippo.nl", true },
{ "invuite.com", true },
+ { "invuite.com.au", true },
{ "inwao.com", true },
{ "inwestcorp.se", true },
- { "inxtravel.com.br", true },
+ { "inyourowntime.info", true },
+ { "inyourowntime.zone", true },
{ "inzdr.com", true },
{ "inzelabs.com", true },
+ { "inzernettechnologies.com", true },
{ "inzestfreunde.de", true },
{ "ioactive.com", true },
{ "iobint.com", true },
{ "iocheck.com", false },
{ "iochen.com", true },
{ "iocurrents.com", true },
- { "iodine.com", true },
{ "iofort.com", true },
{ "iojo.net", true },
{ "ioliver.co.uk", true },
{ "iomedia.ch", true },
{ "iompost.com", true },
{ "iomstamps.com", true },
+ { "iondrey.cf", true },
+ { "iondrey.fr", true },
+ { "iondrey.ga", true },
+ { "iondrey.gq", true },
+ { "iondrey.ml", true },
+ { "iondrey.tk", true },
+ { "ione.net.nz", true },
{ "ionlabs.kr", true },
- { "ionovia.de", true },
{ "ionspin.com", true },
{ "ionx.co.uk", true },
{ "ioover.net", true },
+ { "iop.intuit.com", false },
{ "iosartstudios.gr", true },
- { "iosjailbreakiphone.com", true },
{ "ioslo.net", true },
{ "iosmods.com", true },
{ "iosnoops.com", true },
{ "iossifovlab.com", true },
{ "iostream.by", true },
+ { "iotac.xyz", true },
{ "iowaent.com", true },
{ "iowaschoolofbeauty.com", true },
+ { "iowen.cn", true },
+ { "ip-address.me", true },
{ "ip-blacklist.net", true },
{ "ip-hahn.de", true },
+ { "ip-ra.com", true },
{ "ip-tanz.com", true },
{ "ip.sb", true },
- { "ip2country.info", true },
{ "ip3office.com", true },
- { "ip6.li", false },
+ { "ip6.li", true },
{ "ipad.li", true },
{ "ipadkaitori.jp", true },
{ "ipal.im", true },
{ "ipal.name", true },
{ "ipal.pl", true },
{ "ipal.tel", true },
+ { "iparkki.com", true },
{ "ipcareers.net", true },
- { "ipconsulting.se", true },
+ { "ipdsols.co.za", true },
{ "ipemcomodoro.com.ar", true },
{ "ipfire.org", true },
{ "ipfirebox.de", true },
@@ -19891,9 +21858,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iprim.ru", true },
{ "ipripojeni.cz", true },
{ "iproducemusic.com", true },
+ { "ips-consult.nl", true },
{ "ipsec.pl", true },
+ { "ipslsig.org", true },
{ "ipso.paris", true },
- { "ipssl.li", true },
{ "ipstream.it", true },
{ "ipswitch.com.tw", true },
{ "iptvzoom.xyz", true },
@@ -19915,12 +21883,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iranian.lgbt", true },
{ "iranianholiday.com", true },
{ "iranjeunesse.com", true },
+ { "irasandi.com", true },
{ "irayo.net", true },
{ "irc-results.com", true },
{ "irdvb.com", true },
{ "ireef.tv", true },
{ "iren.ch", true },
{ "irenekauer.com", true },
+ { "ireviewi.com", true },
{ "irf2.pl", true },
{ "irfan.id", true },
{ "irgendeine.cloud", true },
@@ -19931,7 +21901,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iriomote.com", true },
{ "iris-design.info", true },
{ "iris-insa.com", true },
- { "irisdesideratum.com", true },
{ "irish.dating", true },
{ "irish.radio", true },
{ "irishradioplayer.radio", true },
@@ -19943,21 +21912,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "irmag.ru", true },
{ "irmgard-woelfle.de", true },
{ "irmgardkoch.com", true },
- { "iro-iro.xyz", true },
{ "irodorinet.com", true },
{ "iroise.ch", true },
{ "ironcarnival.com", true },
{ "ironfistdesign.com", true },
{ "ironhide.de", true },
{ "ironpeak.be", true },
+ { "ironpony.com", true },
{ "irrewilse.se", true },
{ "irritant.net", true },
{ "iruarts.ch", true },
{ "iruca.co", true },
+ { "irvingramo.com", true },
+ { "iryogakkai.jp", true },
{ "is-going-to-rickroll.me", true },
- { "is-sw.net", true },
- { "isaac.world", true },
+ { "is-rocket.science", true },
+ { "is-socket.tk", true },
+ { "isa357.com", true },
+ { "isa5417.com", true },
+ { "isaaccomputerscience.org", true },
{ "isaacdgoodman.com", false },
+ { "isaackabel.cf", true },
+ { "isaackabel.ga", true },
+ { "isaackabel.gq", true },
+ { "isaackabel.ml", true },
+ { "isaackabel.tk", true },
{ "isaackhor.com", true },
{ "isaacman.tech", true },
{ "isaacmorneau.com", true },
@@ -19969,36 +21948,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "isabellavandijk.nl", true },
{ "isabelle-delpech.com", true },
{ "isabellehogarth.co.uk", true },
+ { "isabelmurillo-ordonez.com", true },
{ "isakssons.com", true },
+ { "isamay.es", true },
{ "isamiok.com", true },
{ "isara.com", true },
- { "isarklinikum.de", true },
{ "isaropiping.fr", true },
- { "isastylish.com", true },
{ "isavings.com", true },
{ "isayoga.de", true },
{ "isbaseballstillon.com", true },
{ "isbc-telecom.ru", true },
{ "isbengrumpy.com", true },
- { "isc2chapter-cny.org", true },
{ "iscert.org", true },
{ "isdn.jp", true },
{ "isecrets.se", true },
- { "iservicio.com.mx", true },
{ "iservicio.mx", true },
{ "isg-tech.com", true },
- { "isgp-studies.com", true },
+ { "isgp-studies.com", false },
{ "ishamf.com", true },
{ "ishangirdhar.com", true },
{ "ishiharaken.com", true },
{ "ishland.com", true },
- { "ishome.org", true },
{ "ishtarfreya.com", true },
{ "isif-ostewg.org", true },
{ "isil.fi", true },
{ "isimonbrown.co.uk", true },
{ "isincheck.com", true },
- { "isinolsun.com", true },
{ "isiso.com.tr", true },
{ "isistomie.com", true },
{ "isitchristmas.com", true },
@@ -20014,17 +21989,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iskogen.nu", true },
{ "islam.si", true },
{ "islamicmarkets.com", true },
+ { "islamonline.net", true },
{ "islandhosting.com", true },
{ "islavolcan.cl", true },
{ "isletech.net", true },
{ "isliada.org", true },
{ "islief.com", true },
+ { "islightdown.today", true },
{ "islykaithecutest.cf", true },
{ "islykaithecutest.ml", true },
{ "ismailkarsli.com", true },
{ "ismat.com", true },
{ "ismena.bg", true },
- { "ismetroonfiretoday.com", true },
{ "ismywebsitepenalized.com", true },
{ "isn.cz", true },
{ "iso27032.com", true },
@@ -20040,12 +22016,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "isopres.de", true },
{ "isotope.gov", true },
{ "isotopes.gov", true },
+ { "isovideo.com", true },
{ "isowosi.com", true },
{ "ispfontela.es", true },
{ "ispitrade.com", true },
{ "ispo.com.tw", true },
- { "ispsoft.pro", true },
{ "isqrl.de", true },
+ { "israel-in-color.com", true },
{ "israelbiblicalstudies.com", true },
{ "israelbizreg.com", true },
{ "isreedyinthe.uk", true },
@@ -20057,43 +22034,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "issio.net", true },
{ "issue.watch", true },
{ "issues.email", true },
- { "issuesofconcern.in", true },
{ "ist-intim.de", true },
+ { "ist.cm", true },
{ "istanbul.systems", true },
{ "istdieweltschonuntergegangen.de", true },
{ "isteinbaby.de", true },
+ { "isterfaslur.com", true },
{ "istheapplestoredown.com", true },
{ "istheapplestoredown.de", true },
{ "isthedoorlocked.com", true },
{ "istheinternetdown.com", true },
{ "istheinternetonfire.com", true },
+ { "isthephone.com", true },
{ "istheservicedown.co.uk", true },
{ "istheservicedown.com", true },
{ "istheservicedowncanada.com", true },
{ "isthnew.com", true },
+ { "istitutoricci.it", true },
+ { "istitutovivaldi.it", true },
{ "istogether.com", true },
{ "istore.lt", true },
{ "istorrent.is", true },
{ "istrazivac-istine.com", true },
{ "istschonsolangeinrente.de", true },
{ "istsi.org", true },
+ { "isusemasa.com", true },
{ "isuzupartscenter.com", true },
{ "isv.online", true },
{ "isvbscriptdead.com", true },
{ "isvsecwatch.org", true },
- { "isyu.xyz", true },
- { "isz-berlin.de", true },
{ "isz.no", true },
+ { "iszy.cc", true },
{ "it-academy.sk", true },
{ "it-boss.ro", true },
{ "it-faul.de", true },
{ "it-fernau.com", true },
+ { "it-inside.ch", true },
{ "it-jobbank.dk", true },
{ "it-kron.de", true },
{ "it-maker.eu", true },
+ { "it-meneer.nl", 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 },
@@ -20105,6 +22087,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "it-support.one", true },
{ "it-supportistockholm.se", true },
{ "it-supportnu.se", true },
+ { "it-swarm.net", true },
{ "it-sysoft.com", true },
{ "it-tekniker.nu", true },
{ "it-ti.me", true },
@@ -20115,6 +22098,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "itactiq.info", true },
{ "itaiferber.net", true },
{ "ital-gamma.be", true },
+ { "italbavaro.com", true },
{ "italia-store.com", true },
{ "italiachegioca.com", true },
{ "italian.dating", true },
@@ -20122,15 +22106,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "italianshoemanufacturers.com", true },
{ "italieflydrive.nl", true },
{ "italserrande.it", true },
- { "italyinspires.com", true },
+ { "italserver.com", true },
{ "itamservices.nl", true },
{ "itap.gov", true },
{ "itb-online.co.uk", true },
{ "itbox.cl", true },
+ { "itcbuerobedarf.de", true },
{ "itchy.nl", true },
- { "itcko.sk", true },
+ { "itchybrainscentral.com", true },
+ { "itconsulting-wolfinger.de", true },
{ "itcs.services", true },
{ "itdashboard.gov", true },
+ { "itdo.com", true },
{ "itecor.net", true },
{ "iteecafe.hu", true },
{ "iteha.de", true },
@@ -20142,31 +22129,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "itesign.de", true },
{ "itfh.eu", true },
{ "itfix.cz", true },
- { "itfly.xyz", true },
- { "itforge.nl", true },
+ { "itgoesup.com", true },
+ { "itgoesupent.com", true },
+ { "itgoesupentertainment.com", true },
{ "ithakama.cz", true },
+ { "ithelfer.ch", true },
{ "ithenrik.com", true },
{ "ithinc.net", true },
{ "ithink.cf", true },
{ "ithjalpforetag.se", true },
{ "itikon.com", true },
{ "itilo.de", true },
- { "itinthebubble.com", true },
{ "itis.gov", true },
{ "itis4u.ch", true },
- { "itjob.ma", true },
{ "itkaufmann.at", true },
{ "itkonsultstockholm.se", true },
- { "itlitera.com", true },
{ "itludens.com", true },
{ "itm-c.de", true },
+ { "itmanie.cz", true },
{ "itmindscape.com", true },
{ "itn.co.uk", true },
{ "itneeds.tech", true },
{ "itnota.com", true },
{ "itochan.jp", true },
{ "itooky.com", true },
- { "itouriria.com", true },
+ { "itpanda.pl", true },
{ "itpro.ua", true },
{ "itraveille.fr", true },
{ "itreallyaddsup.com", true },
@@ -20176,26 +22163,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "its-future.com", true },
{ "its-gutachten.de", true },
{ "its420somewhere.com", true },
- { "its4living.com", true },
{ "itsabouncything.com", true },
- { "itsanicedoor.co.uk", true },
{ "itsasaja.com", true },
{ "itsaw.de", true },
{ "itsayardlife.com", true },
{ "itsblue.de", true },
+ { "itsburning.nl", true },
{ "itsdcdn.com", true },
{ "itsecblog.de", true },
{ "itsecguy.com", true },
{ "itseeze.com", true },
{ "itsense.fr", true },
{ "itsevident.com", true },
+ { "itsfitlab.com", true },
{ "itsgoingdown.org", true },
+ { "itshka.rv.ua", true },
{ "itsmyparty.ie", true },
{ "itsnotquitethehilton.com", true },
{ "itsok.de", true },
+ { "itsok.link", true },
{ "itspartytimeonline.co.uk", true },
{ "itspecialista.eu", true },
{ "itspersonaltraining.nl", true },
+ { "itsquiet.org", true },
{ "itsryan.com", true },
{ "itsstefan.eu", true },
{ "itstatic.tech", true },
@@ -20204,20 +22194,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "itsupportnacka.se", true },
{ "itsv.at", true },
{ "itswincer.com", true },
+ { "itsynergy.co.uk", true },
{ "itzap.com.au", true },
{ "iurisnow.com", true },
{ "iusedtosmoke.com", true },
{ "iuyos.com", true },
{ "ivact.co.jp", true },
+ { "ivanaleksandrov.net", true },
{ "ivanbenito.com", true },
{ "ivanboi.com", true },
{ "ivancacic.com", false },
{ "ivanmeade.com", true },
+ { "ivanovolive.ru", true },
{ "ivaoru.org", true },
{ "ivfausland.de", true },
{ "ivfmeds.com", true },
{ "ivig.com.br", true },
+ { "ivisitorinsurance.com", true },
{ "ivo.co.za", true },
+ { "ivocopro.de", true },
+ { "ivocotec.de", true },
+ { "ivoid.cf", true },
{ "ivopetkov.com", true },
{ "ivor.io", true },
{ "ivor.is", true },
@@ -20230,7 +22227,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ivusn.cz", true },
{ "ivvl.ru", true },
{ "ivy-league-colleges.com", true },
- { "ivy.show", true },
{ "iwader.co.uk", true },
{ "iwalton.com", true },
{ "iwantexchange.com", true },
@@ -20242,12 +22238,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iwatchcops.com", true },
{ "iwatchcops.org", true },
{ "iwch.tk", true },
- { "iwebolutions.com", true },
+ { "iwd.gc.ca", true },
{ "iwell.de", true },
{ "iwizerunek.pl", true },
{ "iworos.com", true },
{ "iww.me", true },
- { "iwyc.cn", true },
+ { "ixanis.net", true },
{ "ixds.org", true },
{ "ixnext.de", true },
{ "ixquick-proxy.com", true },
@@ -20259,71 +22255,108 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ixquick.info", true },
{ "ixquick.nl", true },
{ "iyassu.com", true },
+ { "iyc.web.tr", true },
{ "iyinolaashafa.com", true },
{ "iyn.me", true },
{ "iyouewo.com", true },
{ "iyuanbao.net", true },
{ "iz8mbw.net", true },
- { "izanah.com", true },
{ "izevg.ru", true },
- { "izhaojie.com", true },
{ "izodiacsigns.com", true },
+ { "izolpoznan.pl", true },
+ { "izt.tech", true },
+ { "izttech.com", true },
{ "izuba.info", true },
{ "izumi.tv", true },
+ { "izxxs.com", true },
+ { "izxxs.net", true },
+ { "izxzw.net", true },
{ "izzys.casa", true },
{ "j-elliott.co.uk", true },
{ "j-navi.com", true },
- { "j-robertson.com", true },
+ { "j-ph.ovh", true },
+ { "j-softlab.com", true },
{ "j0bs.org", true },
{ "j0e.com", true },
+ { "j0hndball.com", true },
{ "j0m.de", true },
{ "j0s.at", true },
{ "j0s.eu", true },
{ "j15h.nu", true },
+ { "j1visahealthinsurance.com", true },
{ "j2h.de", true },
{ "j3e.de", true },
+ { "j5197.co", true },
{ "j5lx.de", true },
{ "j5lx.eu", true },
{ "j5lx.io", true },
- { "ja-dyck.de", true },
+ { "j605.tk", true },
+ { "j6729.co", true },
+ { "j6957.co", true },
+ { "j9297.co", true },
+ { "j9504.com", true },
+ { "j9507.com", true },
+ { "j9508.com", true },
+ { "j9512.com", true },
+ { "j9514.com", true },
+ { "j9515.com", true },
+ { "j9516.com", true },
+ { "j9517.com", true },
+ { "j95aa.com", true },
+ { "j95app.com", true },
+ { "j95bb.com", true },
+ { "j95cc.com", true },
+ { "j95dd.com", true },
+ { "j95ee.com", true },
+ { "j95ios.com", true },
+ { "j95ss.com", true },
+ { "j95xx.com", true },
+ { "j95zz.com", true },
+ { "j9721.com", true },
+ { "j9728.co", true },
{ "ja-gps.com.au", true },
+ { "ja-zur-gs.de", true },
{ "jaakkohannikainen.fi", true },
{ "jaalits.com", true },
+ { "jaamaa.com", true },
{ "jaarvistech.com", true },
{ "jaba.hosting", true },
{ "jababu.cz", true },
{ "jabbari.io", true },
+ { "jabbas.eu", true },
{ "jabber.at", true },
{ "jabberfr.org", true },
{ "jabbers.one", true },
{ "jabberzac.org", true },
{ "jaberg-rutschi.ch", true },
{ "jabergrutschi.ch", true },
+ { "jability.ovh", true },
{ "jabjab.de", true },
{ "jaccblog.com", true },
{ "jacekowski.org", true },
{ "jacik.cz", true },
+ { "jack2celebrities.com", true },
{ "jackassofalltrades.org", true },
{ "jackdawphoto.co.uk", true },
{ "jackdelik.de", true },
{ "jackf.me", true },
+ { "jackflet.ch", true },
{ "jackgreenrealty.com", true },
{ "jackhoodtransportation.com", true },
- { "jackingramnissanparts.com", true },
+ { "jackjack.ga", true },
{ "jackpothappy.com", true },
{ "jacksanalytics.com", true },
+ { "jacksball.com", true },
{ "jackson-quon.com", true },
{ "jackson.jp", true },
{ "jacksonhu.com", true },
{ "jacksonvillestation.com", true },
{ "jacksorrell.com", true },
- { "jacksutton.info", true },
{ "jackwozny.com", true },
{ "jackyliao.me", true },
{ "jackyliao123.tk", true },
{ "jackyyf.com", false },
{ "jacobamunch.com", true },
- { "jacobdevans.com", true },
{ "jacobhaug.com", false },
{ "jacobi-server.de", true },
{ "jacobian.org", true },
@@ -20331,8 +22364,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jacobs-implantate.at", true },
{ "jacuzziprozone.com", true },
{ "jadchaar.me", true },
+ { "jadehotel.nl", true },
{ "jadopado.com", true },
{ "jaegerlacke.de", true },
+ { "jaepinformatica.com", true },
{ "jaetech.org", true },
{ "jagbouncycastles.co.uk", true },
{ "jagerman.com", true },
@@ -20343,21 +22378,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jahmusic.net", true },
{ "jahner.xyz", true },
{ "jahofmann.de", false },
+ { "jaiestate.com", true },
{ "jailbreakingisnotacrime.org", true },
- { "jaion.xyz", true },
+ { "jaingynecology.com", true },
{ "jaispirit.com", true },
{ "jaitnetworking.com", false },
{ "jajsemjachym.cz", true },
+ { "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 },
+ { "jake.wales", true },
+ { "jake1.eu", true },
{ "jakecurtis.de", true },
{ "jakereynolds.co", true },
{ "jakerullman.com", true },
{ "jaketremper.com", true },
+ { "jakewales.com", true },
{ "jakewalker.xyz", true },
{ "jakewestrip.com", true },
{ "jakob-server.tk", true },
@@ -20369,6 +22408,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jakub-boucek.cz", true },
{ "jakubboucek.cz", true },
{ "jakubklimek.com", true },
+ { "jakubsindelar.cz", true },
{ "jakubtopic.cz", true },
{ "jakubvrba.cz", true },
{ "jala.co.jp", true },
@@ -20379,16 +22419,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jamalfi.bio", true },
{ "jamberrynails.co.uk", true },
{ "james-bell.co.uk", true },
- { "james-digital.com", true },
{ "james-loewen.com", true },
- { "jamesachambers.com", true },
+ { "jamesachambers.com", false },
{ "jamesaimonetti.com", true },
{ "jamesbillingham.com", true },
{ "jameschorlton.co.uk", true },
- { "jamesclark.com", true },
{ "jamesdorf.com", true },
{ "jamesedition.com", true },
{ "jamesgreenfield.com", true },
+ { "jamesheald.com", true },
{ "jameshemmings.co.uk", true },
{ "jameshost.net", true },
{ "jameshunt.us", false },
@@ -20398,10 +22437,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jamesmilazzo.com", true },
{ "jamesmorrison.me", true },
{ "jamesmurphy.com.au", false },
- { "jamesrobertson.io", true },
{ "jamesrobertson.net", true },
{ "jamesross.name", true },
- { "jamesrussellward.co.uk", true },
{ "jamessmith.me.uk", true },
{ "jamestmartin.me", true },
{ "jamesturnerstickley.com", true },
@@ -20428,14 +22465,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jan-rieger.de", true },
{ "jan-roenspies.de", true },
{ "jan-von.de", true },
- { "janada.cz", true },
{ "janaundgeorgsagenja.eu", true },
{ "janbrodda.de", true },
{ "jandev.de", true },
{ "jane.com", true },
{ "janehamelgardendesign.co.uk", true },
{ "janelauhomes.com", true },
- { "jangocloud.tk", true },
{ "janhermann.cz", true },
{ "janhuelsmann.com", true },
{ "jani.media", true },
@@ -20450,29 +22485,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jannekekaasjager.nl", true },
{ "jannisfink.de", true },
{ "jannyrijneveld.nl", true },
- { "janoberst.com", true },
{ "janokacer.sk", true },
{ "janschaumann.de", true },
- { "jansen-schilders.nl", true },
{ "janterpstra.eu", true },
{ "jantinaboelens.nl", true },
{ "janvari.com", true },
{ "janvaribalint.com", true },
- { "jaot.info", true },
+ { "janz.online", true },
{ "japanesemotorsports.net", true },
{ "japangids.nl", true },
{ "japaniac.de", false },
{ "japanphilosophy.com", false },
+ { "japansm.com", true },
{ "japanwatches.xyz", true },
- { "japon-japan.com", true },
- { "jar.io", true },
- { "jardin-exotique-rennes.fr", true },
{ "jardineriaon.com", true },
{ "jardiniersduminotaure.fr", true },
- { "jaredeberle.org", false },
- { "jaredfernandez.com", true },
{ "jaredfraser.com", true },
- { "jario.com.br", true },
+ { "jarmatys.pl", true },
{ "jarniashop.se", true },
{ "jaroku.com", true },
{ "jarondl.net", true },
@@ -20483,28 +22512,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jashvaidya.com", true },
{ "jasmijnwagenaar.nl", true },
{ "jasminefields.net", true },
- { "jason.re", true },
- { "jasonadam.de", true },
{ "jasonamorrow.com", true },
{ "jasongerber.ch", true },
{ "jasonmili.online", true },
{ "jasonsplecoscichlids.com", true },
{ "jasper.link", true },
+ { "jasperhammink.com", true },
{ "jasperhuttenmedia.com", true },
{ "jasperpatterson.me", true },
+ { "jastrow.me", true },
{ "jaszbereny-vechta.eu", true },
{ "javalestari.com", true },
{ "javamilk.com", true },
- { "javi.pro", true },
+ { "javelin.cc", true },
+ { "javfree.me", true },
+ { "javhdmovies.com", true },
+ { "javi.pro", false },
{ "javierburgos.net", true },
{ "javierlorente.es", true },
+ { "javik.net", true },
{ "jaxfstk.com", true },
{ "jaxxnet.co.uk", true },
{ "jaxxnet.org", true },
{ "jaybrokers.com", true },
- { "jaycouture.com", true },
{ "jayf.de", true },
{ "jayfreestone.com", false },
+ { "jayharkess.uk", true },
{ "jaymecd.rocks", true },
{ "jaypandit.me", true },
{ "jayrl.com", true },
@@ -20522,7 +22555,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jazzy.pro", true },
{ "jazzysumi.com", true },
{ "jbbd.fr", true },
- { "jbradaric.me", true },
+ { "jbeta.is", true },
+ { "jblackweb.com", true },
+ { "jbridal.com.au", true },
{ "jbs-jardins.ch", true },
{ "jbsinternational.com", true },
{ "jbt-stl.com", true },
@@ -20532,14 +22567,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jcb.com", true },
{ "jcbgolfandcountryclub.com", true },
{ "jci.cc", true },
- { "jcit.xyz", true },
{ "jclynne.com", true },
+ { "jcontspoord.nl", true },
{ "jcsesecuneta.com", true },
{ "jctf.team", true },
{ "jcus.co", true },
+ { "jcvidroseespelhos.com.br", true },
{ "jcwodan.nl", true },
- { "jd-group.co.uk", true },
+ { "jcyz.cf", true },
{ "jd1.de", true },
+ { "jd777.vip", true },
{ "jdassets.com", true },
{ "jdc.io", true },
{ "jdcdirectsales.com", true },
@@ -20550,9 +22587,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jdjohnsonwaterproofing.com", true },
{ "jdm.elk.pl", true },
{ "jdm.pl", true },
+ { "jdmgarage.com.au", true },
{ "jdncr.com", true },
{ "jdoi.pw", true },
- { "jdoiron.me", true },
{ "jdpleisure.co.uk", true },
{ "jdscastlehire.co.uk", true },
{ "jdtic.com", true },
@@ -20568,6 +22605,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jeanneret-combustibles.ch", true },
{ "jec-dekrone.be", true },
{ "jecho.cn", true },
+ { "jecjacshop.com", true },
{ "jeda.ch", true },
{ "jedepannetonordi.fr", true },
{ "jedidiah.eu", false },
@@ -20580,6 +22618,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jeepeg.com", true },
{ "jeeran.com", true },
{ "jeeranservices.com", true },
+ { "jeerbl.com", true },
{ "jeff.forsale", true },
{ "jeffcloninger.net", true },
{ "jeffersonregan.co.uk", true },
@@ -20587,14 +22626,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jeffersonregan.net", true },
{ "jeffhaferman.com", true },
{ "jeffmcneill.com", true },
+ { "jeffpenchoff.com", true },
{ "jeffreyhaferman.com", true },
{ "jeffrhinelander.com", true },
{ "jeffri.me", true },
{ "jeffsanders.com", true },
{ "jefftickle.com", true },
{ "jeffwebb.com", true },
+ { "jefrydco.id", true },
{ "jefsweden.eu", true },
- { "jehovahsays.net", true },
{ "jej.cz", true },
{ "jej.sk", true },
{ "jekhar.com", true },
@@ -20612,7 +22652,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jelleschneiders.com", true },
{ "jelly.cz", true },
{ "jellybeanbooks.com.au", true },
- { "jelmer.co.uk", true },
{ "jelmer.uk", true },
{ "jelmoli-shop.ch", true },
{ "jem.gov", true },
@@ -20632,6 +22671,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jeproteste.info", true },
{ "jeremiahbenes.com", true },
{ "jeremy-chen.org", true },
+ { "jeremy.codes", false },
{ "jeremy.hu", true },
{ "jeremybentham.com", true },
{ "jeremybloomfield.co.uk", true },
@@ -20644,6 +22684,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jeremytcd.com", true },
{ "jericamacmillan.com", true },
{ "jering.tech", true },
+ { "jermann.biz", true },
{ "jeroendeneef.com", true },
{ "jerret.de", true },
{ "jerrysretailstores.com", true },
@@ -20652,8 +22693,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jerseybikehire.co.uk", true },
{ "jerseyjumpingbeans.co.uk", true },
{ "jerseylvi2013.org", true },
+ { "jerseyplantsdirect.com", true },
{ "jes.events", true },
{ "jesec.io", true },
+ { "jesiensredniowiecza.pl", true },
{ "jesse3.com", true },
{ "jesseerbach.com", true },
{ "jessekaufman.com", true },
@@ -20664,25 +22707,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jessicahrehor.com", true },
{ "jesters-court.net", true },
{ "jesuisadmin.fr", true },
+ { "jesuisunpapageek.fr", true },
+ { "jesusvazquez.online", true },
{ "jet-stream.fr", true },
{ "jetbbs.com", true },
{ "jetflex.de", true },
{ "jetkittens.co.uk", true },
{ "jetsetboyz.net", true },
{ "jetsieswerda.nl", true },
- { "jettlarue.com", true },
{ "jetwhiz.com", true },
+ { "jeurissen.co", true },
{ "jeuxetcodes.fr", true },
{ "jeweet.net", true },
{ "jewishboyscouts.com", true },
{ "jewishquotations.com", true },
+ { "jf-fotos.de", true },
{ "jfbst.net", true },
{ "jfr.im", true },
{ "jfreitag.de", true },
- { "jfsa.jp", true },
{ "jgid.de", true },
{ "jgke.fi", true },
{ "jglover.com", true },
+ { "jgoguen.ca", true },
{ "jgoldgroup.com", true },
{ "jgregory.co.uk", true },
{ "jgwb.de", true },
@@ -20693,7 +22739,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jhill.de", true },
{ "jhollandtranslations.com", true },
{ "jhservicos.net.br", true },
- { "jhuang.me", true },
{ "jhwestover.com", true },
{ "ji0vwl.net", true },
{ "jiahao.codes", true },
@@ -20702,19 +22747,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jianny.me", true },
{ "jianshu.com", true },
{ "jianwei.wang", true },
- { "jianyuan.pro", true },
- { "jiatingtrading.com", true },
+ { "jianyuan.art", true },
{ "jicaivvip.com", true },
{ "jichi.io", true },
{ "jichi000.win", true },
+ { "jie.dance", true },
+ { "jif.gc.ca", true },
+ { "jiji.co.tz", true },
+ { "jiji.com.gh", true },
+ { "jiji.ke", true },
+ { "jiji.ug", true },
{ "jimbiproducts.com", true },
{ "jimbraaten.com", true },
{ "jimbutlerkiaparts.com", true },
{ "jimdorf.com", true },
{ "jime-hlavou.cz", true },
+ { "jimeaton.com", true },
{ "jimfranke.com", true },
{ "jimfranke.nl", true },
- { "jimizhou.xyz", true },
{ "jimmycai.com", false },
{ "jimmyroura.ch", true },
{ "jimshaver.net", true },
@@ -20723,44 +22773,50 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jinbo123.com", false },
{ "jinbowiki.org", true },
{ "jing.su", true },
+ { "jingbo.fan", true },
{ "jingjo.com.au", true },
+ { "jingyunbank.com", true },
{ "jinja.ai", true },
{ "jinkuru.net", true },
{ "jino-jossy.appspot.com", true },
{ "jinshuju.net", true },
{ "jintaiyang123.org", true },
{ "jiogo.com", true },
- { "jiosongs.biz", true },
{ "jirav.com", true },
{ "jiripudil.cz", true },
- { "jirosworld.com", true },
{ "jisai.net.cn", true },
{ "jisha.site", true },
{ "jix.im", true },
{ "jixun.moe", true },
{ "jiyue.com", true },
{ "jiyue.moe", true },
- { "jiyusu.com", true },
- { "jiyuu-ni.com", true },
{ "jiyuu-ni.net", true },
+ { "jj5197.co", true },
+ { "jj6729.co", true },
+ { "jj6729.com", true },
+ { "jj6957.co", true },
+ { "jj9297.co", true },
+ { "jj9397.com", true },
+ { "jj9721.com", true },
+ { "jj9728.co", true },
{ "jjhampton.com", true },
{ "jjj.blog", 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 },
+ { "jkg.tw", true },
{ "jki.io", true },
{ "jkinteriorspa.com", true },
{ "jkrippen.com", true },
+ { "jldp.org", true },
{ "jlink.nl", true },
{ "jlkhosting.com", true },
{ "jloh.codes", true },
{ "jlponsetto.com", true },
{ "jlr-luxembourg.com", true },
+ { "jltcsecuritygroup.com", true },
{ "jltctech.com", true },
{ "jm-bea.net", true },
{ "jmalarcon.es", true },
@@ -20772,29 +22828,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jmcataffo.com", true },
{ "jmce.eu", true },
{ "jmcleaning.services", true },
- { "jmdekker.it", true },
+ { "jmdiesel.com", true },
{ "jmedved.com", true },
{ "jmentertainment.co.uk", true },
{ "jmfjltd.com", true },
- { "jmk.hu", true },
{ "jmorahan.net", true },
{ "jmpb.hu", true },
+ { "jms8.net", true },
+ { "jmsjms.cc", true },
+ { "jmsjms.me", true },
+ { "jmsjms.top", true },
+ { "jmsjms.xyz", true },
{ "jmsolodesigns.com", true },
{ "jmssg.jp", true },
+ { "jmwap.com", true },
{ "jnjdj.com", true },
{ "jnm-art.com", true },
{ "jnordell.com", true },
{ "joa-ebert.com", true },
{ "joanofarcmtcarmel.org", true },
{ "joaoaugusto.net", true },
+ { "joaopenteado.com", true },
{ "joaosampaio.com.br", true },
{ "job-ofertas.info", true },
{ "job.biz.tr", true },
+ { "jobalicious.nl", true },
{ "jobatus.com.br", true },
{ "jobatus.es", true },
{ "jobatus.it", true },
{ "jobatus.mx", true },
{ "jobatus.pt", true },
+ { "jobbidag.se", true },
{ "jobbkk.com", true },
{ "jobbsafari.no", true },
{ "jobbsafari.se", true },
@@ -20805,12 +22869,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joblife.co.za", true },
{ "jobmi.com", true },
{ "jobmiplayground.com", true },
- { "jobs-in-tech.com", true },
{ "jobs.at", true },
{ "jobs.ch", true },
{ "jobs4sales.ch", true },
+ { "jobsarkari.com", true },
{ "jobseekeritalia.it", true },
+ { "jobsindemedia.nl", true },
{ "jobsisbrown.com", true },
+ { "jobsnet.eu", true },
{ "jobsuchmaschine.ch", true },
{ "jobwinner.ch", true },
{ "jobzninja.com", true },
@@ -20822,13 +22888,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jodlajodla.si", true },
{ "joduska.me", true },
{ "jodyboucher.com", false },
+ { "jodyshop.com", true },
{ "joe262.com", true },
+ { "joebiden.com", true },
+ { "joebobbriggs.net", true },
{ "joedavison.me", true },
- { "joedinardo.com", true },
{ "joedoyle.us", true },
{ "joefixit.co", true },
- { "joehenry.co.uk", true },
- { "joejohnson.name", true },
{ "joel.coffee", true },
{ "joelcoustrain.com", true },
{ "joeldrapper.com", true },
@@ -20842,23 +22908,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joelmunch.com", true },
{ "joelnichols.uk", true },
{ "joelotu.com", true },
- { "joemotherfuckingjohnson.com", true },
+ { "joelving.dk", true },
{ "joepitt.co.uk", false },
{ "joergschneider.com", true },
+ { "joerosca.com", true },
{ "joerss.at", true },
{ "joeseago.com", true },
{ "joeskup.com", true },
- { "joesniderman.com", true },
{ "joespaintingpgh.com", true },
{ "joestead.codes", false },
{ "joetsutj.com", true },
{ "joetyson.me", true },
+ { "joeyfelix.com", true },
{ "joeygitalian.com", true },
{ "joeyhoer.com", true },
{ "joeysmith.com", true },
{ "joeyvanvenrooij.nl", true },
- { "jogi-server.de", true },
- { "jogorama.com.br", false },
+ { "jogjacar.com", true },
{ "jogwitz.de", true },
{ "johanli.com", true },
{ "johannes-bauer.com", true },
@@ -20867,76 +22933,83 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "johannes.wtf", true },
{ "johannesburg-escorts.co.za", true },
{ "johannesen.tv", true },
- { "johanneskonrad.de", true },
{ "johannespichler.com", false },
{ "johanpeeters.com", true },
{ "johansf.tech", true },
{ "johego.org", true },
{ "johnaltamura.com", true },
+ { "johnball.co", true },
{ "johnbeil.com", true },
{ "johnberan.com", true },
{ "johnblackbourn.com", true },
{ "johnbpodcast.com", true },
{ "johncook.ltd.uk", true },
+ { "johndball.co", true },
{ "johndball.com", true },
+ { "johndball.info", true },
+ { "johndball.net", true },
+ { "johndball.org", true },
{ "johnfulgenzi.com", true },
{ "johngadenne.com.au", true },
{ "johngallias.com", true },
- { "johngo.tk", false },
+ { "johngmchenrymd.com", true },
{ "johnguant.com", true },
+ { "johnhancocknypensions.com", true },
+ { "johnhancockpensions.com", true },
{ "johnhgaunt.com", true },
{ "johnkastler.net", true },
- { "johnmcc.net", true },
+ { "johnkraal.com", true },
{ "johnmcintosh.pro", true },
{ "johnmh.me", true },
{ "johnmichel.org", true },
- { "johnno.be", true },
+ { "johnnybegood.tk", true },
{ "johnnybet.com", true },
{ "johnnybsecure.com", true },
{ "johnroach.io", true },
{ "johnroberts.me", true },
{ "johnrockefeller.net", true },
+ { "johnrosewicz.com", true },
+ { "johnsanchez.io", true },
{ "johnsegovia.com", true },
- { "johnsiu.com", true },
- { "johnsonho.net", true },
{ "johnvanhese.nl", true },
{ "johnyytb.be", true },
{ "joi-dhl.ch", true },
+ { "joinhahobby.com.br", true },
{ "joinhonor.com", true },
{ "jointotem.com", true },
{ "joinus-outfits.nl", true },
{ "jojosplaycentreandcafeteria.co.uk", true },
{ "jokedalderup.nl", true },
+ { "jokequebec.com", true },
{ "jokerice.co.uk", true },
{ "jokesbykids.com", true },
{ "jokewignand.nl", true },
{ "joliettech.com", true },
+ { "jolinebrussel.nl", true },
{ "jollausers.de", true },
{ "jolle.io", true },
{ "jollygoodspudz.ca", true },
{ "jollykidswobbleworld.co.uk", true },
+ { "jolo.software", true },
{ "jolokia.ch", true },
+ { "jomagus.de", true },
+ { "jomibe.de", true },
{ "jomo.tv", true },
- { "jomofojo.co", true },
- { "jomofojo.com", true },
{ "jonahperez.com", true },
{ "jonale.net", true },
{ "jonandnoraswedding.com", true },
{ "jonas-thelemann.de", true },
{ "jonas-wenk.de", false },
{ "jonas.me", true },
+ { "jonasberger.com", true },
{ "jonaskjodt.com", true },
{ "jonasled.de", true },
{ "jonaswitmer.ch", true },
{ "jonathancarter.org", true },
{ "jonathandupree.com", true },
- { "jonathanha.as", true },
- { "jonathanj.nl", true },
{ "jonathanlara.com", true },
{ "jonathanreyes.com", false },
- { "jonathanschle.de", true },
{ "jonathanscott.me", true },
- { "jonathanselea.se", false },
{ "jonblankenship.com", true },
{ "jondarby.com", true },
{ "jondevin.com", true },
@@ -20952,6 +23025,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jonkermedia.nl", false },
{ "jonlabelle.com", true },
{ "jonlu.ca", true },
+ { "jonnasbeauty.com", true },
+ { "jonny5.ru", true },
{ "jonnybarnes.uk", true },
{ "jonnystoten.com", true },
{ "jonoalderson.com", true },
@@ -20960,9 +23035,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jonpavelich.com", true },
{ "jons.org", true },
{ "jonscaife.com", true },
+ { "jonssheds.direct", true },
+ { "joodari.fi", true },
{ "jooksms.com", true },
{ "jooksuratas.ee", true },
- { "joomlant.org", true },
{ "joompress.biz", true },
{ "joona.pw", true },
{ "joonatoona.me", true },
@@ -20971,16 +23047,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jopsens.de", true },
{ "joran.org", true },
{ "jorcus.com", true },
- { "jordan-jungk.de", true },
{ "jordandevelopment.com", true },
- { "jordanhamilton.me", true },
+ { "jordanhamilton.me", false },
{ "jordankmportal.com", true },
{ "jordans.co.uk", true },
+ { "jordanscorporatelaw.com", true },
{ "jordanstrustcompany.com", true },
{ "jordhy.com", true },
- { "jordiescudero.com", true },
- { "jorexenterprise.com", true },
- { "jorgerosales.org", true },
{ "jorisdalderup.nl", true },
{ "jornalalerta.com.br", true },
{ "jorsev.com", true },
@@ -20995,11 +23068,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joseitoda.org", true },
{ "josemikkola.fi", true },
{ "josepbel.com", true },
+ { "josephbarela.com", true },
{ "josephbleroy.com", true },
{ "josephgeorge.com.au", true },
{ "josephre.es", false },
{ "josephsniderman.com", true },
- { "josephsniderman.net", true },
{ "josephsniderman.org", true },
{ "josephv.website", true },
{ "joshgilson.com", true },
@@ -21007,6 +23080,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joshharkema.com", true },
{ "joshharmon.me", true },
{ "joshics.in", true },
+ { "joshjanzen.com", true },
{ "joshlovephotography.co.uk", true },
{ "joshpanter.com", false },
{ "joshrickert.com", true },
@@ -21016,11 +23090,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joshua-kuepper.de", true },
{ "joshua.bio", true },
{ "joshuadmiller.info", true },
+ { "joshuamessick.com", true },
{ "joshuameunier.com", true },
{ "joshuarogers.net", true },
{ "josoansi.de", true },
{ "journalism-schools.com", true },
+ { "journeedesfilles.gc.ca", true },
{ "journeyfriday.rocks", true },
+ { "journeyof1000hops.com", true },
{ "journeytomastery.net", true },
{ "jouwpaardenbak.nl", true },
{ "jovani.com", false },
@@ -21034,15 +23111,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joysinventingblog.com", true },
{ "jpbe-network.de", true },
{ "jpbe.de", true },
+ { "jpbike.cz", false },
{ "jpdeharenne.be", true },
{ "jpeg.io", true },
+ { "jpgangbang.com", true },
{ "jphandjob.com", true },
{ "jplesbian.com", true },
{ "jpmelos.com", true },
{ "jpmelos.com.br", true },
{ "jpmguitarshop.com.br", true },
{ "jpod.cc", true },
+ { "jpoirierlavoie.ca", true },
+ { "jpph.org", true },
{ "jpralves.net", true },
+ { "jproxx.com", true },
{ "jps-selection.co.uk", true },
{ "jps-selection.com", true },
{ "jps-selection.eu", true },
@@ -21050,13 +23132,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jpsinflatables.co.uk", true },
{ "jpslconsulting.ca", true },
{ "jquery.wtf", true },
- { "jr5devdoug.xyz", true },
- { "jr5devdouglas.xyz", true },
- { "jr5proxdoug.xyz", true },
{ "jrabasco.me", true },
{ "jrc9.ca", true },
{ "jrchaseify.xyz", true },
{ "jreb.nl", true },
+ { "jreiff.de", true },
{ "jrflorian.com", true },
{ "jross.me", true },
{ "jrtapsell.co.uk", true },
@@ -21069,25 +23149,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jsdelivr.com", true },
{ "jselby.net", true },
{ "jsent.co.uk", true },
- { "jsevilleja.org", true },
- { "jskier.com", false },
+ { "jsevilleja.org", false },
+ { "jsk26.ru", true },
{ "jskoelliken.ch", true },
+ { "jsme.cz", true },
{ "jsmetallerie.fr", true },
{ "jsnfwlr.com", true },
{ "jsnfwlr.io", true },
+ { "json.download", true },
{ "jsonsinc.com", true },
{ "jsteward.moe", true },
{ "jstore.ch", true },
- { "jsvr.tk", false },
+ { "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 },
+ { "jttech.se", true },
{ "ju.io", true },
{ "juan23.edu.uy", true },
{ "juanfrancisco.tech", true },
@@ -21095,27 +23177,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "juanmaguitar.com", true },
{ "juanmazzetti.com", true },
{ "juanxt.ddns.net", true },
+ { "jubilerkarat.pl", true },
{ "jubileum.online", true },
{ "jubileumfotograaf.nl", true },
+ { "jubobs.com", true },
{ "jucca-nautica.si", true },
{ "juch.cc", true },
{ "juchit.at", true },
{ "jucktehkeinen.de", true },
- { "judc-ge.ch", true },
{ "judge2020.com", true },
- { "judge2020.me", true },
{ "judoprodeti.cz", true },
{ "judosaintdenis.fr", true },
+ { "judytka.cz", true },
{ "juef.space", true },
{ "juegosycodigos.es", true },
{ "juegosycodigos.mx", true },
{ "juegosyolimpicos.com", true },
- { "juergen-elbert.de", true },
{ "juergen-roehrig.de", true },
{ "juergenhecht.de", true },
{ "juergenklieber.de", true },
{ "juergenspecht.com", true },
{ "juergenspecht.de", true },
+ { "juergmeier.ch", true },
{ "jugendfeuerwehr-vechta.de", true },
{ "jugendhackt.org", true },
{ "jugendsuenden.info", true },
@@ -21127,8 +23210,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jule-spil.dk", true },
{ "julenlanda.com", false },
{ "julestern.com", true },
+ { "julian-post.de", true },
{ "julian-uphoff.de", true },
{ "julian-weigle.de", true },
+ { "julianbroadway.com", true },
{ "juliangonggrijp.com", true },
{ "julianickel.de", true },
{ "julianmeyer.de", true },
@@ -21148,6 +23233,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "juliekproperties.com", true },
{ "juliemaurel.fr", true },
{ "julienc.io", true },
+ { "juliendoco.com", true },
{ "julienpaterne.com", true },
{ "julienschmidt.com", true },
{ "julientartarin.com", true },
@@ -21159,7 +23245,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jumbopan.net", true },
{ "jumboquid.co.uk", true },
{ "jump-zone.co.uk", true },
- { "jump.bg", false },
{ "jump.wtf", true },
{ "jump4funinflatables.co.uk", true },
{ "jumpandbounce.co.uk", true },
@@ -21179,27 +23264,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jundongwu.com", true },
{ "junespina.com", true },
{ "junethack.net", true },
- { "jungaa.fr", true },
{ "jungesforumkonstanz.de", true },
{ "junggesellmuc.de", true },
+ { "jungidee.at", true },
{ "jungleducks.ca", true },
{ "junglejackscastles.co.uk", true },
{ "junglememories.co.uk", true },
{ "junglist.org", true },
- { "jungundwild-design.de", false },
{ "juni.io", true },
{ "junias-fenske.de", true },
+ { "juniorhandball.com", true },
{ "juniperroots.ca", true },
{ "junjun-web.net", true },
{ "junkdrome.org", true },
{ "juno.co.uk", true },
{ "junoaroma.com", true },
{ "junodownload.com", true },
+ { "junta.pl", true },
+ { "juozasveza.lt", true },
{ "jura-reiseschutz.de", true },
{ "jurassicbarkharrogate.co.uk", true },
{ "jurassicgolf.nl", true },
{ "juridoc.com.br", true },
{ "jurijbuga.de", true },
+ { "juristique.fr", true },
+ { "juristique.info", true },
+ { "juristique.org", true },
+ { "juristique.us", true },
{ "jurriaan.ninja", true },
{ "jusos-goettingen.de", true },
{ "just-vet-and-drive.fr", true },
@@ -21218,7 +23309,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "justice4assange.com", true },
{ "justin-tech.com", true },
{ "justinfreid.com", true },
- { "justinharrison.ca", false },
{ "justinho.com", true },
{ "justinmuturifoundation.org", true },
{ "justinribeiro.com", true },
@@ -21237,16 +23327,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jutlander.dk", true },
{ "juttaheitland.com", true },
{ "juusujanar.eu", true },
- { "juvenex.co", true },
{ "juwelierstoopman.nl", true },
+ { "juyunce.com", true },
{ "jvandenbroeck.com", true },
{ "jvanerp.nl", true },
{ "jvbouncycastlehire.co.uk", true },
+ { "jvdham.nl", true },
{ "jvega.me", true },
{ "jvlandscapingservices.com", true },
{ "jvphotoboothhire.co.uk", true },
{ "jvsticker.com", true },
- { "jvwdev.nl", true },
+ { "jw1.ca", true },
{ "jwatt.org", true },
{ "jwe.nl", true },
{ "jwhite.network", true },
@@ -21258,41 +23349,49 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jwplay.ml", true },
{ "jwpoore.com", true },
{ "jwschuepfheim.ch", true },
- { "jwybk.ml", true },
{ "jwz.org", true },
{ "jxir.de", true },
{ "jxkangyifu.com", true },
{ "jxltom.com", true },
{ "jxm.in", true },
{ "jydemarked.dk", true },
- { "jyggen.com", true },
- { "jym.fit", true },
{ "jyoti-fairworks.org", true },
{ "jz585.com", true },
{ "jzbk.org", true },
+ { "jzcapital.co", true },
+ { "jzgj088.com", 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 },
+ { "k0.gg", true },
{ "k1024.org", true },
- { "k1yoshi.com", true },
{ "k258059.net", true },
{ "k2mts.org", true },
- { "k33k00.com", false },
{ "k3nny.fr", true },
{ "k4law.com", true },
{ "k4r.ru", true },
+ { "k5197.co", true },
+ { "k6729.com", true },
+ { "k6957.co", true },
{ "k7azx.com", true },
- { "k82.org", true },
+ { "k8.com", true },
+ { "k8013.com", true },
+ { "k807.com", true },
+ { "k8084.com", true },
+ { "k819.com", true },
+ { "k8668.com", true },
+ { "k86990.com", true },
{ "k8n.de", true },
- { "k8r.eu", true },
+ { "k9297.co", true },
+ { "k9728.co", true },
{ "k9swx.com", true },
{ "kaamoscreations.com", true },
- { "kaangenc.me", true },
+ { "kaas.wtf", true },
{ "kaasbesteld.nl", true },
{ "kaatha-kamrater.se", true },
{ "kab-s.de", true },
@@ -21300,11 +23399,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kabarlinux.id", true },
{ "kabashop.com.br", true },
{ "kabat-fans.cz", true },
+ { "kabellegger.nl", true },
{ "kabeltv.co.nz", true },
{ "kabeuchi.com", true },
- { "kaboom.pw", true },
{ "kabos.art", true },
- { "kabu-abc.com", true },
+ { "kabouterbankje.nl", true },
{ "kabulpress.org", true },
{ "kabus.org", true },
{ "kacgal.com", true },
@@ -21313,35 +23412,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kack.website", true },
{ "kadhambam.in", true },
{ "kado-ya.jp", true },
- { "kaeru-seitai.com", true },
+ { "kafeh-jazan.com", true },
+ { "kaffau.com", true },
{ "kaffeekrone.de", true },
{ "kafoom.de", true },
+ { "kagicomb.org", true },
+ { "kaginalycloud.com", true },
{ "kagitreklam.com", true },
+ { "kagucho.net", true },
{ "kaheim.de", true },
{ "kai-ratzeburg.de", true },
+ { "kaidoblogi.eu", true },
{ "kaigojj.com", true },
{ "kaikei7.com", true },
{ "kaileymslusser.com", true },
- { "kairion.de", false },
- { "kairostecnologia.com.br", true },
+ { "kaioken.bar", true },
+ { "kaisab.com", true },
{ "kaisakura.net", true },
{ "kaisev.net", false },
- { "kaitol.click", true },
{ "kaiusaltd.com", true },
{ "kaivac-emea.com", true },
+ { "kaizencraft.ga", true },
{ "kaizenreporting.com", true },
{ "kaizeronion.com", true },
{ "kajak.land", true },
{ "kaka.farm", true },
+ { "kakacon.nz", true },
{ "kakao-karten.de", true },
{ "kakaravaara.fi", true },
{ "kakie-gobocha.jp", true },
{ "kakie-kolesa.ru", true },
{ "kakolightingmuseum.or.jp", true },
+ { "kaktuskola.se", true },
{ "kalakarclub.com", true },
{ "kalamos-psychiatrie.be", true },
{ "kalashcards.com", true },
{ "kalastus.com", true },
+ { "kaleidlink.com", true },
{ "kaleidoscope.co.uk", true },
{ "kalender.com", true },
{ "kalevlamps.co.uk", true },
@@ -21354,34 +23461,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kalmar.com", true },
{ "kalolina.com", true },
{ "kalombo.ru", true },
+ { "kaloni.info", true },
{ "kaltenbrunner.it", true },
{ "kalterersee.ch", true },
{ "kalugadeti.ru", true },
{ "kalwestelectric.com", true },
- { "kalyanmatka.guru", true },
+ { "kalyanmatka.guru", false },
{ "kam-serwis.pl", true },
{ "kamata-shinkyu-seikotsu.jp", true },
{ "kameari-za.space", true },
{ "kamen-master.ru", true },
{ "kamikaichimaru.com", false },
{ "kamilki.me", true },
+ { "kamilmagdziak.pl", true },
{ "kaminbau-laub.de", true },
{ "kamisato-ent.com", true },
{ "kamixa.se", true },
{ "kamppailusali.fi", true },
{ "kamranmirhazar.com", true },
{ "kamui.co.uk", true },
+ { "kamuniang.org", 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 },
+ { "kanehusky.com", false },
{ "kanetix.ca", true },
{ "kangaroo-bouncycastle.co.uk", true },
{ "kangarooislandholidayaccommodation.com.au", true },
@@ -21397,7 +23505,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kankimaru.com", true },
{ "kanna.cf", true },
{ "kannchen.de", true },
- { "kanobu.ru", true },
{ "kansaiyamamoto.jp", true },
{ "kantankye.nl", true },
{ "kantanmt.com", true },
@@ -21405,18 +23512,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kantorosobisty.pl", true },
{ "kanuvu.de", true },
{ "kany.me", false },
- { "kanzakiranko.jp", false },
{ "kanzashi.com", true },
{ "kanzlei-gaengler.de", true },
{ "kanzlei-oehler.com", true },
{ "kanzlei-sixt.de", true },
{ "kap-genial.de", true },
{ "kap.pe", true },
- { "kapgy-moto.com", true },
{ "kappenstein.org", false },
+ { "kappharn.com", true },
+ { "kappie.xyz", true },
+ { "kapsalonlinds.nl", true },
{ "kapseli.net", true },
{ "kaptadata.com", true },
- { "kaptamedia.com", true },
{ "karabas.com", true },
{ "karabijnhaken.nl", false },
{ "karachi.dating", true },
@@ -21429,10 +23536,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "karatekit.co.uk", true },
{ "kardize24.pl", true },
{ "kardolocksmith.com", true },
+ { "karenwillisholmes.com", true },
{ "karewan.ovh", true },
{ "kargl.net", true },
{ "karguine.in", true },
- { "karhm.com", true },
{ "karina.gd", true },
{ "karit.nz", true },
{ "karlbowden.com", true },
@@ -21450,34 +23557,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "karn.nu", true },
{ "karneid.info", true },
{ "karoverwaltung.de", true },
- { "kars.ooo", true },
+ { "karrot.world", true },
{ "karsofsystems.com", true },
{ "karsten-voigt.de", true },
{ "karta-paliwowa.pl", true },
{ "kartacha.com", true },
{ "kartar.net", false },
+ { "kartatopia.com", true },
+ { "kartbird.com", true },
{ "kartec.com", true },
- { "karten-verlag.de", true },
{ "kartonmodellbau.org", true },
{ "karula.org", true },
+ { "karuna.community", true },
{ "karupp-did.net", true },
{ "kasadara.com", true },
{ "kasei.im", true },
{ "kashinavi.com", true },
{ "kashmirobserver.net", true },
+ { "kasinobonus.com", true },
{ "kasko.io", true },
{ "kasnoffskinclinic.com", true },
{ "kassa.at", true },
+ { "kassa.expert", true },
{ "kastankaoffice.cz", true },
{ "kastelruth.biz", true },
+ { "kastgroup.com", true },
{ "kastorsky.ru", true },
{ "kat.marketing", true },
{ "katagena.com", true },
+ { "kataiszilveszter.hu", true },
{ "katalogbajugamismu.com", true },
+ { "katalogkapsli.pl", true },
{ "katarsisuib.no", true },
- { "katata-kango.ac.jp", true },
{ "katcleaning.com.au", true },
- { "katedra.de", true },
{ "kateduggan.net", true },
{ "katekligys.com", true },
{ "katemihalikova.cz", true },
@@ -21487,6 +23599,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kathegiraldo.com", true },
{ "kati-raumplaner.de", true },
{ "katiechai.xyz", true },
+ { "katieriker.com", true },
{ "katieskandy.co.uk", true },
{ "katieskastles.co.uk", true },
{ "katja-und-ronny.de", true },
@@ -21495,23 +23608,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "katnunn.co.uk", true },
{ "kato-yane.com", true },
{ "katscastles.co.uk", true },
+ { "katsunet.com", true },
{ "kattelans.eu", true },
{ "katyl.info", false },
{ "katyusha.net", true },
- { "katzenbrunnen-test.de", true },
{ "katzensklave.me", true },
{ "katzrkool.xyz", true },
{ "kau-boys.com", true },
{ "kau-boys.de", true },
{ "kaufberatung.community", true },
- { "kaufmanbankruptcylaw.com", true },
+ { "kavorka.me", true },
{ "kavovary-kava.cz", true },
{ "kawaii.io", true },
- { "kawaiii.link", true },
{ "kaweus.de", true },
{ "kay.la", true },
{ "kayo.digital", true },
- { "kayscs.com", true },
+ { "kaypasocks.com", true },
{ "kaysis.gov.tr", false },
{ "kazakov.lt", true },
{ "kazancci.com", true },
@@ -21521,14 +23633,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kazekprzewozy.pl", true },
{ "kazu.click", true },
{ "kazuhirohigashi.com", true },
- { "kazumi.ooo", true },
{ "kazumi.ro", true },
{ "kazy111.info", true },
- { "kb3.net", true },
+ { "kb09.net", true },
{ "kb88.com", true },
+ { "kb883.cc", true },
+ { "kb8882.com", true },
+ { "kb88dc23.com", true },
{ "kba-online.de", true },
{ "kbb-ev.de", true },
{ "kbbouncycastlehire.co.uk", true },
+ { "kbc.be", true },
{ "kbcequitas.hu", true },
{ "kbit.dk", true },
{ "kbjorklu.com", true },
@@ -21538,31 +23653,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kc1hbk.com", true },
{ "kc3.moe", true },
{ "kc5mpk.com", true },
- { "kcc.sh", true },
{ "kcliner.com", true },
{ "kcmicapital.com", true },
{ "kcolford.com", false },
{ "kcshipping.co.uk", true },
{ "kcsordparticipation.org", true },
{ "kd.net.nz", true },
+ { "kdcp.pw", true },
{ "kdex.de", true },
- { "kdfans.com", true },
{ "kdw.cloud", true },
{ "kdyby.org", true },
{ "ke.fo", true },
{ "ke7tlf.us", true },
{ "keakon.net", true },
{ "keane.space", true },
- { "keaneokelley.com", true },
{ "keaysmillwork.com", true },
{ "keb.com.au", true },
{ "keb.net.au", true },
{ "kebabbesteld.nl", true },
- { "kebabbruce.com", true },
+ { "kebabbruce.com", false },
{ "kecht.at", true },
{ "kedarastudios.com", true },
- { "kedibizworx.com", true },
{ "kedv.es", true },
+ { "kee.pm", true },
+ { "keeckee.ga", true },
{ "keeleysam.com", true },
{ "keelove.net", true },
{ "keengamer.com", true },
@@ -21573,10 +23687,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "keepingtheplot.co.uk", true },
{ "keepiteasy.eu", true },
{ "keepitsecure24.com", true },
+ { "keepleft.gr", true },
{ "keepsight.org.au", true },
+ { "keevault.pm", true },
{ "keevitaja.com", true },
{ "keeweb.info", true },
- { "keezin.ga", true },
+ { "keez.cf", true },
{ "keganthorrez.com", true },
{ "kehlenbach.net", true },
{ "keian.tk", true },
@@ -21592,18 +23708,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kekku.li", true },
{ "keksi.io", true },
{ "kela.jp", true },
- { "kelantanmudah.com", false },
{ "keldan.fo", true },
{ "kelderwijnen.nl", true },
{ "kelgtermans-usedcars.be", true },
{ "kelheor.space", true },
- { "kellerlan.org", true },
{ "kelleymcchesney.us", true },
{ "kellimacconnell.com", true },
{ "kellygrenard.com", true },
{ "kellyskastles.co.uk", true },
- { "kellyssportsbarandgrill.com", true },
{ "kelsa.io", true },
+ { "kelsall39.com", true },
{ "kelvinfichter.com", false },
{ "kemmerer-net.de", true },
{ "kempkens.io", true },
@@ -21614,13 +23728,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ken.fm", true },
{ "kenalsworld.com", true },
{ "kenbonny.net", true },
- { "kengilmour.com", true },
+ { "kendermore.it", true },
+ { "kendernet.com", true },
+ { "kengilmour.com", false },
{ "kenguntokku.jp", true },
{ "kenia-vakantie.nl", true },
+ { "kennedy.ie", true },
{ "kennedyinsurancesolutions.com", true },
{ "kenners.org", true },
{ "kennethaasan.no", true },
- { "kennethferguson.com", true },
{ "kennethlim.me", true },
{ "kenneths.org", true },
{ "kenny-peck.com", true },
@@ -21632,17 +23748,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kens.pics", true },
{ "kensbouncycastles.co.uk", true },
{ "kenscustomfloors.com", true },
- { "kentec.net", true },
+ { "kenshobox.net", true },
+ { "kensparkesphotography.com", true },
+ { "kentec.net", false },
{ "kenterlis.gr", true },
{ "kenvix.com", true },
{ "kenyons.info", true },
{ "keops-spine.fr", true },
{ "keops-spine.us", true },
+ { "kep-sbt.hu", true },
{ "kepkonyvtar.hu", true },
{ "keponews.com", true },
+ { "kepsbt.hu", true },
{ "keralit.nl", true },
{ "kerebro.com", true },
- { "kerforhome.com", true },
+ { "kerforhome.com", false },
{ "kerijacoby.com", true },
{ "kermadec.com", true },
{ "kermadec.fr", true },
@@ -21652,13 +23772,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kernelprogrammer.com", true },
{ "kerrfrequencycombs.org", true },
{ "kerrnel.com", true },
+ { "kersmexico.com", true },
{ "kerstkaart.nl", true },
{ "kersvers.agency", true },
{ "kerus.net", true },
{ "kerzyte.net", true },
{ "kessawear.com", true },
{ "kesslerwine.com", true },
- { "kesteren.org", true },
{ "ketamine.co.uk", true },
{ "ketaminecareclinic.com", true },
{ "ketosecology.co.uk", true },
@@ -21667,24 +23787,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kettner.com", true },
{ "ketty-voyance.com", true },
{ "keutel.net", true },
+ { "kevchia.com", true },
+ { "kevertje.net", true },
{ "kevin-darmor.eu", true },
{ "kevin-ta.com", true },
{ "kevinapease.com", true },
{ "kevinbusse.de", true },
{ "kevincox.ca", false },
+ { "kevincramer.net", true },
+ { "kevindavid.org", true },
{ "kevindienst.blog", true },
{ "kevinfoley.cc", true },
{ "kevinfoley.org", true },
- { "kevingsky.com", true },
+ { "kevinhill.nl", true },
{ "kevinhq.com", true },
{ "kevinkla.es", true },
{ "kevinlocke.name", true },
{ "kevinmeijer.nl", true },
+ { "kevinmoreland.com", true },
{ "kevinmorssink.nl", true },
{ "kevinpirnie.com", false },
- { "kevinrandles.com", true },
+ { "kevinrandles.com", false },
{ "kevinratcliff.com", true },
+ { "kevinschreuder.com", true },
{ "kevyn.lu", true },
+ { "kexino.com", true },
{ "kexueboy.com", true },
{ "keybase.io", true },
{ "keybored.co", true },
@@ -21701,30 +23828,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "keylaserinstitute.com", true },
{ "keylength.com", true },
{ "keymach.com", true },
- { "keys.jp", true },
+ { "keymicrosystems.com", true },
+ { "keynes.id.au", true },
{ "keys247.co.uk", true },
+ { "keysofart.com", true },
{ "keystoneok.com", false },
{ "keysupport.org", true },
+ { "keywalker.co.jp", true },
{ "keywebdesign.nl", true },
+ { "keyyek.com", false },
+ { "kf5252.com", 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 },
+ { "kfz-service-wachtmann.de", true },
{ "kg7.pl", true },
{ "kgm-irm.be", true },
{ "kgnk.ru", true },
{ "kgv-schlauroth.de", true },
+ { "khaganat.net", true },
+ { "khairul-zamri.com", true },
{ "khaledgarbaya.net", false },
{ "khanovaskola.cz", true },
{ "khas.co.uk", true },
{ "khasiatmanfaat.com", true },
{ "kheshtar.pl", true },
+ { "khetmaal.com", true },
{ "khetzal.info", true },
+ { "khg-orchester.de", true },
{ "khipu.com", true },
- { "khmb.ru", true },
+ { "khmb.ru", false },
+ { "khojirdesign.ir", true },
+ { "khorne.me", true },
{ "khoury-dulla.ch", true },
{ "khs1994.com", true },
{ "khslaw.com", true },
@@ -21734,10 +23874,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kiahoriane.com", true },
{ "kiano.net", true },
{ "kiapartscenter.net", true },
- { "kiapartsdepartment.com", true },
- { "kiapps.ovh", true },
{ "kiarayoga.com", true },
- { "kiasystems.com", true },
{ "kibea.net", true },
{ "kibibit.net", true },
{ "kibriscicek.net", true },
@@ -21746,19 +23883,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kickedmycat.com", true },
{ "kickstart.com.pk", false },
{ "kicou.info", false },
+ { "kiczela.eu", true },
{ "kidaptive.com", true },
{ "kiddieschristian.academy", true },
{ "kiddyboom.ua", true },
{ "kids-at-home.ch", true },
{ "kids-castles.com", true },
- { "kids-ok.com", true },
+ { "kids-world.dk", true },
{ "kids2day.in", true },
{ "kidsareatrip.com", true },
{ "kidsclub.photos", true },
+ { "kidsdaysout.co.uk", true },
+ { "kidsdinefree.com", true },
{ "kidsforsavingearth.org", true },
{ "kidsinwoods-interfacesouth.org", true },
{ "kidsmark.net", true },
{ "kidsneversleep.com", true },
+ { "kidspaper.nl", true },
{ "kidsplay-plymouth.co.uk", true },
{ "kidsplaybouncycastles.co.uk", true },
{ "kidswallstickers.com.au", true },
@@ -21773,9 +23914,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kieran.ie", true },
{ "kieranjones.uk", true },
{ "kiesuwkerstkaart.nl", true },
- { "kiffmarks.com", true },
+ { "kievkiralikotel.com", true },
{ "kigmbh.com", true },
- { "kii91.com", true },
+ { "kiisu.club", true },
{ "kikbb.com", true },
{ "kiki-voice.jp", true },
{ "kiknudes.co", true },
@@ -21784,8 +23925,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kilianvalkhof.com", true },
{ "killaraapartments.com.au", true },
{ "killdeer.com", true },
- { "killedbynlp.com", true },
- { "killerit.in", true },
{ "killerkink.net", true },
{ "killerrobots.com", true },
{ "killymoonbouncycastles.com", true },
@@ -21797,36 +23936,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kimiris.com", true },
{ "kimis.gr", true },
{ "kimisia.net", true },
+ { "kimitang.com", true },
+ { "kimkuhlmanphoto.com", true },
{ "kimmel.com", true },
{ "kimmel.in", true },
+ { "kimochi.info", true },
{ "kimono-rental-one.com", true },
{ "kimotodental.com", true },
{ "kimsufi-jordi.tk", true },
{ "kimtran.kim", true },
+ { "kimtstore.com", true },
{ "kin.life", true },
{ "kin.pet", true },
{ "kinautas.com", true },
+ { "kindconcentrates.com", true },
{ "kinderarzt-berlin-zia.de", true },
{ "kinderbasar-luhe.de", true },
{ "kinderchor-bayreuth.de", true },
- { "kinderjugendfreizeitverein.de", true },
{ "kinderkleding.news", true },
{ "kinderpneumologie.ch", true },
{ "kindertagespflege-rasselbande-halle.de", true },
{ "kinderzahn-bogenhausen.de", true },
+ { "kindesfreude.ch", true },
{ "kindfotografie.nl", true },
{ "kindlezs.com", true },
{ "kine-duthil.fr", true },
- { "kinecle.com", true },
{ "kinepolis-studio.be", true },
{ "kinerd.me", true },
{ "kinesiomed-cryosauna.gr", true },
+ { "kinetic.ventures", true },
{ "kinetiq.com", true },
{ "king-of-the-castles.com", true },
{ "kingant.net", true },
{ "kinganywhere.eu", true },
+ { "kingbird.me", true },
{ "kingdoms.gg", true },
{ "kingiescastles.co.uk", true },
+ { "kingjamesbibleonline.org", true },
{ "kingofshooting.com", true },
{ "kingofthecastlecoventry.co.uk", true },
{ "kingofthecastlesentertainments.co.uk", true },
@@ -21834,19 +23980,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kingofthecastlesrhyl.co.uk", true },
{ "kingsfoot.com", true },
{ "kingsgateseptic.com", true },
- { "kingsley.cc", true },
{ "kingstclinic.com", true },
- { "kingtecservices.com", true },
+ { "kingtreeexperts.com", true },
{ "kingwoodtxlocksmith.com", true },
{ "kini24.ru", true },
{ "kinkcafe.net", true },
{ "kinkenonline.com", true },
{ "kinkyhookup.com", true },
{ "kinmunity.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 },
@@ -21855,12 +24000,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kintone.com", true },
{ "kintore.tv", true },
{ "kiocloud.com", true },
- { "kionetworks.es", true },
+ { "kiot.eu", true },
{ "kipa.at", true },
{ "kipiradio.com", true },
{ "kippenbart.gq", true },
{ "kipsu.com", true },
+ { "kipwells32.com", true },
{ "kiragameforum.net", true },
+ { "kirainmoe.com", true },
{ "kiraku.co", true },
{ "kirbear.com", true },
{ "kirchen-im-web.de", false },
@@ -21870,20 +24017,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kirei.se", true },
{ "kirig.ph", true },
{ "kirikira.moe", true },
+ { "kirill.ws", true },
{ "kirillaristov.com", true },
{ "kirillpokrovsky.de", false },
{ "kirinas.com", true },
{ "kirinuki.jp", true },
{ "kirkforcongress.com", true },
{ "kirkforillinois.com", true },
- { "kirkify.com", true },
{ "kirkovsky.com", true },
{ "kirkwoodfence.com", true },
+ { "kiro-ku.com", true },
{ "kiropraktorvard.se", true },
{ "kirrie.pe.kr", true },
{ "kirsch-gestaltung.de", true },
{ "kirschbaum.me", true },
- { "kirslis.com", true },
{ "kirstenbos.ca", true },
{ "kirstin-peters.de", true },
{ "kirwandigital.com", true },
@@ -21894,9 +24041,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kisma.de", true },
{ "kissflow.com", true },
{ "kissgyms.com", true },
+ { "kisskiss.ch", true },
{ "kissmycreative.com", true },
{ "kissoft.ro", true },
{ "kisun.co.jp", false },
+ { "kita-sun.com", true },
+ { "kitabmimpi.com", true },
{ "kitabnamabayi.com", true },
{ "kitacoffee.com", true },
{ "kitbag.com.au", true },
@@ -21912,31 +24062,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kiteschoolschellinkhout.nl", true },
{ "kiteschoolwijkaanzee.nl", true },
{ "kiteschoolzandvoort.nl", true },
+ { "kitpartners.com", true },
{ "kitsapsolutions.com", true },
{ "kittmedia.com", true },
{ "kittpress.com", true },
- { "kittyhacker101.tk", true },
{ "kivitelezesbiztositas.hu", true },
{ "kiwi-bird.xyz", true },
{ "kiwi.com", true },
{ "kiwi.digital", true },
{ "kiwi.wiki", true },
- { "kiwihub.org", true },
{ "kix.moe", true },
{ "kiyotatsu.com", true },
{ "kizomba.info", true },
+ { "kizzedbykelz.com", true },
{ "kizzycode.de", true },
{ "kj-prince.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 },
+ { "kjfaudio.com", true },
+ { "kjmedia.dk", true },
{ "kjnotes.com", true },
{ "kk-neudorf-duissern.de", false },
{ "kk.in.th", true },
+ { "kk5197.co", true },
+ { "kk6729.co", true },
+ { "kk6729.com", true },
+ { "kk6957.co", true },
+ { "kk9297.co", true },
+ { "kk9397.com", true },
+ { "kk9721.com", true },
+ { "kk9728.co", true },
{ "kki.org", true },
{ "kkovacs.eu", true },
{ "kkr-bridal.net", true },
@@ -21948,12 +24109,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kl008888.com", true },
{ "klaasmeijerbodems.nl", true },
{ "klaim.us", true },
- { "klamathrestoration.gov", true },
{ "klanggut.at", true },
{ "klares-licht.de", true },
{ "klarika.com", true },
{ "klarmobil-empfehlen.de", true },
- { "klasfauseweh.de", true },
+ { "klauke-enterprises.com", true },
{ "klausbrinch.dk", false },
{ "klausen.dk", true },
{ "klaver.it", true },
@@ -21977,29 +24137,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kleinestrandburg-usedom.de", true },
{ "kleineviecherei.de", true },
{ "kleinfein.co", true },
- { "kleinreich.de", true },
{ "kleinsys.com", true },
{ "kleintransporte.net", true },
{ "klemkow.net", true },
{ "klemkow.org", true },
+ { "klempin.se", true },
{ "kleppe.co", true },
{ "kleteckova.cz", true },
+ { "klev.su", true },
+ { "kli.is", true },
{ "klickstdu.com", true },
{ "kliemann.me", true },
- { "klif1.nl", true },
{ "klimaloven.no", true },
{ "klimapartner.de", true },
{ "klimapartner.net", true },
- { "klimchuk.by", true },
{ "klimchuk.com", true },
{ "klingenundmesser.com", true },
{ "klinik-fuer-aesthetische-zahnheilkunde.de", true },
{ "klinikac.co.id", false },
{ "klinkenberg.ws", true },
+ { "klishyn.com", true },
{ "klm-huisjes.nl", true },
{ "klmhouses.com", true },
{ "klocker-ausserlechner.com", true },
- { "klocksnack.se", true },
+ { "klocksnack.se", false },
{ "kloia.com", true },
{ "klop.info", true },
{ "klose.family", true },
@@ -22008,6 +24169,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kls-agency.com.ua", false },
{ "klseet.com", true },
{ "klssn.com", true },
+ { "klu.io", true },
{ "klubxanadu.cz", true },
{ "kluck.me", true },
{ "klugemedia.de", true },
@@ -22018,6 +24180,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kmkz.jp", true },
{ "kmsci.com.ph", true },
{ "kn007.net", true },
+ { "kn40la.com", true },
+ { "kn4ivj.com", true },
+ { "kn4ola.com", true },
{ "knaake.net", true },
{ "knab-networks.com", true },
{ "knapp.noip.me", true },
@@ -22031,12 +24196,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "knegten-agilis.com", true },
{ "knep.me", true },
{ "knetterbak.nl", true },
+ { "kngk-azs.ru", true },
{ "kngk-group.ru", true },
{ "kngk-transavto.ru", true },
{ "kngk.org", true },
{ "kngkng.com", true },
{ "knight-industries.org", true },
- { "knightsblog.de", true },
{ "knightsbridge.net", true },
{ "knightsbridgewine.com", true },
{ "knihovnajablonne.cz", true },
@@ -22045,27 +24210,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "knitfarious.com", true },
{ "knmv.nl", true },
{ "knnet.ch", true },
- { "knockendarroch.co.uk", true },
{ "knoji.com", true },
{ "knop.info", true },
{ "knot-store.com", true },
{ "knowarth.com", true },
{ "knowledgeforce.com", true },
{ "knowledgehook.com", true },
- { "knowlevillagecc.co.uk", true },
{ "knowyourday.ai", true },
{ "knthost.com", true },
{ "knurps.de", true },
{ "knuthildebrandt.de", true },
- { "knutur.is", true },
{ "knygos.lt", true },
{ "ko-sys.com", true },
{ "ko.si", true },
- { "koalapress.fr", true },
{ "koalas.org", true },
{ "kobejet.com", true },
{ "kobezda.net", true },
{ "kobofarm.com", true },
+ { "koboldmalade.fr", true },
{ "kobolya.hu", true },
{ "kocherev.org", true },
{ "kochereva.com", true },
@@ -22074,6 +24236,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kochinke.us", true },
{ "kockanakocko.si", true },
{ "kodak-ism.com", true },
+ { "kodamail.com", true },
{ "kodden.com.br", true },
{ "kode-it.de", true },
{ "kode.ch", true },
@@ -22082,9 +24245,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "koebbes.de", true },
{ "koecollege.com", true },
{ "koeeusa.org", true },
+ { "koehlhoff.de", true },
+ { "koeldezomerdoor.nl", true },
{ "koelnmafia.de", true },
{ "koenigsbrunner-tafel.de", true },
{ "koenleemans.nl", true },
+ { "koenrh.com", true },
+ { "koenrh.net", true },
+ { "koenrh.nl", true },
+ { "koenrouwhorst.com", true },
{ "koenrouwhorst.nl", true },
{ "koenzk.nl", true },
{ "koerperkult.ch", true },
@@ -22095,6 +24264,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kofler.info", true },
{ "kogak.ninja", true },
{ "kogax.com", true },
+ { "kogcoder.com", true },
{ "kogi.fr", true },
{ "kogro.de", true },
{ "kogudesi.com", true },
@@ -22103,42 +24273,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kohlistkool.tk", true },
{ "koho.fi", true },
{ "kohoutsautomotive.com", true },
- { "kohparadise.com", true },
{ "kohsandra.com", true },
{ "kohu.nz", true },
{ "koi-lexikon.de", true },
{ "koicenter-thuine.de", true },
{ "koifish.org", true },
- { "koirala.email", true },
{ "kojip.com", true },
{ "koka-shop.de", true },
{ "kokensupport.com", true },
- { "koketteriet.se", true },
{ "kokobaba.com", true },
{ "kokona.ch", true },
{ "kokoushuvila.fi", true },
{ "kokumoto.com", true },
{ "kolania.de", true },
{ "kolania.net", true },
+ { "kolaprestaurant.com", true },
+ { "kolas.in", true },
{ "kolbeinsson.se", true },
{ "kolcsey.eu", true },
+ { "kolibrisolutions.nl", true },
{ "kolin.org", true },
+ { "kolitel.com", true },
{ "kolizaskrap.bg", true },
{ "kolja-engelmann.de", true },
{ "koljakrekow.de", true },
{ "kolkataflowermall.com", true },
{ "kollect.ie", true },
{ "kollega.it", true },
+ { "kollegamenti.it", true },
{ "kolmann.at", true },
{ "kolmann.eu", true },
- { "kolorbon.com", true },
{ "kolpingsfamilie-vechta-maria-frieden.de", true },
{ "koluke.co", true },
{ "koluke.com", true },
{ "komall.net", true },
- { "komandakovalchuk.com", false },
{ "komelin.com", true },
{ "komenamanda.de", true },
+ { "kometia.com", true },
{ "komicloud.com", true },
{ "komidoc.com", true },
{ "komiksbaza.pl", true },
@@ -22154,27 +24325,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "komok.co.uk", true },
{ "komp247.pl", true },
{ "kompetenzkurs.de", true },
+ { "kompjoeter.net", true },
{ "komplet.sk", true },
{ "kon-sil.de", true },
{ "kondi.net", true },
{ "kondou-butsudan.com", true },
{ "kongar.org", true },
{ "kongress-hostessen.de", true },
- { "kongsecuritydata.com", true },
- { "koniecfica.sk", true },
+ { "koniecfica.sk", false },
{ "konijntjes.nl", true },
{ "konings.it", false },
{ "koningskwartiertje.nl", true },
- { "koninkrijk.net", true },
{ "konklone.com", true },
- { "konoe.studio", true },
{ "konosuke.jp", true },
{ "konplott.shop", true },
{ "konpyuta.nl", true },
{ "konsertoversikt.no", true },
{ "konst.se", true },
{ "kontaxis.org", true },
- { "kontorhaus-schlachte.de", true },
{ "kontorhaus-stralsund.de", true },
{ "konventa.net", true },
{ "konyalian.com", true },
@@ -22183,10 +24351,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "koodimasin.ee", true },
{ "koodimasin.eu", true },
{ "kooer.org", true },
+ { "koof.win", true },
+ { "koolauwomenshealthcare.com", true },
{ "kooli.ee", true },
{ "koolikatsed.ee", true },
{ "koolitee.ee", true },
{ "kooliveeb.ee", true },
+ { "koop-bremen.de", true },
{ "kooponline.eu", true },
{ "koot.nl", true },
{ "kooxdiving.com", true },
@@ -22198,32 +24369,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kopplin.family", true },
{ "koptev.ru", true },
{ "kopteva.ru", true },
+ { "korbel-loziska.cz", true },
{ "korben.info", true },
+ { "kordamed.ee", true },
{ "korea-dpr.org", true },
{ "korea.dating", true },
{ "koreaboo.com", true },
+ { "koreaninhd.com", true },
+ { "korem011-tniad.mil.id", true },
{ "koretech.nl", true },
{ "korinar.com", true },
{ "kornrunner.net", true },
{ "korobkovsky.ru", false },
{ "koroknaimedical.hu", true },
- { "korono.de", true },
{ "korosiprogram.hu", true },
{ "korp.fr", true },
{ "korrelzout.nl", true },
{ "kortgebyr.dk", true },
- { "kortic.com", true },
+ { "korup.com", true },
{ "koryfi.com", true },
{ "kos4all.com", true },
{ "kosaki.moe", true },
- { "koscielniak-nieruchomosci.pl", true },
{ "kosherjava.com", true },
{ "kosho.org", true },
{ "kosinc.org", true },
{ "kosmos.org.tw", true },
- { "kosonaudioteca.com", true },
{ "kost-magazin.de", true },
- { "kostal.com", false },
+ { "kostal.com", true },
{ "kostecki.com", true },
{ "kostecki.org", true },
{ "kostecki.tel", true },
@@ -22232,6 +24404,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kother.org", true },
{ "kotilinkki.fi", true },
{ "kotitesti.fi", true },
+ { "kotke.ru", true },
{ "kotly-marten.com.ua", true },
{ "kotobox.net", true },
{ "kotois.com", true },
@@ -22244,22 +24417,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kouten-jp.com", true },
{ "kov.space", true },
{ "koval.io", true },
- { "kovaldo.ru", true },
{ "kovals.sk", true },
{ "kovehitus.ee", true },
{ "kovspace.com", true },
+ { "kovuthehusky.com", true },
+ { "kowalmik.tk", true },
{ "kowalstwo.com.pl", true },
{ "kowarschick.de", true },
- { "kowshiksundararajan.com", true },
- { "koyaanis.com", true },
{ "koyo.kr", true },
{ "kozawa.tokyo", true },
+ { "kozossegireklamozas.hu", true },
{ "kozuch.biz", true },
{ "kpfanworld.com", true },
{ "kpforme.org", true },
{ "kpinvest.eu", true },
{ "kplasticsurgery.com", true },
{ "kplnet.net", true },
+ { "kpmgclientcollab.co.nz", true },
{ "kpop.re", true },
{ "kpumuk.info", true },
{ "kpx1.de", true },
@@ -22274,6 +24448,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "krag.be", true },
{ "kraga.sk", true },
{ "kraiwan.com", true },
+ { "kraiwon.com", true },
{ "kraken.io", true },
{ "kraken.site", true },
{ "kralik.io", true },
@@ -22286,18 +24461,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kramsj.uk", true },
{ "krang.org.uk", true },
{ "krankenpflege-haushaltshilfe.de", true },
- { "krant.nl", true },
{ "kranz.space", false },
{ "krasnodar-avia.ru", true },
+ { "krasnodar-pravoved.ru", true },
{ "krasovsky.me", true },
{ "krautomat.com", true },
{ "kraynik.com", true },
{ "krayx.com", true },
- { "krazyboi.com", true },
{ "krazykastles.co.uk", true },
{ "krazykoolkastles.com", true },
{ "krazyphotobooths.co.uk", true },
- { "kreationnext.com", true },
+ { "kreationnext.com", false },
+ { "kreativbande.com", true },
{ "kreativelabs.ch", true },
{ "kreativstrecke.de", true },
{ "kredigram.com", true },
@@ -22310,19 +24485,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kremalicious.com", true },
{ "kretschmann.consulting", true },
{ "kreuzpfadfinder.de", true },
- { "krey.is", true },
- { "krfuli.com", true },
{ "kriechel.de", true },
+ { "krikorianconstruction.com", true },
{ "krinetzki.de", true },
{ "kringloopwinkelsteenwijk.nl", true },
+ { "krinnovations.ie", true },
+ { "kriptokereso.com", true },
{ "kriptosec.com", true },
{ "kris.click", true },
{ "krise-chance.ch", true },
{ "krisftp.fr", true },
{ "krishnenduayur.org", true },
{ "krishofer.com", true },
- { "krishouse.fr", true },
- { "krislamoureux.com", true },
{ "krismurray.co.uk", true },
{ "krisstarkey.co.uk", true },
{ "kristall-energie.at", true },
@@ -22339,14 +24513,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kroell.net", true },
{ "krokedil.se", true },
{ "kromamoveis.com.br", true },
+ { "kromax.it", true },
{ "kromonos.net", false },
- { "krony.de", true },
{ "kroon.email", true },
{ "kropkait.pl", true },
- { "kroy.io", true },
+ { "krrn.de", true },
+ { "krsaustralia.com.au", true },
{ "krsn.de", true },
{ "krsvrs.nl", true },
- { "krugermillions.org", true },
{ "kruin.net", true },
{ "kruisselbrink.com", true },
{ "kruk.co", true },
@@ -22354,37 +24528,55 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "krumberconsulting.com", true },
{ "krupa.net.pl", false },
{ "kruselegal.com.au", true },
- { "krusesec.com", true },
{ "krutka.cz", true },
{ "kruzhki-s-kartinkami.ru", true },
{ "kry.no", true },
{ "kry.se", true },
{ "kryglik.com", true },
- { "krypmonet.com", true },
+ { "krypmonet.com", false },
{ "krypsys.com", true },
{ "krypt.com", true },
{ "kryptera.se", true },
{ "kryptomech.com", true },
+ { "kryptux.xyz", true },
{ "krytykawszystkiego.com", true },
{ "krytykawszystkiego.pl", true },
{ "kryx.de", true },
+ { "krzyzowki123.pl", true },
{ "ks-watch.de", true },
+ { "ks0618.com", true },
+ { "ks0718.com", true },
+ { "ks0768.com", true },
+ { "ks0776.com", true },
+ { "ks080.com", true },
+ { "ks0877.com", true },
+ { "ks0996.com", true },
+ { "ks191.com", true },
+ { "ks381.com", true },
+ { "ks5000.com", true },
+ { "ks5660.com", true },
+ { "ks628.com", true },
+ { "ks681.com", true },
{ "ks88.com", true },
+ { "ks88.org", true },
+ { "kscarlett.com", true },
{ "kschv-rdeck.de", true },
{ "kselenia.ee", true },
{ "ksero.center", true },
{ "ksero.wroclaw.pl", true },
{ "kshlm.in", true },
{ "ksmmmo.org.tr", true },
+ { "ksoc.com", true },
{ "ksopp.si", true },
{ "kspg.tv", true },
{ "kssk.de", true },
{ "ksukelife.com", true },
{ "kt-events.de", true },
{ "kt-zoe.com", true },
- { "ktbnetbank.com", true },
+ { "kt3i.com", true },
{ "kthnxbai.xyz", true },
{ "ktm-troxler.de", true },
+ { "ktmclubitalia.it", true },
{ "kts-thueringen.de", true },
{ "ktsee.eu.org", true },
{ "ktsofas.gr", true },
@@ -22392,27 +24584,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ku-7.club", true },
{ "ku.io", false },
{ "kuaimen.bid", true },
+ { "kuaiyaojing.com", true },
{ "kualiti.net", true },
{ "kualo.co.uk", true },
{ "kualo.com", true },
{ "kualo.in", true },
- { "kuanta.net", true },
- { "kuaza.com", true },
+ { "kuaza.com", false },
{ "kub.hr", true },
- { "kubica.ch", true },
- { "kubierecki.pl", true },
{ "kubik-rubik.de", false },
{ "kubkprf.ru", true },
{ "kublis.ch", true },
{ "kuchen-am-stiel.de", true },
- { "kuchenfeelisa.de", true },
- { "kuchentraum.eu", false },
+ { "kucloud.win", true },
{ "kucnibudzet.com", true },
{ "kucukayvaz.com", true },
{ "kudo.co.id", true },
{ "kuechenprofi-group.de", false },
{ "kuechenserver.de", true },
{ "kuechenserver.org", true },
+ { "kuehndel.org", true },
{ "kuehnel-bs.de", true },
{ "kuehnel-online.eu", true },
{ "kuehnel.org", false },
@@ -22426,26 +24616,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kuketz-blog.de", true },
{ "kuketz-security.de", true },
{ "kulde.net", true },
- { "kulickovy-pojezd.cz", true },
+ { "kulinaristi.fi", true },
{ "kulivps.com", true },
+ { "kulopo.com", true },
+ { "kultsar.com", true },
+ { "kulturmel.ch", true },
+ { "kum.com", true },
{ "kuma.es", true },
{ "kumachan.biz", true },
{ "kumalog.com", true },
{ "kumasanda.jp", true },
- { "kumilasvegas.com", true },
+ { "kumbayops.com", true },
+ { "kumpulannamabayi.com", true },
{ "kunaldesai.blog", true },
{ "kundenerreichen.com", true },
{ "kundenerreichen.de", true },
{ "kungerkueken.de", true },
{ "kunra.de", true },
{ "kunstdrucke-textildruck.de", true },
+ { "kunsthandel-augustus-rex.de", true },
{ "kunstundunrat.de", true },
+ { "kunvn.com", true },
{ "kuoruan.com", true },
{ "kupaa.ink", true },
+ { "kupferschmids.ch", true },
{ "kupferstichshop.com", true },
{ "kupiclub.com", true },
{ "kupid.com", true },
{ "kupiec.eu.org", true },
+ { "kupiewszystkieauta.pl", true },
{ "kupimlot.ru", true },
{ "kupinska.pl", true },
{ "kupleno.com", true },
@@ -22453,7 +24652,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kuponydoher.cz", true },
{ "kupschke.net", true },
{ "kurniadwin.to", true },
- { "kuro.link", true },
{ "kurofuku.me", true },
{ "kuroha.co.uk", true },
{ "kuroinu.jp", true },
@@ -22463,7 +24661,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kurschies.de", true },
{ "kurserne.dk", true },
{ "kurswahl-online.de", true },
- { "kurszielnull.de", true },
+ { "kursypolska.pl", true },
{ "kurtschlatzer.com", true },
{ "kuruppa.xyz", true },
{ "kuschku.de", true },
@@ -22471,23 +24669,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kushtikidsparties.co.uk", true },
{ "kusochi.eu", true },
{ "kutinsoft.com", true },
- { "kutny.cz", true },
+ { "kutip.id", true },
{ "kutsankaplan.com", true },
{ "kuttler.eu", true },
{ "kutukupret.com", true },
{ "kutus.ee", true },
{ "kuunlamaailm.ee", true },
- { "kuzbass-pwl.ru", true },
+ { "kuwichitagastro.com", true },
+ { "kuwichitaim.com", true },
{ "kvadratnimeter.si", true },
{ "kvalita-1a.cz", true },
{ "kvalitetsaktiepodden.se", true },
{ "kvalitnitesneni.cz", true },
{ "kvantel.no", true },
{ "kvcc.com.au", true },
+ { "kvestmaster.ru", true },
{ "kvetinymilt.cz", true },
{ "kvhile.com", true },
{ "kvilt.dk", true },
- { "kvn.tf", true },
{ "kvnsport.ru", true },
{ "kvpc.com.au", true },
{ "kwat.chat", true },
@@ -22501,24 +24700,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kx197.com", true },
{ "kxah35.com", true },
{ "kxline.com", true },
- { "kxnrl.com", true },
{ "kxway.com", true },
{ "kybi.sk", true },
- { "kybqp.com", true },
- { "kybqp.net", true },
{ "kydara.com", true },
{ "kyledrake.net", true },
{ "kylegutschow.com", true },
+ { "kylejohnson.io", true },
{ "kylelaker.com", true },
+ { "kylianvermeulen.com", true },
+ { "kylianvermeulen.nl", true },
{ "kylinj.com", false },
+ { "kynaston.org.uk", true },
{ "kynastonwedding.co.uk", true },
+ { "kyochon.fr", true },
{ "kyosaku.org", true },
{ "kyoto-k9.com", false },
{ "kyoto-mic.com", true },
- { "kyoto-tomikawa.jp", true },
{ "kyoto-tomoshibi.jp", true },
{ "kyprexxo.com", true },
{ "kyras-castles.co.uk", true },
+ { "kys.host", true },
+ { "kysil.org", true },
{ "kyunyuki.com", true },
{ "kyusyu.org", true },
{ "kyy.me", true },
@@ -22526,38 +24728,50 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kzar.co.uk", true },
{ "kzsdabas.hu", true },
{ "l-atelier-c.com", true },
- { "l-lab.org", true },
{ "l0re.com", true },
+ { "l0v0l.com", true },
{ "l17r.eu", true },
- { "l3.ee", true },
+ { "l214.com", true },
+ { "l2guru.ru", true },
{ "l33te.net", true },
- { "l3j.net", true },
{ "l4n-clan.de", true },
+ { "l5197.co", true },
+ { "l66.io", true },
+ { "l6729.co", true },
+ { "l6729.com", true },
+ { "l6957.co", true },
{ "l7plumbing.com.au", true },
{ "l7world.com", true },
- { "l9.fr", false },
+ { "l9297.co", true },
+ { "l9397.com", true },
+ { "l9721.com", true },
+ { "l9728.co", true },
{ "la-baldosa.fr", true },
- { "la-cave-a-nodo.fr", true },
{ "la-compagnie-des-elfes.fr", true },
{ "la-fenice-neheim.de", true },
{ "la-ganiere.com", true },
{ "la-kaz-a-velo.fr", true },
+ { "la-laitonnerie.com", true },
{ "la-maison.ch", true },
{ "la-maison.eu", true },
{ "la-petite-entreprise.com", true },
{ "la-tourmaline.ch", true },
{ "laac.io", true },
- { "laassari.me", false },
+ { "laan247.dk", true },
{ "laatikko.io", true },
{ "laatjeniethackmaken.nl", true },
{ "labande-annonce.fr", true },
{ "labanochjonas.se", true },
+ { "labanote.com", true },
{ "labanskoller.se", true },
{ "labanskollermark.se", true },
+ { "labavn.org", true },
{ "labcenter.com", true },
{ "labcoat.jp", true },
{ "labeled.vn", true },
+ { "labiblioafronebrulepas.com", true },
{ "labobooks.com", true },
+ { "laboratoriodemarketingb3.com", true },
{ "labortogether.com", true },
{ "labouncycastlehire.co.uk", true },
{ "labourreedevergheas.fr", true },
@@ -22566,22 +24780,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "labradorpuppiesforsalebyregisteredlabradorbreeders.com", false },
{ "labrat.mobi", false },
{ "labspack.com", true },
+ { "labsys.xyz", true },
{ "labtest.ltd", true },
{ "lacaey.se", true },
{ "lacantine.xyz", true },
{ "lacaveducinquantenaire.com", true },
{ "lacetsfun.com", true },
{ "lacetsroses.ch", true },
+ { "laceysfarm.ie", true },
{ "lachainedesentrepreneurs.fr", true },
{ "lachawoj.de", true },
{ "lachlan-harris.com", true },
{ "lachlan.com", true },
+ { "lachlanallison.com", true },
{ "lachosetypo.com", true },
{ "lachyoga-schwieberdingen.de", true },
- { "lacicloud.net", true },
- { "lacigf.org", true },
{ "laclaque.ch", true },
- { "lacledelareussite.com", true },
{ "lacledeslan.com", false },
{ "lacledor.ch", true },
{ "laclefdor.ch", true },
@@ -22590,9 +24804,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lacocinadelila.com", true },
{ "lacoquette.gr", true },
{ "lacyc3.eu", true },
+ { "ladadate.com", true },
{ "ladbroke.net", false },
{ "ladenzeile.at", true },
{ "ladenzeile.de", true },
+ { "ladislavbrezovnik.com", true },
{ "lado.ltd", true },
{ "ladotech.cn", true },
{ "ladotech.com", true },
@@ -22600,11 +24816,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lady-2.jp", true },
{ "ladyanna.de", true },
{ "ladyofhopeparish.org", true },
+ { "laegernevedlillebaelt.dk", true },
{ "laermschmiede.de", true },
- { "laeso.es", true },
+ { "laeryn.com", true },
{ "laextra.mx", true },
+ { "lafantasticatravel.com", true },
{ "lafayette-rushford.com", true },
- { "lafcheta.info", true },
+ { "lafcheta.info", false },
{ "lafema.de", true },
{ "lafermegourmande.fr", true },
{ "lafillepolyvalente.ca", true },
@@ -22615,14 +24833,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lagarderob.ru", false },
{ "lagazzettadigitale.it", true },
{ "lagerauftrag.info", true },
+ { "lagier.xyz", true },
{ "lagit.in", true },
{ "laglab.org", false },
{ "lagout.org", true },
{ "lagriffeduservice.fr", true },
{ "lagsoftware.com", true },
- { "laguiadelvaron.com", true },
{ "laguinguette.fr", true },
- { "lagunacoastrealestate.com", true },
{ "lagunakitchenandbath.com", true },
{ "lahipotesisgaia.com", true },
{ "lahnau-akustik.de", true },
@@ -22633,12 +24850,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lain.li", true },
{ "laindonleisure.co.uk", true },
{ "lak-berlin.de", true },
- { "lakarwebb.se", true },
{ "lakedavid.com.au", true },
- { "lakehavasucitynews.com", true },
{ "lakehavasuwebsites.com", true },
{ "lakelandbank.com", true },
{ "lakeoswegotowncar.com", true },
+ { "lakersview.com", true },
{ "lakesherwoodelectric.com", true },
{ "lakesherwoodelectrical.com", true },
{ "lakesherwoodelectrician.com", true },
@@ -22653,22 +24869,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lalalab.com", true },
{ "lalaya.fr", true },
{ "laled.ch", true },
- { "lalingua.ir", true },
+ { "lalucepulsata.it", true },
{ "lalucioledigitale.com", true },
{ "lalunaonlinebr.com", true },
- { "lalunecreative.com", true },
{ "lalyre-corcelles.ch", true },
{ "lamakat.de", true },
+ { "lamaletarural.es", true },
{ "lamapoll.de", true },
+ { "lamargheritalruoto.it", true },
{ "lamarieealhonneur.com", false },
{ "lambangcapgiare.com", true },
{ "lambauer.com", true },
{ "lambdaof.xyz", true },
{ "lambertshealthcare.co.uk", true },
+ { "lambertz.xyz", true },
{ "lamboo.be", true },
{ "lamclam.site", true },
{ "lamconnect.com", true },
- { "lame1337.xyz", true },
{ "lamed.se", true },
{ "lamikvah.org", true },
{ "laminine.info", true },
@@ -22687,10 +24904,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lampenwelt.de", true },
{ "lampl.info", false },
{ "lampposthomeschool.com", true },
- { "lampsh.ml", true },
{ "lampy.pl", true },
{ "lamunyon.com", true },
{ "lan.biz.tr", true },
+ { "lana.swedbank.se", true },
{ "lanahallen.com", true },
{ "lanbroa.eu", true },
{ "lancashirecca.org.uk", true },
@@ -22703,13 +24920,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "land.nrw", false },
{ "landbetweenthelakes.us", true },
{ "landchecker.com.au", true },
+ { "landegge.nl", true },
{ "landflair-magazin.de", true },
{ "landhaus-christmann.de", true },
{ "landhaus-havelse.de", true },
{ "landinfo.no", true },
{ "landingear.com", true },
{ "landlordy.com", true },
- { "landofelves.net", true },
+ { "landofelves.net", false },
+ { "landoncreekapartments.com", true },
{ "landrovermerriamparts.com", true },
{ "landscape-photography.org", true },
{ "landscapelightingagoura.com", true },
@@ -22724,7 +24943,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "landscapelightingmoorpark.com", true },
{ "landscapelightingnewburypark.com", true },
{ "landscapelightingoakpark.com", true },
- { "landscapelightingpacificpalisades.com", true },
{ "landscapelightingsimivalley.com", true },
{ "landscapelightingthousandoaks.com", true },
{ "landscapelightingwestlakevillage.com", true },
@@ -22735,6 +24953,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lang-php.com", true },
{ "langatang.com", true },
{ "langbein.org", true },
+ { "langduytinh.com", true },
{ "langkahteduh.com", true },
{ "langkawitrip.com", true },
{ "langotie.com.br", true },
@@ -22749,11 +24968,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lannamontessori.com", true },
{ "lannatefl.com", true },
{ "lanodan.eu", true },
+ { "lanonfire.com", true },
{ "lanostrasalute.it", true },
{ "lanre.org", true },
{ "lanroamer.de", true },
{ "lansechensilu.com", true },
{ "lansewu.com", true },
+ { "lansoftware.eu", true },
{ "lanternalauth.com", true },
{ "lanternhealth.org", true },
{ "lantian.pub", true },
@@ -22762,19 +24983,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lanzamientovirtual.es", true },
{ "lanzarote-online.info", true },
{ "laos.dating", true },
+ { "laospage.com", true },
{ "laozhu.me", true },
- { "laparoscopia.com.mx", true },
+ { "lapageamelkor.org", true },
{ "lapassiondutrading.com", true },
- { "lapetition.be", true },
+ { "lapatio.dk", true },
{ "lapicena.eu", true },
{ "lapidge.net", true },
{ "lapix.com.co", true },
{ "laplacesicherheit.de", true },
{ "laplanetebleue.com", true },
{ "lapolla.com", true },
+ { "laportedufutur.org", true },
{ "lapotagere.ch", true },
{ "lapparente-aise.ch", true },
- { "lappari.com", true },
+ { "lappari.com", false },
{ "lapshore.com", true },
{ "lara.photography", true },
{ "larabergmann.de", true },
@@ -22793,9 +25016,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "largeviewer.com", true },
{ "lariposte.org", true },
{ "lariscus.eu", true },
- { "larky.top", true },
{ "larondinedisinfestazione.com", true },
- { "larotayogaming.com", true },
{ "larptreff.de", true },
{ "larraz.es", true },
{ "larryli.cn", true },
@@ -22806,22 +25027,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lars.moi", true },
{ "larsklene.nl", true },
{ "larsklint.com", true },
+ { "lartduportrait.fr", true },
{ "laruga.co.uk", true },
- { "larvatoken.org", true },
+ { "lasabubillas.es", true },
{ "lasalle.wa.edu.au", true },
{ "lasarmas.com", true },
{ "lasavonnerieducroisic.fr", true },
{ "lascana.co.uk", true },
{ "lasereyess.net", true },
{ "laserhealthsolutions.com", true },
- { "laserpc.net", true },
{ "laserplaza.de", true },
{ "laserplaza.net", true },
- { "lasertechsolutions.com", true },
{ "lask.in", true },
{ "laskas.pl", true },
{ "lasowy.com", true },
{ "laspequenassemillas.com", true },
+ { "lasranas.es", true },
{ "lasrecetascocina.com", true },
{ "lasrecetasdeguada.com", true },
{ "lasse-it.dk", true },
@@ -22832,20 +25053,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lassesworld.com", true },
{ "lassesworld.se", true },
{ "lastbutnotyeast.com", true },
- { "lastchancetraveler.com", true },
{ "lastharo.com", true },
{ "lastpass.com", false },
{ "lastrada-minden.de", true },
- { "lastweekinaws.com", true },
{ "lasuzefc.fr", true },
{ "lat.sk", true },
- { "latabledemontebello.com", true },
+ { "latabaccheria.net", true },
{ "late.am", true },
{ "latecnosfera.com", true },
{ "latedeals.co.uk", true },
- { "latemodern.com", true },
{ "latenitefilms.com", false },
- { "lateral.dog", true },
{ "lateralsecurity.com", true },
{ "latestdeals.co.uk", true },
{ "latiendauno.com", true },
@@ -22861,12 +25078,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lattyware.com", true },
{ "laubacher.io", true },
{ "lauchundei.at", true },
+ { "laudableapps.com", true },
+ { "laudablesites.com", true },
+ { "laudwein.fr", true },
{ "lauensteiner.de", false },
{ "laufpix.de", true },
{ "lauftreff-himmelgeist.de", true },
{ "laughinggrapepublishing.com", true },
{ "laukstein.com", true },
{ "launayflorian.net", true },
+ { "launch-subtitle.com", true },
{ "launcher-minecraft.com", true },
{ "launchkey.com", false },
{ "launchmylifend.com", true },
@@ -22876,13 +25097,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lauraandwill.wedding", false },
{ "lauraenvoyage.fr", true },
{ "laurakashiwase.com", true },
+ { "lauralinde.de", true },
{ "lauraofrank.com", true },
+ { "lauraohagan.com", true },
{ "laurasplacefamilysupport.org.au", true },
{ "laurelblack.com", true },
+ { "laurencball.com", true },
{ "laurenceplouffe.com", true },
{ "laurenlobue.com", true },
{ "laurensvanderblom.nl", true },
{ "lauriemilne.com", true },
+ { "laurineprice.com", true },
+ { "lauritzt.cf", true },
{ "lauriuc.sk", true },
{ "lausannedentiste.ch", true },
{ "lausannelovers.ch", true },
@@ -22897,8 +25123,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lavaux.lv", true },
{ "lavenderx.org", true },
{ "laviedalex.ovh", true },
+ { "lavinaec.com", true },
{ "lavinya.net", true },
- { "lavishlooksstudio.com.au", true },
{ "lavita.de", true },
{ "lavitaura.com", true },
{ "lavitrine-une-collection.be", true },
@@ -22909,24 +25135,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lavril.fr", true },
{ "law-colleges.com", true },
{ "law-peters.de", true },
+ { "law-profile.com", true },
{ "law.co.il", true },
{ "law22.com", true },
+ { "lawabidingcactus.com", true },
{ "lawbirduk.com", true },
+ { "lawlessenglish.com", true },
+ { "lawlessfrench.com", true },
+ { "lawlessspanish.com", true },
{ "lawn-seeds.com", true },
{ "lawnuk.com", true },
{ "lawrenceberg.nl", true },
{ "lawrencemurgatroyd.com", true },
{ "lawrencewhiteside.com", true },
- { "lawyerdigital.co.bw", true },
{ "lawyerkf.com", true },
{ "layazc.com", true },
- { "laylo.io", false },
- { "laylo.nl", false },
+ { "laylo.io", true },
+ { "laylo.nl", true },
{ "layordesign.co.uk", true },
{ "layoutsatzunddruck.de", true },
{ "lazau.com", true },
+ { "lazisbaiturrahman.org", true },
{ "lazistance.com", true },
{ "lazowik.pl", true },
+ { "lazurit.com", true },
{ "lazyboston.com", true },
{ "lazyclock.com", true },
{ "lazyframe.com", true },
@@ -22944,20 +25176,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lbsistemas.com.mx", true },
{ "lbux.org", true },
{ "lc-cs.com", false },
- { "lc-promiss.de", true },
{ "lca-pv.de", true },
{ "lca.gov", true },
{ "lcacommons.gov", true },
{ "lcars-sv.info", true },
+ { "lcdn.ro", true },
{ "lce-events.com", true },
+ { "lcgabogados.com", true },
{ "lcgaj.com", true },
- { "lcht.ch", false },
{ "lcrmscp.gov", true },
+ { "lcx.cc", true },
{ "lcy.im", false },
{ "lcy.moe", true },
{ "ld-begunjscica.si", true },
{ "ldc.com.br", false },
+ { "ldesignweb.com", true },
{ "ldjb.jp", true },
+ { "ldm2468.com", true },
{ "ldsun.com", true },
{ "le-bar.org", true },
{ "le-controle-parental.fr", true },
@@ -22971,43 +25206,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "le-traiteur-parisien.fr", true },
{ "le130rb.com", true },
{ "le23.fr", true },
- { "le42mars.fr", true },
{ "leadbook.ru", true },
{ "leadbox.cz", true },
{ "leaderoftheresistance.com", false },
{ "leaderoftheresistance.net", false },
- { "leadership9.com", true },
- { "leadgenie.me", true },
{ "leadinfo.com", true },
- { "leadingsalons.com", true },
- { "leadplan.ru", true },
+ { "leadpagebuilders.com", true },
{ "leadquest.nl", true },
- { "leaf-consulting.de", true },
{ "leafandseed.co.uk", true },
{ "leafans.tk", false },
{ "leafinote.com", true },
{ "leafland.co.nz", true },
{ "leakforums.net", true },
- { "leamsigc.com", true },
- { "leandre.cn", true },
+ { "leamsigc.com", false },
{ "leankit.com", true },
{ "leanplando.com", true },
{ "leap-it.be", true },
- { "learndev.info", true },
+ { "leapandjump.co.uk", true },
+ { "leapworks.io", true },
{ "learnflakes.net", true },
- { "learnforestry.com", true },
{ "learning-id.com", true },
+ { "learningaboutcarinsurance.com", true },
{ "learningis1.st", true },
{ "learninglaw.com", true },
{ "learningman.top", true },
+ { "learningselfreliance.com", true },
{ "learnlux.com", true },
{ "learnpianogreece.com", true },
{ "learnplayground.com", true },
{ "learnthetruth.tk", true },
- { "learntotradethemarket.com", true },
- { "learntube.cz", true },
{ "leaseit24.com", true },
{ "leaseit24.de", true },
+ { "leaseourthings.com", true },
{ "leaseplan.com", true },
{ "leasit.at", true },
{ "leasit.de", true },
@@ -23018,6 +25248,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "leavesofchangeweekly.org", true },
{ "lebanesearmy.gov.lb", true },
{ "lebarmy.gov.lb", true },
+ { "lebedata.com", true },
{ "lebendige-heilkunst.de", true },
{ "lebens-fluss.at", true },
{ "lebensraum-fitness-toenisvorst.de", true },
@@ -23026,8 +25257,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lebihan.pl", true },
{ "leblanc.io", true },
{ "lebourgeo.is", true },
- { "lechaudrondupertuis.ch", true },
- { "leclaire.com.br", true },
+ { "lecannabis.com", false },
+ { "lecannabiste.com", true },
+ { "lecn2.com", true },
{ "lecoinchocolat.com", true },
{ "lectricecorrectrice.com", true },
{ "led-jihlava.cz", true },
@@ -23035,7 +25267,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ledeguisement.com", true },
{ "lederer-it.com", true },
{ "ledlight.com", true },
+ { "ledlights.ca", true },
{ "ledscontato.com.br", true },
+ { "ledwereld.nl", true },
{ "lee-fuller.co.uk", true },
{ "leeaaronsrealestate.com", true },
{ "leebiblestudycentre.co.uk", true },
@@ -23058,18 +25292,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "leflibustier.ru", true },
{ "lefonddeloeil.com", true },
{ "left-baggage.co.uk", true },
+ { "leftbrainsolutions.com.au", true },
{ "leftclick.cloud", true },
{ "leftclick.eu", true },
- { "lega-dental.com", true },
{ "legabot.fr", true },
+ { "legacyiohs.org", true },
+ { "legacylawofwashington.com", true },
{ "legadental.com", true },
{ "legaillart.fr", true },
+ { "legal-tender.com", true },
+ { "legalatlanta.com", true },
{ "legalcontrol.info", true },
{ "legaldesk.com", true },
{ "legalforms.ng", true },
{ "legalinmotion.es", true },
+ { "legalplace.fr", true },
{ "legalrobot.com", true },
- { "legendagroup.ch", true },
+ { "legalsearch.nl", true },
+ { "legalsoftware.net", true },
+ { "legendary.camera", true },
+ { "legendarycamera.com", true },
+ { "legendcatz.com", true },
{ "legendesdechine.ch", true },
{ "legendofkrystal.com", true },
{ "legends-game.ru", false },
@@ -23086,24 +25329,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "legoutdesplantes.be", true },
{ "legrandvtc.fr", true },
{ "legumeinfo.org", true },
+ { "legyenkianegykereked.hu", true },
{ "lehighmathcircle.org", true },
+ { "lehighvalleypeds.com", true },
{ "lehmitz-weinstuben.de", true },
{ "lehti-tarjous.net", true },
{ "leibniz-gymnasium-altdorf.de", true },
{ "leibniz-remscheid.de", false },
{ "leideninternationalreview.com", true },
- { "leilautourdumon.de", true },
+ { "leighneithardt.com", true },
+ { "leignier.org", true },
{ "leilonorte.com", true },
{ "leinfelder.in", true },
{ "leipzig.photo", true },
{ "leipziger-triathlon.de", true },
{ "leisure-blog.com", true },
{ "leisure-supplies-show.co.uk", true },
+ { "leiyinan.com", true },
{ "lejardindesmesanges.fr", true },
{ "lektier.cf", true },
{ "lel.ovh", true },
+ { "lelambiental.com.br", true },
{ "lemarcheelagrandeguerra.it", true },
{ "lemazol.fr", true },
+ { "lemilane.it", true },
{ "lemni.top", true },
{ "lemoine.at", true },
{ "lemondenumerique.com", true },
@@ -23112,21 +25361,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lemonop.com", true },
{ "lemonparty.co", true },
{ "lemonrockbiketours.com", true },
- { "lemonthy.ca", true },
{ "lemonthy.com", true },
{ "lemouillour.fr", true },
{ "lemuslimpost.com", true },
{ "lenagroben.de", true },
+ { "lenalio.fr", true },
{ "lenaneva.ru", true },
{ "lence.net", true },
- { "lendahandmissionteams.org", true },
+ { "lencia.ga", true },
{ "lendingclub.com", true },
- { "lenget.com", true },
- { "lengzzz.com", true },
{ "lenidh.de", true },
{ "leninalbertop.com.ve", true },
- { "lennier.info", true },
+ { "lenit.nl", true },
{ "lennyobez.be", true },
+ { "lenostech.gr", true },
{ "lenou.nl", true },
{ "lenr-forum.com", true },
{ "lensdoctor.com", true },
@@ -23140,50 +25388,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "leodraxler.at", true },
{ "leola.cz", true },
{ "leola.sk", true },
- { "leolana.com", true },
+ { "leolemos.com.br", true },
{ "leominstercu.com", false },
{ "leon-tech.com", true },
- { "leon.net", true },
- { "leonax.net", true },
{ "leonbuitendam.nl", true },
{ "leondenard.com", true },
{ "leonklingele.de", true },
{ "leonmahler.consulting", true },
{ "leontiekoetter.de", true },
+ { "leopoldina.net", true },
{ "leovanna.co.uk", true },
{ "leowkahman.com", true },
{ "lep.gov", true },
+ { "lepartiecomemoracoes.com.br", true },
{ "lepenetapeti.com", true },
{ "lepidum.jp", true },
{ "leponton-lorient.fr", true },
- { "leppis-it.de", true },
{ "lepsos.com", true },
- { "lequateur.fr", true },
{ "lequerceagriturismo.com", true },
{ "lequest.dk", true },
{ "lereporter.ma", true },
{ "leretour.ch", true },
- { "lerku.com", true },
{ "lernenamsee.ch", true },
{ "lernerspersonalinjury.ca", true },
{ "lernorteuropa.com", true },
{ "lernorteuropa.de", true },
{ "lernorteuropa.eu", true },
{ "lernplattform-akademie.de", true },
- { "lerp.me", true },
{ "les-ateliers-de-melineo.be", true },
+ { "les-explos.com", true },
{ "les-inoxydables.com", true },
- { "les-pingouins.com", true },
{ "lesancheslibres.fr", true },
{ "lesarts.com", true },
{ "lesberger.ch", true },
+ { "lesbofight.com", true },
{ "lesbrillantsdaristide.com", true },
{ "lesconteursavis.org", true },
+ { "lescrapdesfilles.fr", true },
{ "leseditionsbraquage.com", true },
{ "lesfilmsavivre.com", true },
{ "lesgoodnews.fr", true },
{ "leshervelines.com", true },
- { "lesjardinsdemathieu.net", true },
{ "lesjardinsdubanchet.fr", true },
{ "lesmamy.ch", true },
{ "lesmontagne.net", true },
@@ -23193,7 +25438,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lesplatanes.ch", true },
{ "lespret.nl", true },
{ "lesquerda.cat", false },
- { "lessets-graphiques.com", true },
{ "lessis.moe", true },
{ "lesterchan.net", true },
{ "lesterrassesdusoleil.ch", true },
@@ -23201,8 +25445,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lesyndicat.info", true },
{ "leszonderstress.nl", true },
{ "letemps.ch", true },
+ { "letempsdujasmin.fr", true },
{ "letertrefleuri.com", true },
- { "letkidsbekids.co.uk", true },
+ { "letni-kurzy.cz", true },
{ "leto12.xyz", true },
{ "letranif.net", true },
{ "lets-bounce.com", true },
@@ -23214,13 +25459,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "letsdebug.net", true },
{ "letsdocode.com", true },
{ "letsencrypt-for-cpanel.com", true },
+ { "letsflyinto.space", true },
{ "letsgame.nl", true },
{ "letsgetchecked.com", true },
{ "letsgowhilewereyoung.com", true },
- { "letskick.ru", true },
{ "letson.me", true },
{ "letsorganise.uk", true },
{ "letspartyrugby.co.uk", true },
+ { "letsprint3d.net", true },
{ "letssackcancer.org", true },
{ "letstalkcounseling.com", true },
{ "letterbox-online.de", true },
@@ -23228,22 +25474,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "letteringinstitute.com", true },
{ "lettersblogatory.com", true },
{ "lettori.club", true },
- { "letzchange.org", true },
+ { "lettres-motivation.net", true },
+ { "leuchtmann.ch", true },
{ "leuenhagen.com", true },
{ "leulu.com", true },
{ "leumi-how-to.co.il", true },
+ { "leutgeb.xyz", true },
{ "leuthardtfamily.com", true },
+ { "lev103.com", true },
{ "levans.fr", true },
{ "levanscatering.com", false },
{ "level-10.de", true },
{ "level6.me", true },
- { "levelcheat.com", true },
+ { "level9hvac.com", true },
{ "levelonetrainingandfitness.com", true },
{ "leveluplv.com", true },
{ "leveluprails.com", true },
{ "levendwater.org", true },
{ "levensbron.nl", true },
{ "leventismotors.com.ng", true },
+ { "leveragedtokens.com", true },
{ "leverj.io", true },
{ "levermann.eu", true },
{ "leviaan.nl", true },
@@ -23254,6 +25504,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "leviscop.de", true },
{ "lew.im", true },
{ "lewdawson.com", true },
+ { "lewdgamer.com", true },
{ "lewis.li", true },
{ "lewiscollard.com", true },
{ "lewisdatasecurity.com", true },
@@ -23266,44 +25517,52 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lexpierce.social", true },
{ "lexway.pk", true },
{ "leymaritima.com", true },
+ { "leyun.cloud", true },
{ "lezard-com.fr", true },
{ "lfashion.eu", true },
{ "lfgss.com", true },
+ { "lfrconseil.com", true },
{ "lg-waps.go.jp", true },
{ "lg-waps.jp", true },
- { "lg0.site", true },
{ "lgbt-colleges.com", true },
{ "lgbt.io", true },
{ "lgbt.ventures", true },
{ "lgbtq.cool", true },
+ { "lgbtventures.com", true },
{ "lghfinancialstrategy.ch", true },
+ { "lgnsh.fr", true },
{ "lgpecasoriginais.com.br", true },
{ "lhajn.cz", true },
{ "lhakustik.se", true },
- { "lhalbert.xyz", true },
{ "lhamaths.online", true },
{ "lhconsult.tk", false },
{ "lhgavarain.com", true },
{ "lhost.su", true },
+ { "lhr.wiki", true },
{ "li-ke.co.jp", true },
{ "li.search.yahoo.com", false },
{ "lialion.de", true },
{ "liam-w.io", true },
{ "liamelliott.me", true },
{ "liamlin.me", true },
- { "liangyichen.net", true },
+ { "liandongyoupin.com", true },
+ { "liangxingai.com", true },
+ { "lianhongrui.com", true },
{ "lianye1.cc", true },
{ "lianye2.cc", true },
{ "lianye3.cc", true },
{ "lianye4.cc", true },
{ "lianye5.cc", true },
{ "lianye6.cc", true },
+ { "liaronce.com", true },
{ "liautard.fr", true },
{ "lib64.net", true },
{ "libbitcoin.org", true },
{ "libble.eu", true },
+ { "libbywinberginteriors.com.au", true },
{ "liberapay.com", true },
{ "liberation2020.com", true },
+ { "liberationist.org", true },
{ "liberationschool.org", true },
{ "liberdademg.com.br", true },
{ "libgame.com", true },
@@ -23313,31 +25572,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "library-quest.com", true },
{ "libraryextension.com", true },
{ "libraryfreedomproject.org", false },
+ { "libraryofcode.us", true },
{ "librarytools.com", false },
+ { "libravatar.org", true },
{ "librazy.org", true },
+ { "libre-innovation.org", true },
{ "libre-service.de", true },
{ "libre.cr", true },
{ "libre.university", true },
{ "libreboot.org", true },
{ "librebox.de", true },
{ "librelamp.com", true },
+ { "libremail.nl", true },
{ "librends.org", true },
{ "libreoffice-from-collabora.com", true },
{ "libreofficefromcollabora.com", true },
{ "librervac.org", true },
{ "librisulibri.it", true },
- { "librosdescargas.club", true },
+ { "librofilia.com", true },
{ "libscode.com", false },
{ "libskia.so", true },
{ "libsodium.org", true },
{ "libstock.si", true },
- { "libzik.com", true },
{ "lichess.org", true },
- { "lichtmetzger.de", true },
+ { "lichtmetzger.de", false },
{ "lichtspot.de", true },
{ "lichttechnik-tumler.com", true },
{ "lichttraeumer.de", true },
{ "lickthesalt.com", true },
+ { "licloud.homeip.net", true },
{ "lidavidm.me", true },
{ "lidel.org", true },
{ "liderwalut.pl", false },
@@ -23348,7 +25611,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lidl-shop.cz", true },
{ "lidl-shop.nl", true },
{ "lidl-tour.ro", true },
- { "lidlovajogurteka.si", true },
{ "lidogr.com", true },
{ "lidong.me", true },
{ "lidow.eu", true },
@@ -23357,13 +25619,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lie.as", true },
{ "liebel.org", true },
{ "lieberwirth.biz", true },
- { "liehuojun.com", true },
{ "liemen.net", true },
- { "lierrmm.space", true },
+ { "lieren4x4.nl", true },
{ "lieuu.com", true },
{ "lifanov.com", true },
{ "life-emotions.pt", true },
- { "life-like.com", true },
+ { "life29.com", true },
{ "lifeartstudios.net", true },
{ "lifebetweenlives.com.au", true },
{ "lifeboxhealthcare.co.uk", true },
@@ -23376,14 +25637,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lifekiss.ru", true },
{ "lifelenz.com", true },
{ "lifematenutrition.com", true },
+ { "lifemcserver.com", true },
{ "lifemstyle.com", true },
{ "lifeqa.net", true },
{ "lifereset.it", true },
{ "lifesafety.com.br", true },
+ { "lifeset.pp.ua", true },
+ { "lifeslonglist.com", true },
{ "lifestylecent.com", true },
{ "lifestylefinancial.ca", true },
+ { "lifestylefoto.cz", true },
+ { "lifestyletravel.co.za", true },
{ "lifetree.network", true },
{ "lifeupgame.fr", true },
+ { "lifewithdyna.com", true },
{ "lifi.digital", true },
{ "lifi.is", true },
{ "lift-wise.com", true },
@@ -23393,7 +25660,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "light-up.xyz", true },
{ "light.mail.ru", true },
{ "lightbox.co", true },
- { "lightdream.tech", true },
{ "lighting-centres.co.uk", true },
{ "lightingagoura.com", true },
{ "lightingagourahills.com", true },
@@ -23406,11 +25672,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lightingmoorpark.com", true },
{ "lightingnewburypark.com", true },
{ "lightingoakpark.com", true },
- { "lightingpacificpalisades.com", true },
{ "lightingsimivalley.com", true },
{ "lightingthousandoaks.com", true },
{ "lightingwestlakevillage.com", true },
- { "lightme.us", true },
{ "lightning.community", true },
{ "lightning.engineering", true },
{ "lightpics.net", true },
@@ -23420,8 +25684,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lightsheep.no", false },
{ "lightspeed.com", false },
{ "lightspeedta.co", true },
- { "lighttp.com", true },
- { "lightupcollective.co.uk", true },
{ "lightweighthr.com", true },
{ "ligmadrive.com", true },
{ "lignite.com", true },
@@ -23431,6 +25693,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lijncoaching.nl", true },
{ "lijstje.be", true },
{ "lijstje.nl", true },
+ { "likc.me", true },
{ "likeablehub.com", true },
{ "likeabox.de", true },
{ "likebee.gr", true },
@@ -23441,16 +25704,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "likeometer.co", true },
{ "likere.com", true },
{ "likesforinsta.com", true },
+ { "likui.me", true },
{ "lilaccakeboutique.com", true },
- { "liliang13.com", true },
{ "liljohnsanitary.net", true },
{ "lillepuu.com", true },
- { "lilliangray.co.za", true },
+ { "lilliputpreschool.co.nz", true },
{ "lily-bearing.com", true },
{ "lily-inn.com", true },
{ "lilyfarmfreshskincare.com", true },
{ "lilylasvegas.com", true },
{ "lilysbouncycastles.com", true },
+ { "lilyvet.com", true },
{ "lim-light.com", true },
{ "limap.ch", true },
{ "limawi.io", true },
@@ -23463,9 +25727,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "limitededitioncomputers.com", true },
{ "limitededitionsolutions.com", true },
{ "limitxyz.com", true },
- { "limoairporttoronto.net", true },
+ { "limo.pl", true },
+ { "limoshka.ru", true },
{ "limousineservicezurich.com", true },
{ "limpid.nl", true },
+ { "limsia.co", true },
+ { "limsia.com", true },
{ "limules.ch", true },
{ "limx.win", true },
{ "lin.fi", true },
@@ -23480,13 +25747,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lincnaarzorg.nl", true },
{ "lincoln.com.cn", true },
{ "lincoln.mx", true },
+ { "lincolnboolefoundation.org", true },
{ "lincolnfinewines.com", true },
{ "lincolnpedsgroup.com", true },
{ "lincolnsfh.com", true },
{ "lincolnwayflorist.com", true },
{ "lindalap.fi", true },
{ "lindaolsson.com", true },
- { "lindemann.space", true },
{ "linden.me", true },
{ "lindeskar.se", true },
{ "lindnerhof-taktik.de", true },
@@ -23504,23 +25771,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "linearaudio.net", true },
{ "linearaudio.nl", true },
{ "linearmap.com", true },
- { "linfamilygc.com", true },
+ { "linge-ma.ro", true },
{ "lingerie.com.br", true },
{ "lingeriesilhouette.com", true },
{ "lingotaxi.com", true },
- { "linguamilla.com", true },
{ "linguatrip.com", false },
{ "lingvo-svoboda.ru", true },
{ "linherest.tk", true },
{ "linhua.org", true },
{ "link-sanitizer.com", true },
- { "link.ba", true },
{ "link2serve.com", true },
- { "linkat4.cz", true },
+ { "link9.net", true },
{ "linkdr.uk", true },
{ "linkedinbackground.com", true },
{ "linkedpipes.com", true },
{ "linkenheil.org", true },
+ { "linkk9.com", true },
{ "linklocker.co", true },
{ "linkmaker.co.uk", true },
{ "linkmauve.fr", true },
@@ -23536,9 +25802,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "linpx.com", true },
{ "linqhost.nl", true },
{ "linss.com", true },
- { "lintellift.com", true },
{ "lintmx.com", true },
- { "linusdrop.tips", true },
{ "linux-audit.com", true },
{ "linux-florida.com", true },
{ "linux-mint-czech.cz", true },
@@ -23546,7 +25810,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "linux.cn", true },
{ "linux.conf.au", true },
{ "linux.fi", true },
- { "linux.pizza", true },
{ "linux3.org", true },
{ "linuxadictos.com", true },
{ "linuxbabe.com", true },
@@ -23556,6 +25819,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "linuxcommand.ru", true },
{ "linuxdays.cz", true },
{ "linuxforum.ch", true },
+ { "linuxgiggle.com", true },
{ "linuxhostsupport.com", true },
{ "linuxiuvat.de", true },
{ "linuxlounge.net", true },
@@ -23565,6 +25829,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "linx.net", true },
{ "linzgau.de", true },
{ "linzyjx.com", true },
+ { "lion-tech.ch", true },
+ { "lionlyrics.com", true },
{ "lionsdeal.com", true },
{ "lipartydepot.com", true },
{ "lipex.com", true },
@@ -23580,17 +25846,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "liquidinternet.co", true },
{ "liquipedia.net", true },
{ "lirion.de", true },
- { "liris-beautywelt.de", true },
{ "lirlandais.ch", true },
{ "lirnberger.com", true },
{ "lisahh-jayne.com", true },
{ "lisamccorrie.com", true },
- { "lisamortimore.com", true },
{ "lisanzauomo.com", true },
{ "lisburnhottubnbounce.co.uk", true },
+ { "lisinphotography.com", true },
{ "liskgdt.net", true },
{ "lislan.org.uk", true },
{ "lisowski-development.com", false },
+ { "lissauer.com", true },
{ "list-gymnasium.de", true },
{ "listahu.org", true },
{ "listekdo.fr", true },
@@ -23600,10 +25866,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lists.fedoraproject.org", true },
{ "lists.stg.fedoraproject.org", true },
{ "litchidova.nl", true },
+ { "litebit.de", true },
{ "litebit.eu", true },
+ { "litebit.nl", true },
{ "litebitanalytics.eu", true },
+ { "litebitcdn.eu", true },
{ "litebits.com", true },
{ "litemind.com", false },
+ { "literaki123.pl", true },
{ "literarymachin.es", true },
{ "literature-schools.com", true },
{ "litfin.name", true },
@@ -23615,9 +25885,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "littlebestfriend.de", true },
{ "littleblackfish.se", true },
{ "littleboutiqueshop.co.uk", true },
- { "littleboutiqueshop.com", true },
- { "littleboutiqueshop.uk", true },
- { "littledev.nl", true },
{ "littleduck.xyz", true },
{ "littlefairy.no", true },
{ "littlefamilyadventure.com", true },
@@ -23625,6 +25892,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "littlejumpers.co.uk", true },
{ "littlelife.co.uk", true },
{ "littlenina.nz", false },
+ { "littlenlargeevents.co.uk", true },
{ "littlepigcreek.com.au", true },
{ "littlepincha.fr", true },
{ "littleprincessandmascotparties.co.uk", true },
@@ -23635,19 +25903,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "littleskin.cn", true },
{ "littleswitch.co.jp", true },
{ "littlewatcher.com", true },
+ { "liturgical.net", true },
{ "litvideoserver.de", true },
{ "litz.ca", true },
{ "litzenberger.ca", true },
{ "liu0hy.cn", true },
- { "liuboznaiko.eu", true },
+ { "liubliu.co.uk", true },
{ "liudon.org", true },
+ { "liujr.tk", true },
{ "liul.in", true },
{ "liupeicheng.top", true },
{ "liuxiangling.com", true },
{ "liv3d.stream", true },
- { "livadm.ml", true },
+ { "liv3ly.com", true },
+ { "livada.fr", true },
{ "livaniaccesorios.com", true },
- { "live4k.media", false },
+ { "live8811.com", true },
+ { "live8899.cn", true },
+ { "live8899.co", true },
+ { "live8899.net", true },
+ { "live9922.com", true },
{ "livebandphotos.com", true },
{ "livebetterwith.com", true },
{ "livebythesun.de", true },
@@ -23659,8 +25934,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "livedesign.at", true },
{ "livedesign24.de", true },
{ "liveflightapp.com", true },
- { "liveforspeed.se", true },
{ "livehomecams.co.uk", true },
+ { "livejasmin.dk", true },
{ "livekaarten.be", true },
{ "livekaarten.nl", true },
{ "livekarten.at", true },
@@ -23675,10 +25950,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "livelexi.com", true },
{ "livelifewithintent.com", true },
{ "livepaperhelp.com", true },
- { "liveperformersmeeting.net", true },
{ "liveregistratie.nl", true },
{ "liverider.co.jp", true },
{ "livesheep.com", true },
+ { "liveslides.com", true },
{ "livesure.com", true },
{ "livetoride.co.za", true },
{ "livi.co", true },
@@ -23695,10 +25970,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "livingkingsinc.net", true },
{ "livinglocalnashville.com", true },
{ "livingworduk.org", true },
- { "livnev.me", true },
+ { "livive.com", true },
{ "livnev.xyz", true },
{ "livogeva.dk", true },
- { "livolett.de", true },
{ "lixiaoyu.live", true },
{ "lixtick.com", true },
{ "liyang.pro", false },
@@ -23707,52 +25981,63 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lizardsystems.com", true },
{ "lizheng.de", true },
{ "lizhi.io", true },
- { "lizhuogui.ga", true },
{ "lizmooredestinationweddings.com", true },
+ { "liztattoo.se", true },
{ "lizzaran.io", true },
{ "lizzwood.com", true },
{ "ljason.cn", true },
{ "ljoonal.xyz", true },
{ "ljs.io", true },
- { "ljskool.com", true },
{ "ljusdalsnaprapatklinik.se", true },
- { "ljw.me", true },
{ "lk-hardware.cz", true },
+ { "lk1.bid", true },
{ "lkellar.org", true },
{ "lknw.de", true },
- { "lkp111138.me", true },
+ { "ll.gr", true },
+ { "ll5197.co", true },
+ { "ll6729.co", true },
+ { "ll6729.com", true },
+ { "ll6957.co", true },
+ { "ll9297.co", true },
+ { "ll9397.com", true },
+ { "ll9721.com", true },
+ { "ll9728.co", true },
{ "llamacuba.com", true },
- { "llamasweet.tech", true },
+ { "llandudnochristmasfayre.co.uk", true },
+ { "llbcpa.com", true },
{ "llemoz.com", true },
- { "ller.xyz", true },
{ "llm-guide.com", true },
{ "llnl.gov", true },
{ "lloyd-day.me", true },
{ "llslb.com", false },
+ { "lm-landscapes.co.uk", true },
{ "lm-pumpen.de", false },
+ { "lm1628.com", true },
+ { "lm228.cn", true },
+ { "lm228.com", true },
+ { "lm338.cn", true },
+ { "lm338.com", true },
{ "lmbyrne.co.uk", true },
{ "lmbyrne.com", true },
{ "lmcm.io", true },
{ "lmddgtfy.net", true },
+ { "lmdexpresstransport.com", true },
{ "lmintlcx.com", true },
{ "lmmi.nl", true },
{ "lmmtfy.io", true },
{ "lmsptfy.com", true },
+ { "lmsuitespagna.it", true },
{ "lmtls.me", true },
{ "lmtm.eu", true },
- { "lmtravis.com", true },
+ { "lndrive.space", true },
{ "lng-17.org", true },
{ "lnhequipmentltd.com", true },
- { "lnmp.me", true },
- { "lntu.org", true },
{ "lnyltx.cn", true },
{ "load-ev.de", true },
{ "loadlow.me", true },
- { "loadwallet.com", true },
{ "loanaway.ca", true },
{ "loancompare.co.za", true },
{ "loandolphin.com.au", true },
- { "loanreadycredit.com", true },
{ "loansharkpro.com", true },
{ "loanstreet.nl", true },
{ "lob-assets-staging.com", true },
@@ -23763,41 +26048,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lobosdomain.hopto.org", true },
{ "lobsangstudio.com", true },
{ "lobstr.co", true },
+ { "loca-voiture.fr", true },
{ "local360.net", true },
{ "localbandz.com", true },
{ "localbitcoins.com", true },
{ "localblitz.com", true },
{ "localblock.co.za", true },
{ "localbouncycastle.com", true },
+ { "localcryptopremium.com", true },
+ { "locald.at", true },
{ "localdecor.com.br", true },
- { "localegroup.com", true },
{ "localethereum.com", true },
{ "localhorst.duckdns.org", true },
{ "localhorst.xyz", true },
{ "localhost.ee", true },
{ "localprideart.com", true },
+ { "localsearch.homes", true },
{ "localsource.eu", true },
{ "localspot.pl", true },
{ "locapos.com", true },
- { "location-fichier-email.com", true },
+ { "location-appartement-dakar.com", true },
{ "locatorplus.gov", true },
{ "locauxrama.fr", true },
+ { "lock.me", true },
{ "lock23.ca", true },
{ "lockaby.org", true },
{ "locker.email", true },
{ "locker.plus", true },
{ "locklock.com.br", true },
{ "locklockbrasil.com.br", true },
+ { "lockme.at", true },
+ { "lockme.ch", true },
+ { "lockme.de", true },
+ { "lockme.pl", true },
{ "locknlock.com.br", true },
{ "locknlockbrasil.com.br", true },
{ "lockpick.nl", true },
{ "lockpicks.se", true },
- { "lockr.io", true },
+ { "locksmith--sanantoniotx.com", true },
{ "locksmith-sanantonio-tx.com", true },
{ "locksmithbalchsprings.com", true },
{ "locksmithballito.com", true },
{ "locksmithbluff.co.za", true },
- { "locksmithcarrolltontx.com", true },
{ "locksmithdearborn.com", true },
{ "locksmithdrippingspringstx.com", true },
{ "locksmithedmonds.com", true },
@@ -23825,19 +26117,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "locksmiththewoodlands.com", true },
{ "lockwoodchristmastreefarm.com", true },
{ "locomocosec.com", true },
+ { "locomore.com", true },
{ "locomotionds.com", true },
{ "locomotive.net.br", true },
+ { "locoserver.net", true },
{ "locurimunca.co", true },
{ "locus-dashboard.com", true },
{ "locusmap.eu", true },
{ "lodash.com", false },
{ "loddeke.eu", true },
- { "lodewijkict.nl", true },
{ "loenshotel.de", true },
{ "loew.de", true },
{ "loforo.com", true },
{ "lofttravel.com", true },
- { "logaldeveloper.com", true },
{ "loganmarchione.com", true },
{ "loganparkneighborhood.org", true },
{ "logbook.ch", true },
@@ -23848,6 +26140,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "logexplorer.net", true },
{ "logfile.at", true },
{ "logfile.ch", true },
+ { "logicaccountingsolutions.com", true },
+ { "logical-invest.com", true },
{ "logiciel-entreprise-seurann.fr", true },
{ "logicio.ch", false },
{ "logicio.de", false },
@@ -23857,12 +26151,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "login.corp.google.com", true },
{ "login.gov", false },
{ "login.launchpad.net", true },
+ { "login.raiffeisen.ch", true },
{ "login.sapo.pt", true },
{ "login.ubuntu.com", true },
{ "login.xero.com", false },
{ "login.yahoo.com", false },
- { "loginsentinel.eu", true },
{ "logitel.de", true },
+ { "logitrack.tk", true },
+ { "logo-vogtland.de", true },
{ "logoesun.com", true },
{ "logoglo.com", true },
{ "logojoes.net", true },
@@ -23873,18 +26169,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "logostock.jp", true },
{ "logtalk.org", true },
{ "logtalk.pt", true },
+ { "logtywardrobe.com", true },
{ "logue.be", true },
{ "logze.nl", true },
{ "lohanaflores.com.br", true },
{ "lohmeier.it", true },
+ { "lohmeyer-it.de", true },
+ { "lohmeyer.cc", true },
+ { "loic.gr", true },
{ "loichot.ch", true },
- { "loigiai.net", true },
- { "loihay.net", true },
+ { "loisircreatif.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 },
@@ -23893,7 +26193,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lojamoleco.com.br", true },
{ "lojaprimemed.com.br", true },
{ "lojaprojetoagua.com.br", true },
- { "lojasceletro.com.br", true },
{ "lojaterrazul.com.br", true },
{ "lojavisamed.com.br", true },
{ "lojix.com", true },
@@ -23901,15 +26200,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lok.space", true },
{ "lokaal.org", true },
{ "lokal-speisen.de", true },
+ { "lokalna.net", true },
{ "loker.id", true },
{ "loket.nl", true },
+ { "lolas-vip.com", true },
+ { "lolaseuropeancafe.com", true },
{ "lolcow.farm", true },
- { "lolhax.org", true },
+ { "loli.com", true },
{ "loli.net", true },
{ "loli.pet", true },
{ "loli.ski", true },
{ "loli.tube", true },
- { "loli.vip", true },
{ "loli.world", true },
{ "lolibrary.org", true },
{ "lolic.xyz", true },
@@ -23925,28 +26226,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lommyfleet.com", true },
{ "lon-so.com", true },
{ "lona.io", true },
- { "lonay.me", true },
+ { "lonasdigital.com", true },
{ "london-transfers.com", true },
{ "london.dating", true },
{ "londongallery.net", true },
{ "londongynaecologist.co", true },
+ { "londonindustry.it", true },
{ "londonkan.jp", true },
{ "londonkeyholdingcompany.co.uk", true },
+ { "londonpropertymatch.com", true },
+ { "londonseedcentre.co.uk", true },
{ "lonelytweets.com", true },
{ "lonesomecosmonaut.com", true },
{ "lonestarlandandcommercial.com", true },
- { "long-journey.com", true },
+ { "long116.com", true },
{ "long139.com", true },
{ "long18.cc", true },
+ { "long228.com", true },
{ "long688.com", true },
{ "longboat.io", true },
{ "longhaircareforum.com", true },
{ "longhorn-imports.com", true },
{ "longhorn.id.au", true },
+ { "longma168.cn", true },
+ { "longma168.com", true },
{ "longstride.net", true },
{ "longtermcare.gov", true },
{ "lonniec.com", true },
{ "lonniemason.net", true },
+ { "lonwan.ru", true },
{ "look.co.il", true },
{ "lookagain.co.uk", true },
{ "lookasik.eu", true },
@@ -23959,50 +26267,56 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lookastic.ru", true },
{ "lookatmysco.re", true },
{ "lookbetweenthelines.com", true },
+ { "looker.wang", true },
+ { "lookgadgets.com", true },
{ "lookup-dns.net", true },
{ "lookzook.com", true },
{ "loom.no", true },
+ { "loonylatke.com", true },
{ "loopstart.org", true },
{ "looseleafsecurity.com", true },
{ "loothole.com", true },
- { "loovto.net", true },
{ "loposchokk.com", true },
{ "loqu8.com", true },
{ "loquo.com", true },
- { "lord.sh", true },
- { "lordofthebrick.com", true },
+ { "loqyu.com", true },
+ { "lordjevington.co.uk", true },
{ "lore.azurewebsites.net", true },
+ { "loremipsum.info", true },
{ "lorenadumitrascu.ro", true },
+ { "lorenz-hundler.co", true },
+ { "lorenzocompeticion.com", true },
{ "loreofthenorth.com", true },
{ "loreofthenorth.nl", true },
{ "loricozengeller.com", true },
- { "lorientlejour.com", true },
{ "loritaboegl.de", true },
{ "lormansas.com", true },
{ "losangelestown.com", true },
- { "losless.fr", true },
+ { "loshogares.com.mx", true },
+ { "losmedicamentos.net", true },
{ "losreyesdeldescanso.com.ar", true },
- { "loss.no", true },
{ "lost.host", true },
{ "lost.report", true },
- { "lostinweb.eu", true },
{ "lostkeys.co.uk", true },
{ "lostsandal.com", true },
{ "lostsandal.io", true },
{ "lostserver.com", true },
{ "lostwithdan.com", true },
+ { "loteamentoabertoamparo.com.br", true },
{ "loteamentomontereiitu.com.br", true },
- { "lothlorien.ca", false },
{ "lotl.ru", true },
{ "lotn.mobi", true },
{ "lotn.nl", true },
{ "lotnonline.com", true },
{ "lotnonline.nl", true },
+ { "loto-tele.com", true },
{ "lotro-wiki.com", true },
{ "lotsofbargains.com", true },
+ { "lottoland.pt", true },
{ "lottospielen24.org", false },
{ "lotw.de", true },
{ "lotz.li", true },
+ { "lou.ist", true },
{ "lou.lt", true },
{ "louange-reconvilier.ch", true },
{ "loucanfixit.com", true },
@@ -24011,6 +26325,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "louisapolicefoundation.org", true },
{ "louisemisellinteriors.co.uk", true },
{ "louisvillecarguys.com", true },
+ { "louisvillefibroids.com", true },
{ "loune.net", true },
{ "loungecafe.net", true },
{ "loungecafe.org", true },
@@ -24018,8 +26333,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "love4taylor.me", true },
{ "loveai.org", true },
{ "loveandadoreboutique.com", true },
+ { "lovebeingsexy.co.uk", true },
{ "lovebigisland.com", true },
- { "lovecrystal.co.uk", true },
{ "loveislandgames.com", true },
{ "loveisourweapon.com", true },
{ "lovelivewiki.com", true },
@@ -24027,9 +26342,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lovemanagementaccounts.co.uk", true },
{ "lovemiku.info", true },
{ "lovemomiji.com", true },
+ { "lovemybubbles.com", true },
{ "lovenwishes.com", true },
{ "loveph.one", true },
{ "lover-bg.com", true },
+ { "loverepair.co.uk", true },
{ "loverepublic.ru", true },
{ "lovesmagical.com", true },
{ "lovesupremefestival.com", true },
@@ -24040,7 +26357,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lovingthermo.com", true },
{ "lovizaim.ru", true },
{ "low-diets.com", true },
- { "lowcarblab.com", true },
+ { "lowbidders.com", true },
+ { "lowcost.to", true },
{ "lowcostwire.com.au", true },
{ "lowerpricefinder.com", true },
{ "lowmagnitude.com", true },
@@ -24048,20 +26366,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lowsidetna.com", true },
{ "lowson.ca", true },
{ "loxal.net", true },
+ { "loxal.org", true },
+ { "loyaleco.it", true },
{ "loyaltyondemand.club", true },
{ "loyaltyondemand.eu", true },
+ { "loyisa.cn", true },
{ "lp-support.nl", true },
{ "lpt-nebreziny.eu", true },
+ { "lq.hr", true },
{ "lra-cloud.de", true },
{ "lrdo.net", true },
{ "lriese.ch", true },
{ "lrssystems.com", true },
+ { "lrumeq.com", true },
{ "ls-alarm.de", true },
{ "ls-modcompany.com", true },
{ "lsal.me", true },
{ "lsc-dillingen.de", true },
{ "lsc.gov", true },
- { "lshiy.com", true },
+ { "lsh1688.com", true },
+ { "lsiq.io", true },
{ "lsmentor.com", true },
{ "lsmpx.com", true },
{ "lsquo.com", true },
@@ -24072,13 +26396,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ltaake.com", true },
{ "ltecode.com", true },
{ "ltib.com.au", true },
- { "ltlec.cn", true },
- { "ltlec.net", true },
- { "ltlec.org", true },
{ "ltls.org", true },
- { "ltmw.xyz", true },
{ "ltn-tom-morel.fr", true },
- { "lty.space", true },
+ { "ltservers.net", true },
{ "lu.search.yahoo.com", false },
{ "luan.ma", true },
{ "luav.org", true },
@@ -24093,32 +26413,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lucasantarella.com", true },
{ "lucasbergen.ca", true },
{ "lucasem.com", true },
- { "lucasgaland.com", true },
{ "lucasgymnastics.com", true },
+ { "lucasit.com", true },
{ "lucaslarson.net", true },
{ "lucassoler.com.ar", false },
{ "luce.life", true },
{ "luchscheider.de", false },
+ { "luchthavenmaastricht.nl", true },
+ { "lucian.blog", true },
{ "lucianoalbanes.com", true },
{ "lucid-light.de", true },
+ { "lucid-reality.ch", true },
{ "lucidframeworks.com", true },
{ "lucidlight.de", true },
- { "lucidoccult.com", true },
+ { "lucie-parizkova.cz", true },
{ "lucie.jp", true },
{ "lucielavickova.com", true },
{ "luckycastles.co.uk", true },
{ "luckyfrog.hk", true },
- { "luckyxf.com", true },
+ { "luckystorevn.com", true },
{ "luclu7.fr", true },
{ "lucy.science", true },
{ "lucyparsonslabs.com", true },
{ "lucysan.net", true },
{ "lucz.co", true },
+ { "luda.me", true },
{ "ludek.biz", true },
{ "ludikovsky.name", true },
{ "ludogue.net", true },
{ "ludovic-muller.fr", true },
- { "ludum.pl", true },
{ "ludwiggrill.de", true },
{ "ludwigjohnson.se", true },
{ "ludwigpro.net", true },
@@ -24131,10 +26454,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "luftbild-siegerland.de", true },
{ "luftreiniger.biz", true },
{ "lugbb.org", true },
- { "lugimax.com", true },
{ "luginbuehl.be", true },
+ { "luginbuehl.eu", true },
{ "lugui.in", true },
- { "lui.pink", true },
+ { "luisa-birkner.de", true },
{ "luiscapelo.info", true },
{ "luismaier.de", true },
{ "luisyr.com", true },
@@ -24154,20 +26477,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lukem.net", true },
{ "lukeng.net", true },
{ "lukesbouncycastlehire.com", true },
- { "lukestebbing.com", true },
- { "lukesutton.info", true },
- { "lukmanulhakim.id", true },
+ { "lukestebbing.com", false },
{ "lukull-pizza.de", true },
- { "luloboutique.com", true },
{ "lumbercartel.ca", true },
{ "lumen.sh", true },
+ { "lumenbrowser.com", true },
{ "lumi.pw", true },
{ "lumiere.com", true },
{ "luminaire.fr", true },
{ "luminaires-online.fr", true },
+ { "luminary.pl", true },
{ "lumitop.com", true },
{ "lumminary.com", true },
- { "lunafag.ru", true },
+ { "lumomongoose.com", true },
{ "lunakit.org", true },
{ "lunalove.de", true },
{ "lunanova.moe", true },
@@ -24179,53 +26501,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lunarsoft.net", true },
{ "lunartail.nl", true },
{ "lunasqu.ee", true },
- { "lunastrail.com", true },
{ "lunazacharias.com", true },
{ "lunchbunch.me", true },
{ "lundberghealthadvocates.com", true },
{ "lune-indigo.ch", true },
{ "lunidea.ch", true },
{ "lunidea.com", true },
- { "lunis.net", true },
- { "lunorian.is", true },
+ { "lunis.net", false },
+ { "lunite.net", true },
{ "luodaoyi.com", true },
- { "luody.info", true },
{ "luoe.me", true },
{ "luoh.cc", true },
{ "luoh.me", true },
{ "luohua.im", true },
{ "luongvu.com", true },
- { "luoshifeng.com", true },
{ "luowu.cc", true },
{ "lupa.cz", true },
{ "lupecode.com", true },
{ "lupinencyclopedia.com", true },
{ "lupinenorthamerica.com", true },
{ "luqsus.pl", true },
+ { "lushan.me", true },
{ "lusitom.com", true },
{ "luso-livros.net", true },
{ "lusoft.cz", true },
+ { "lust.works", true },
{ "lusteniny.cz", true },
{ "lustin.fr", true },
{ "lustrum.ch", true },
- { "lusynth.com", true },
{ "luteijn.biz", true },
{ "luteijn.cloud", true },
{ "luteijn.email", true },
{ "luteijn.pro", true },
+ { "luthierunatespalermo.com", true },
{ "lutizi.com", false },
{ "lutoma.org", true },
{ "luukdebruincv.nl", true },
{ "luukklene.nl", true },
+ { "luukuton.fi", true },
{ "luuppi.fi", true },
+ { "luv.asn.au", true },
{ "luvare.com", true },
{ "luvbridal.com.au", true },
+ { "luvplay.co.uk", true },
{ "luxcraft.eng.br", true },
- { "luxescreenprotector.nl", false },
- { "luxfosdecoenterprise.com", true },
+ { "luxecalendar.com", true },
{ "luxsci.com", true },
- { "luxurynsight.net", true },
- { "luxurytimepieces.net", true },
+ { "luxurydistribution.cz", true },
+ { "luxurynsight.net", false },
{ "luxuryweddingsindonesia.com", true },
{ "luxusnivoucher.cz", true },
{ "luxusnyvoucher.sk", true },
@@ -24236,6 +26559,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "luzfaltex.com", true },
{ "lv.search.yahoo.com", false },
{ "lv0.it", true },
+ { "lvcshu.com", true },
{ "lvftw.com", true },
{ "lvguitars.com", true },
{ "lvmoo.com", true },
@@ -24243,10 +26567,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lw-addons.net", true },
{ "lwl.moe", true },
{ "lwl12.com", true },
+ { "lwsl.ink", true },
+ { "lxai.net", true },
{ "lxd.cc", true },
- { "lxd.pm", true },
{ "lyam.fr", true },
{ "lycee-saintjoseph-mesnieres.fr", true },
+ { "lycetre.com", true },
+ { "lycly.me", true },
{ "lydudlejning.net", true },
{ "lyftrideestimate.com", true },
{ "lykai.ca", true },
@@ -24254,6 +26581,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lynero.dk", true },
{ "lyness.io", true },
{ "lyngvaer.no", true },
+ { "lynnellneri.com", true },
{ "lynnlaytonnissanparts.com", true },
{ "lynnmosher.com", true },
{ "lynsec.com", true },
@@ -24266,9 +26594,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lyrical-nonsense.com", true },
{ "lyricfm.ie", true },
{ "lys.ch", true },
- { "lysdeau.be", true },
{ "lyst.co.uk", true },
- { "lyukaacom.ru", true },
{ "lyuly.com", true },
{ "lyx.dk", true },
{ "lzcreation.com", true },
@@ -24276,11 +26602,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lzwc.nl", true },
{ "m-22.com", true },
{ "m-chemical.com.hk", true },
+ { "m-gaming.tk", true },
{ "m-gh.info", true },
{ "m-idea.jp", true },
{ "m-kleinert.de", true },
+ { "m-kugpn.ru", true },
{ "m-mail.fr", true },
{ "m-monitor.pl", true },
+ { "m-net.de", true },
{ "m-orthodontic.com", true },
{ "m-ses.fr", true },
{ "m.facebook.com", true },
@@ -24295,6 +26624,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "m2tm.fr", true },
{ "m4g.ru", true },
{ "m4rcus.de", true },
+ { "m5197.co", true },
+ { "m6729.co", true },
+ { "m6729.com", true },
+ { "m6957.co", true },
+ { "m9297.co", true },
+ { "m9397.com", true },
+ { "m9721.com", true },
+ { "m9728.co", true },
{ "ma-eir.nl", true },
{ "ma2t.com", true },
{ "maartenderaedemaeker.be", true },
@@ -24310,11 +26647,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mac-servicen.se", true },
{ "mac-support.nu", true },
{ "mac-support.se", true },
+ { "mac-world.pl", true },
{ "mac.biz.tr", true },
{ "mac1.net", true },
+ { "mac101hq.com", true },
{ "macaw.nl", true },
{ "macaws.org", true },
{ "macbook.es", true },
+ { "macedonian-hotels.com", true },
+ { "macedonian-hotels.com.mk", true },
+ { "macedonian-hotels.mk", true },
{ "maceinturecuir.com", true },
{ "maces-net.de", true },
{ "macgeneral.de", true },
@@ -24323,8 +26665,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "macha.cloud", true },
{ "machbach.com", true },
{ "machetewp.com", true },
+ { "machidaclip.com", true },
{ "machikka.com", false },
{ "machinetransport.com", true },
+ { "machon.biz", true },
{ "macht-elektro.de", true },
{ "machtweb.de", true },
{ "machu-picchu.nl", true },
@@ -24343,28 +26687,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maconnerie-dcs.ch", true },
{ "macosxfilerecovery.com", true },
{ "macros.co.jp", true },
+ { "macrostudent.com", true },
{ "macsupportnacka.se", true },
{ "macsupportstockholm.se", true },
{ "mactools.com.co", true },
{ "mad.ninja", true },
- { "madae.nl", true },
+ { "madamegarage.nl", true },
{ "madars.org", false },
{ "madbicicletas.com", true },
{ "madbin.com", true },
{ "madbouncycastles.co.uk", true },
{ "maddi.biz", true },
{ "maddistonevangelical.co.uk", true },
- { "maddistonparentcouncil.co.uk", true },
- { "maddistonpsa.co.uk", true },
{ "maddreefer.com", true },
{ "made-in-earth.co.jp", true },
+ { "made-to-usb.com", true },
{ "madebydusk.com", true },
{ "madebyshore.com", true },
+ { "madeinrussia.com", true },
{ "madeinstudio3.com", true },
{ "madeitwor.se", true },
{ "madeloc.com", true },
{ "mademoiselledemargaux.com", true },
{ "mader.jp", true },
+ { "madewithopendata.org", true },
{ "madin.ru", true },
{ "madirc.net", true },
{ "madisonent-facialplasticsurgery.com", true },
@@ -24372,24 +26718,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "madmar.ee", true },
{ "madmax-store.gr", true },
{ "madoka.nu", true },
+ { "madpsy.uk", true },
{ "madreacqua.org", true },
{ "madrecha.com", true },
{ "madreshoy.com", true },
+ { "madridagency.com", true },
{ "madridartcollection.com", true },
{ "madscientistwebdesign.com", true },
+ { "madsstorm.dk", true },
{ "madtec.de", true },
{ "maduradas.info", true },
{ "maduradas.net", true },
- { "madusecurity.com", true },
- { "mae-berlinistanbul.com", true },
+ { "madwarlock.com", true },
{ "maedchenflohmarkt.at", true },
{ "maedchenflohmarkt.de", true },
{ "maeln.com", true },
{ "maelstrom-fury.eu", true },
{ "maelstrom.ninja", true },
{ "maeplasticsurgery.com", true },
+ { "maesinox.be", true },
{ "maff.co.uk", true },
- { "maff.scot", false },
{ "mafia.network", true },
{ "mafiaforum.de", true },
{ "mafiapenguin.club", true },
@@ -24402,6 +26750,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "magasinsenfrance.com", true },
{ "magazin3513.com", true },
{ "magazinedotreino.com.br", true },
+ { "magbt.net", true },
+ { "magdeburg.directory", true },
{ "magdic.eu", true },
{ "magebit.com", true },
{ "magenda.sk", true },
@@ -24412,19 +26762,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "magewell.nl", true },
{ "maggie.com", true },
{ "magi-cake.com", true },
- { "magi.systems", true },
{ "magic-cards.info", true },
{ "magical-secrets.com", true },
{ "magical.rocks", true },
{ "magicalcircuslv.com", true },
{ "magicamulet.me", true },
{ "magicball.co", true },
+ { "magicbeanschool.com", true },
{ "magicbroccoli.de", true },
{ "magiccards.info", true },
{ "magicdaysomagh.co.uk", true },
{ "magicdlp.com", true },
{ "magicjudges.org", true },
{ "magiclen.org", true },
+ { "magicroom.it", true },
+ { "magicsms.pl", true },
{ "magicspaceninjapirates.de", true },
{ "magictable.com", true },
{ "magicvodi.at", true },
@@ -24438,7 +26790,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "magnets.jp", true },
{ "magnificatwellnesscenter.com", true },
{ "magnificentdata.com", true },
- { "magnoliadoulas.com", true },
{ "magnoliastrong.com", true },
{ "magnunbaterias.com.br", true },
{ "magodaoferta.com.br", true },
@@ -24448,18 +26799,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maguire.email", true },
{ "magwin.co.uk", true },
{ "mah-nig.ga", true },
- { "mahai.me", true },
+ { "mahadulmuneer.org", true },
{ "mahatmayoga.org", true },
+ { "mahawi.sk", true },
{ "mahefa.co.uk", true },
{ "mahjong-navi.com", true },
{ "mahjong.org", true },
{ "mahjongrush.com", true },
+ { "mahler.io", true },
{ "mahrer.net", true },
{ "maiaimobiliare.ro", true },
{ "maidoty.net", true },
{ "maiebanatulfruncea.com", true },
{ "maijia800.com", true },
{ "maikolfish.it", true },
+ { "maikoloc.com", true },
{ "mail-de.jp", true },
{ "mail-rotter.de", true },
{ "mail-settings.google.com", true },
@@ -24472,7 +26826,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mail4you.in", true },
{ "mailbox.mg", true },
{ "mailbox.org", true },
- { "mailer-dot.de", true },
{ "mailfence.com", true },
{ "mailflank.com", true },
{ "mailhardener.com", true },
@@ -24481,6 +26834,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mailjunky.de", true },
{ "maillady-susume.com", true },
{ "mailmag.net", false },
+ { "mailman.ml", true },
{ "mailnara.co.kr", true },
{ "mailtelligent.com", true },
{ "mailto.space", true },
@@ -24489,6 +26843,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mainframeserver.space", true },
{ "mainhattan-handwerker.de", true },
{ "mainlined.org", true },
+ { "mainone.net", true },
+ { "mainquest.org", true },
{ "maintenance-traceur-hp.fr", true },
{ "mainzelmaennchen.net", true },
{ "maioresemelhores.com", true },
@@ -24501,8 +26857,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maisvitaminas.com.br", true },
{ "maitemerino.net", true },
{ "maitheme.com", true },
+ { "maiti.info", true },
{ "maitrise-orthopedique.com", true },
- { "majahoidja.ee", true },
{ "majaweb.cz", true },
{ "majemedia.com", false },
{ "majesnix.org", true },
@@ -24517,36 +26873,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "majlovesreg.one", true },
{ "majolka.com", true },
{ "majorpaintingco.com", true },
+ { "majorpussycum.com", true },
{ "makaleci.com", true },
{ "makalu.me", true },
+ { "makariza.com.co", true },
{ "make-your-own-song.com", true },
{ "makeaboldmove.com", true },
{ "makechanges.com.au", true },
{ "makedin.net", true },
+ { "makefoodrecipes.com", true },
{ "makem-bounce.co.uk", true },
{ "makenaiyo-fx.com", true },
- { "makera.ga", true },
+ { "makerdao.com", true },
{ "makersatwork.com", true },
{ "maketheneighborsjealous.com", true },
{ "makeurbiz.com", true },
{ "maki-chan.de", true },
{ "makinen.ru", true },
+ { "makita-online.kz", true },
{ "makkusu.photo", true },
- { "makogaming.com", true },
+ { "makkyon.com", true },
{ "makos.jp", true },
{ "makowitz.cz", true },
{ "maktoob.search.yahoo.com", false },
{ "maku.edu.tr", true },
+ { "malacat.com", true },
{ "malachiteauth.com", true },
{ "malash.me", true },
- { "malasuk.com", true },
{ "malaysia.search.yahoo.com", false },
{ "malaysian.dating", true },
{ "maldives.cx", true },
+ { "malenaamatomd.com", true },
{ "malenyflorist.com.au", true },
{ "maler-marschalleck.de", true },
{ "malermeister-haussmann.de", true },
{ "malesoowki.blog", true },
+ { "malezan.com", true },
{ "maliar.fr", true },
{ "malibu-electric.com", true },
{ "malibuelectrical.com", true },
@@ -24559,7 +26921,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "malikzinad.com", true },
{ "malinator.net", false },
{ "malinheadview.ie", true },
- { "maljaars-fotografie.nl", true },
+ { "malkoun.com", true },
{ "mall.cz", true },
{ "mall.hr", true },
{ "mall.hu", true },
@@ -24568,32 +26930,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mallach.net", true },
{ "mallhonda.com", true },
{ "mallonline.com.br", true },
- { "malmoesport.se", true },
{ "malnex.de", true },
- { "malscan.com", true },
- { "malscan.org", true },
{ "malta-firma.com", true },
+ { "maltarea.com", true },
{ "malte-kiefer.de", true },
{ "malufs.com.br", true },
{ "malvertise.xyz", true },
{ "malware.watch", true },
{ "malwareinvestigator.gov", true },
+ { "malwarekillers.com", true },
{ "malwaretips.com", false },
{ "maly.cz", true },
{ "malyshata.com", true },
{ "malysvet.net", true },
{ "mamabepo.com", true },
- { "mamadea.be", true },
- { "mamadoma.com.ua", true },
- { "mamafit.club", true },
{ "mamamoet.ru", true },
{ "mamanecesitaungintonic.com", true },
+ { "mamatting.com", true },
{ "mamaxi.org", true },
+ { "mambas.cn", true },
{ "mamiecouscous.com", true },
{ "mammals.net", true },
{ "mammaw.com", true },
- { "mammeitalianeavienna.com", true },
{ "mammothlakesmls.net", true },
+ { "mamoris-net.jp", true },
+ { "mamospienas.lt", true },
{ "mamot.fr", false },
{ "mamuko.nl", true },
{ "man3s.jp", false },
@@ -24603,6 +26964,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "manage4all.de", true },
{ "manageathome.co.uk", true },
{ "managedhosting.de", true },
+ { "managedservicesraleighnc.com", true },
{ "management-companie.ro", true },
{ "managementboek.nl", true },
{ "managementfeedback.com", true },
@@ -24612,12 +26974,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "manager.linode.com", false },
{ "managewp.org", true },
{ "manantialdevida1450.com", true },
- { "manaonetrading.com", true },
{ "manatees.com.au", true },
{ "manatees.net", true },
{ "manavgabhawala.com", true },
{ "manawill.jp", true },
{ "mandcbouncycastlehire.co.uk", true },
+ { "mandiblackburnphoto.com", true },
{ "mandynamic.gr", true },
{ "maneggio.milano.it", true },
{ "manesht.ir", true },
@@ -24627,17 +26989,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "manfredschafer.ch", true },
{ "mangahigh.com", true },
{ "mangaristica.com", false },
+ { "mangel.io", true },
{ "mangnhuapvc.com.vn", true },
{ "mangotwoke.co.uk", true },
{ "manhattanchoralensemble.org", true },
{ "manhole.club", true },
{ "manhuagui.com", true },
- { "maniacoland.com", true },
+ { "maniaiti.nz", true },
{ "manicbouncycastles.co.uk", true },
{ "manicode.com", true },
+ { "manicuradegel.com", true },
+ { "manicuradegel.es", true },
+ { "manilaprinciples.org", true },
{ "maniorpedi.com", true },
{ "maniosglass.gr", true },
{ "manipil.ch", true },
+ { "manipurmatka.net", false },
{ "manja-und-martin.de", true },
{ "manjaro.ru", true },
{ "mankans.com", true },
@@ -24645,7 +27012,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "manmeetgill.com", true },
{ "manneguiden.no", true },
{ "mannheimbloggt.tk", true },
- { "manns-solutions.co.uk", true },
{ "mannschafft.ch", true },
{ "manoirdecontres.com", true },
{ "manonandre-avocat.fr", true },
@@ -24655,29 +27021,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mansfeld.pl", true },
{ "manski.net", true },
{ "mantabiofuel.com", true },
+ { "mantachiepharmacy.com", true },
{ "manti.by", true },
{ "mantor.org", false },
- { "mantra.pictures", true },
- { "mantuo.com", true },
- { "mantuo.xyz", true },
{ "manualidadeson.com", true },
{ "manuall.co.uk", true },
+ { "manuall.cz", true },
{ "manuall.de", true },
+ { "manuall.dk", true },
+ { "manuall.es", true },
+ { "manuall.fi", true },
{ "manuall.fr", true },
{ "manuall.info.tr", true },
{ "manuall.it", true },
+ { "manuall.jp", true },
+ { "manuall.kr", true },
+ { "manuall.no", true },
+ { "manuall.pl", true },
+ { "manuall.pt", true },
{ "manuall.ro", true },
{ "manuall.se", true },
{ "manualscollection.com", true },
{ "manuel-herrmann.de", true },
{ "manuel-schefczyk.de", true },
- { "manuelahidalgo.org", true },
- { "manueldopheide.com", true },
{ "manueli.de", true },
{ "manuelpinto.in", false },
{ "manufacturing.gov", true },
{ "manufacturinginmexico.org", true },
{ "manufacturingusa.com", true },
+ { "manuscripteditorial.com", true },
{ "manuscriptlink.com", true },
{ "manutd.org.np", true },
{ "manuth.life", true },
@@ -24690,7 +27062,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maoi.re", true },
{ "maomihz.com", true },
{ "maone.net", true },
- { "maorseo.com", true },
{ "maorx.cn", true },
{ "maosensanguentadasdejesus.net", true },
{ "maowtm.org", true },
@@ -24702,26 +27073,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mapblender.com", true },
{ "mapchange.org", true },
{ "mapeo.io", true },
- { "maplanetebeaute.fr", true },
{ "maplegate.info", true },
- { "maplehome.tk", true },
{ "mapletime.com", true },
{ "mapresidentielle.fr", true },
{ "mapstack.org", true },
- { "maquena.org", true },
- { "maquettage.com", true },
{ "maquinariaspesadas.org", true },
{ "maquinasdecoserplus.com", true },
+ { "maquininhamercadopoint.com.br", true },
{ "mar-eco.no", true },
{ "marabumadrid.com", false },
{ "marabunta.io", true },
{ "marakovits.net", true },
+ { "marandu.com.ar", true },
{ "marble.com", true },
{ "marbogardenlidkoping.se", true },
{ "marbree.eu", true },
{ "marc-hammer.de", true },
+ { "marc-hoffrichter.de", true },
{ "marc-schlagenhauf.de", true },
{ "marcaixala.me", true },
+ { "marcanhoury.com", true },
{ "marcbeije.com", true },
{ "marcceleiro.com", true },
{ "marceau.ovh", true },
@@ -24733,6 +27104,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marcelinofranchini.info", true },
{ "marcelinofranchini.net", true },
{ "marcelinofranchini.org", true },
+ { "marceljeannin.com", true },
{ "marcelkooiman.com", true },
{ "marcelpreuss.de", true },
{ "marcelsiegert.com", true },
@@ -24741,6 +27113,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marcelwolf.coach", true },
{ "marcgoertz.de", true },
{ "marche-contre-monsanto.ch", true },
+ { "marcheslep.org.uk", true },
{ "marchhappy.tech", false },
{ "marchukov.com", true },
{ "marciaimportados.com.br", true },
@@ -24749,26 +27122,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marco-goltz.de", true },
{ "marco-hegenberg.net", true },
{ "marco-polo-reisen.com", true },
+ { "marcobicca.com", true },
{ "marcocasoni.com", true },
{ "marcoherten.com", true },
- { "marcoklomp.nl", false },
+ { "marcoklomp.nl", true },
{ "marcoslater.com", true },
+ { "marcotics.nl", true },
{ "marcusds.ca", true },
{ "marcuskoh.com", true },
{ "marcusstafford.com", true },
+ { "mareamoda.com", true },
{ "marechal-company.com", true },
{ "marek.pro", true },
{ "marek.su", true },
{ "marelijah.org", true },
{ "margagriesser.de", true },
+ { "margatroid.com", true },
+ { "margaux-perrin.com", true },
{ "margays.de", true },
{ "margecommunication.com", true },
{ "margo-co.ch", true },
{ "margotlondon.co.uk", true },
- { "margots.biz", true },
- { "margots.life", true },
- { "margots.tech", true },
{ "marguerite-maison.fr", true },
+ { "mariafernanda.com.br", true },
{ "mariaheidemann.nl", true },
{ "marianatherapy.com", true },
{ "marianelaisashi.com", true },
@@ -24776,8 +27152,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mariannenan.nl", true },
{ "mariannethijssen.nl", true },
{ "mariapietropola.com", true },
+ { "mariasbonitas.com", true },
{ "mariatash.com", true },
+ { "maridonlaw.com", true },
{ "marie-elisabeth.dk", false },
+ { "marie-pettenbeck-schule.de", true },
{ "mariehane.com", true },
{ "mariemiramont.fr", true },
{ "mariereichl.cz", true },
@@ -24788,16 +27167,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marilynmartin.com.au", true },
{ "marilynstreats.com", true },
{ "marin-business-center.ch", true },
- { "marin-dom.ru", true },
+ { "marin-dom.ru", false },
{ "marin-tullet.com", true },
+ { "marinat2012.de", true },
{ "marinazarza.es", true },
{ "marinbusinesscenter.ch", true },
{ "marine.gov", true },
{ "marinekaplama.com", true },
{ "marinela.com.mx", false },
{ "marinelausa.com", false },
+ { "marinershousecalstock.com", true },
{ "marines-shop.com", true },
- { "mario.party", false },
+ { "marioabela.com", true },
{ "mariogeckler.de", false },
{ "mariposah.ch", true },
{ "marisamorby.com", false },
@@ -24807,6 +27188,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mariviolin.com", true },
{ "marjeta-gurtner.ch", true },
{ "marjoleindens.be", true },
+ { "marjorie-wiki.de", true },
{ "marjoriecarvalho.com.br", true },
{ "mark-dietzer.de", true },
{ "mark-semmler.de", true },
@@ -24818,7 +27200,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "markdain.net", true },
{ "markdescande.com", true },
{ "markel.com.es", true },
- { "markepps.com", true },
+ { "market-vanna.ru", true },
{ "market.android.com", true },
{ "marketespace.fr", false },
{ "marketindex.com.au", true },
@@ -24829,19 +27211,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marketingbrandingnews.net", true },
{ "marketingco.nl", true },
{ "marketingconverts.com", true },
- { "marketingeinnovacion.com", true },
{ "marketingforfood.com", true },
{ "marketinggenerators.nl", false },
{ "marketingtrendnews.com", true },
{ "marketingvirtuales.com", true },
- { "marketizare.ro", true },
{ "marketnsight.com", true },
{ "markfordelegate.com", true },
{ "markhaehnel.de", true },
- { "markhenrick.site", true },
- { "markhoodphoto.com", true },
+ { "markhoodphoto.com", false },
{ "markhoodwrites.com", true },
{ "markido.com", true },
+ { "markiewicz.online", true },
{ "markitzeroday.com", true },
{ "markkirkforillinois.com", true },
{ "markkirkforsenate.com", true },
@@ -24853,16 +27233,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "markridgwell.co.uk", true },
{ "markridgwell.com", true },
{ "markridgwellcom.appspot.com", true },
- { "markrobin.de", true },
{ "markscastles.co.uk", true },
+ { "markshroyer.com", true },
{ "marksm.it", true },
- { "marksmanhomes.com", true },
{ "marksmit.co", true },
- { "marksouthall.com", true },
{ "markspres.org", true },
{ "markstickley.co.uk", true },
{ "markt-heiligenstadt.de", false },
{ "marktcontact.com", true },
+ { "marktguru.at", true },
+ { "marktguru.de", true },
{ "marktissink.nl", true },
{ "markup-ua.com", true },
{ "markus-blog.de", true },
@@ -24870,21 +27250,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "markus-keppeler.de", true },
{ "markus-musiker.de", true },
{ "markus-ullmann.de", true },
- { "markus.design", true },
{ "markusehrlicher.de", true },
{ "markuskeppeler.de", true },
{ "markuskeppeler.no-ip.biz", true },
+ { "markvanacker.be", true },
{ "marl.fr", true },
{ "marloncommunications.com", true },
{ "marlonlosurdopictures.com", true },
{ "marlosoft.net", true },
{ "marmista.roma.it", true },
{ "marmolesromero.com", true },
- { "marmolrain.cl", true },
{ "marmotte.love", true },
- { "maroc-bivouac.com", true },
{ "marocemploi.co", true },
{ "maroismasso.com", true },
+ { "marolu.one", true },
{ "marpa-wohnen.de", true },
{ "marqueswines.co.uk", true },
{ "marrai.de", true },
@@ -24898,7 +27277,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marshallwilson.com", true },
{ "marshmallow.co", true },
{ "marshmallow.com", true },
- { "marshyplay.live", true },
{ "marsikelektro.cz", true },
{ "martasibaja.com", true },
{ "martel-innovate.com", true },
@@ -24911,29 +27289,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "martian.tk", true },
{ "martide.com", true },
{ "martijn.site", true },
- { "martijnhielema.nl", true },
{ "martijnvanderzande.nl", true },
{ "martin-loewer.de", true },
- { "martin-smith.info", true },
+ { "martin-weil.de", true },
{ "martin.vet", true },
+ { "martinbaileyphotography.com", true },
{ "martindimitrov.cz", true },
{ "martine.nu", true },
{ "martineweitweg.de", true },
{ "martinfranc.eu", true },
+ { "martinhaunschmid.com", true },
{ "martinkus.eu", true },
{ "martinmuc.de", true },
{ "martinreed.net", true },
- { "martins.im", true },
{ "martinvillalba.com", true },
{ "martinvillalba.com.ar", true },
{ "martinvillalba.info", true },
{ "martinvillalba.net", true },
{ "martinvillalba.org", true },
{ "martonmihaly.hu", true },
- { "maru-life.com", true },
{ "maruhoi.com", true },
- { "marustat.ru", true },
+ { "marvell.cat", true },
{ "marvelmoviemarathon.com", true },
+ { "marvelousdesigners.com", true },
+ { "marxists.org", true },
{ "marxmyths.org", true },
{ "marycliffpress.com", true },
{ "maryeclark.com", true },
@@ -24946,12 +27325,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
{ "mashandco.it", true },
{ "mashandco.tv", true },
+ { "mashcape.com", true },
{ "masiniunelte.store.ro", true },
{ "maskim.fr", true },
{ "maslin.io", true },
@@ -24959,24 +27339,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "massaboutique.com", true },
{ "massage-colleges.com", true },
{ "massage-vitalite.fr", true },
+ { "massage-well.ch", true },
{ "massage4u.net", true },
+ { "massagecoolangatta.com.au", true },
{ "massagecupping.com", true },
- { "massageishealthy.com", true },
{ "massagetainha-hanoi.com", true },
- { "massar.family", true },
+ { "massconsultores.com", true },
{ "massdrop.com", true },
{ "masse.org", true },
{ "massflix.com", true },
{ "massfone.com", true },
{ "masshiro.blog", true },
- { "massive.tk", true },
{ "massoni.pl", true },
{ "massotherapeutique.com", true },
- { "massvow.com", true },
{ "masta.ch", true },
- { "mastafu.info", true },
{ "mastah.fr", true },
- { "mastd.me", false },
{ "mastellone.us", true },
{ "mastepinnelaand.nl", true },
{ "master-net.org", true },
@@ -24991,20 +27368,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "masterplc.com", true },
{ "masters.black", true },
{ "mastersadistancia.com", true },
+ { "mastersthesiswriting.com", true },
{ "masterstuff.de", true },
{ "mastodon.at", true },
{ "mastodon.host", true },
- { "mastodon.rocks", true },
{ "mastodon.top", true },
{ "mat.tt", true },
{ "matanz.de", true },
{ "matatabimix.com", true },
{ "matatall.com", true },
- { "matbad.de", true },
{ "match.audio", true },
{ "matcha-iga.jp", true },
{ "matchatea24.com", true },
{ "matchboxdesigngroup.com", true },
+ { "matchmadeinstubton.com", true },
{ "matdogs.com", true },
{ "mateiko.by", true },
{ "matejgroma.com", true },
@@ -25017,14 +27394,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "materialism.com", true },
{ "materialyinzynierskie.pl", true },
{ "maternalsafety.org", true },
- { "maternum.com", true },
- { "mateuszchyla.pl", true },
+ { "matex-tokyo.co.jp", true },
{ "math-coaching.com", true },
{ "math-colleges.com", true },
{ "math.hamburg", true },
{ "mathalexservice.info", true },
{ "mathematik.rocks", false },
{ "matheo-schefczyk.de", true },
+ { "mathes.berlin", true },
{ "mathfinder.org", true },
{ "mathhire.org", true },
{ "mathiasbynens.be", true },
@@ -25035,9 +27412,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mathis.com.tr", true },
{ "maths.network", true },
{ "mathspace.co", true },
- { "mathys.io", true },
{ "matijakolaric.com", true },
{ "matildajaneclothing.com", true },
+ { "matipl.pl", true },
{ "matjaz.it", true },
{ "matlss.com", true },
{ "matocmedia.com", true },
@@ -25054,29 +27431,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "matrixmedia.ro", true },
{ "matrixreq.com", true },
{ "matsu-semi.com", true },
- { "matsu-walk.com", true },
{ "matt-brooks.com", true },
{ "matt-royal.com.cy", true },
{ "matt-royal.gr", true },
+ { "matt.gd", true },
{ "matt.re", true },
{ "mattandyana.com", true },
{ "mattari-app.com", true },
{ "mattatoio.eu", true },
- { "mattbagley.me", true },
{ "mattbsg.xyz", true },
{ "mattcarr.net", false },
{ "mattcoles.io", true },
{ "mattconstruction.com", true },
{ "mattcorp.com", true },
- { "mattdbarton.com", true },
{ "matteobrenci.com", true },
{ "matteomarescotti.it", true },
+ { "mattersource.com", true },
{ "mattessons.co.uk", true },
{ "mattferderer.com", true },
{ "mattfin.ch", true },
{ "mattforster.ca", true },
{ "matthecat.com", true },
- { "matthewchapman.co.uk", false },
+ { "matthew-cash.com", true },
{ "matthewfells.com", true },
{ "matthewgallagher.co.uk", true },
{ "matthewgrow.com", true },
@@ -25084,6 +27460,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "matthewkenny.co.uk", true },
{ "matthewljiang.com", true },
{ "matthewohare.com", true },
+ { "matthewsaeger.com", true },
{ "matthewsetter.com", true },
{ "matthey.nl", true },
{ "matthi.coffee", true },
@@ -25111,9 +27488,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mauerwerkstag.info", true },
{ "mauiticketsforless.com", true },
{ "mauldincookfence.com", true },
+ { "mauracher.cc", true },
{ "mauran.me", true },
- { "maurice-walker.com", false },
+ { "maureencsmith.ca", true },
{ "mauricedb.nl", true },
+ { "mauricioquadradoconsultor.com.br", true },
+ { "mauricioquadradocontador.com.br", true },
+ { "mauricioquadradofotografia.com.br", true },
{ "maurovacca.com", true },
{ "maury-moteurs.com", true },
{ "mavenclinic.com", true },
@@ -25136,13 +27517,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maxbruckner.de", true },
{ "maxbruckner.org", true },
{ "maxchan.info", true },
+ { "maxedgymequipment.com", true },
{ "maxh.me.uk", true },
- { "maxhamon.ovh", true },
{ "maximdeboiserie.be", true },
{ "maximdens.be", true },
{ "maximeferon.fr", true },
{ "maximilian-graf.de", true },
{ "maximilian-greger.com", true },
+ { "maximilian-staedtler.de", true },
{ "maximiliankaul.de", true },
{ "maximiliankrieg.de", true },
{ "maxims-travel.com", true },
@@ -25158,17 +27540,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maxmoda.eu", 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 },
{ "mayaimplant.com", true },
{ "mayavi.co.in", true },
- { "mayerbrownllz.com", true },
+ { "mayhutmuibep.com", true },
{ "mayomarquees.com", true },
{ "mayopartyhire.com", true },
{ "mayorcahill.com", true },
@@ -25181,10 +27562,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maze.design", false },
{ "maze.fr", true },
{ "mazenjobs.com", true },
+ { "mazepa.ml", true },
+ { "mazi.io", true },
{ "mazurlabs.tk", true },
{ "mazzotta.me", true },
{ "mb-is.info", true },
{ "mb-server.de", true },
+ { "mb300sd.com", true },
+ { "mb300sd.net", true },
{ "mbaasy.com", true },
{ "mbaestlein.de", true },
{ "mbainflatables.co.uk", true },
@@ -25194,28 +27579,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mbcars.be", true },
{ "mbda.gov", false },
{ "mbeo.ch", true },
- { "mbilker.us", true },
{ "mbinf.de", false },
- { "mbits.solutions", true },
{ "mbk.net.pl", true },
{ "mblankhorst.nl", true },
{ "mble.mg", true },
- { "mbmcatering.com", true },
- { "mbp.banking.co.at", false },
{ "mbr-net.de", true },
{ "mbrooks.info", true },
{ "mbs-journey.com", true },
{ "mbsec.net", true },
{ "mbsr-barmstedt.de", true },
{ "mburaks.com", true },
- { "mburns.duckdns.org", true },
- { "mbweir.com", true },
{ "mbwis.net", true },
{ "mc-jobs.net", true },
{ "mc-ruempel-firmen-und-haushaltsaufloesungen.de", true },
{ "mc-venture.net", false },
- { "mc4free.cc", true },
+ { "mc-web.se", true },
+ { "mc81.com", true },
{ "mcatnnlo.org", true },
+ { "mcblain.ca", true },
+ { "mcblain.com", true },
{ "mcconciergerie.com", true },
{ "mccoolesredlioninn.com", true },
{ "mccordsvillelocksmith.com", true },
@@ -25236,15 +27618,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mcfipvt.com", true },
{ "mcfx.us", true },
{ "mcgaccountancy.co.uk", true },
- { "mcgarderen.nl", true },
{ "mcgovernance.com", true },
{ "mchel.net", true },
+ { "mchopkins.net", true },
+ { "mchost.no", true },
{ "mchristopher.com", true },
- { "mchuiji.com", true },
{ "mcinterface.de", true },
- { "mcit.gov.ws", true },
{ "mcivor.me", true },
- { "mckernan.in", true },
+ { "mcjackk77.me", true },
+ { "mckendry.com", true },
+ { "mckendry.consulting", true },
+ { "mckernan.in", false },
{ "mckinley.school", true },
{ "mcl.de", false },
{ "mcl.gg", true },
@@ -25257,39 +27641,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mcnext.net", true },
{ "mcon.se", true },
{ "mcpaoffice.com", true },
- { "mcpart.land", true },
+ { "mcpebox.com", true },
{ "mcplayman.de", true },
- { "mcpro.games", true },
- { "mcprocdn.com", true },
{ "mcrn.jp", true },
{ "mcsinflatables.co.uk", true },
{ "mcsports.es", true },
{ "mcsrvstat.us", true },
+ { "mctitan.net", true },
{ "mctools.org", true },
{ "mcuexchange.com", true },
{ "mcuuid.net", true },
{ "mcversions.net", true },
{ "mcynews.com", true },
{ "mcyukon.com", true },
+ { "mczo.net", true },
{ "md-clinica.com.ua", true },
{ "md5file.com", true },
{ "md5hashing.net", true },
- { "mdcloudps.com", true },
{ "mdek.at", true },
{ "mdewendt.de", true },
{ "mdf-bis.com", true },
- { "mdg-online.de", true },
+ { "mdi-wolfsburg.de", true },
{ "mdiv.pl", true },
{ "mdkr.nl", true },
{ "mdlayher.com", true },
{ "mdma.net", true },
{ "mdmed.clinic", true },
- { "mdoering.de", true },
{ "mdosch.de", true },
{ "mdpraha.cz", true },
+ { "mdrsp.de", true },
{ "mdrthmcs.io", true },
{ "mds-paris.com", true },
{ "mdsave.com", true },
+ { "mdtorelli.it", true },
{ "mdx.no", true },
{ "mdxdave.de", true },
{ "mdxn.org", true },
@@ -25308,13 +27692,321 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "measureyourpenis.today", true },
{ "meat.org.uk", true },
{ "mebaneattorney.com", true },
- { "mebanesteakhouse.com", true },
+ { "mec010.com", true },
+ { "mec020.com", true },
+ { "mec021.com", true },
+ { "mec022.com", true },
+ { "mec023.com", true },
+ { "mec024.com", true },
+ { "mec025.com", true },
+ { "mec027.com", true },
+ { "mec028.com", true },
+ { "mec029.com", true },
+ { "mec0310.com", true },
+ { "mec0311.com", true },
+ { "mec0312.com", true },
+ { "mec0313.com", true },
+ { "mec0314.com", true },
+ { "mec0315.com", true },
+ { "mec0316.com", true },
+ { "mec0317.com", true },
+ { "mec0318.com", true },
+ { "mec0319.com", true },
+ { "mec0335.com", true },
+ { "mec0350.com", true },
+ { "mec0351.com", true },
+ { "mec0352.com", true },
+ { "mec0353.com", true },
+ { "mec0354.com", true },
+ { "mec0355.com", true },
+ { "mec0356.com", true },
+ { "mec0357.com", true },
+ { "mec0358.com", true },
+ { "mec0359.com", true },
+ { "mec0370.com", true },
+ { "mec0371.com", true },
+ { "mec0372.com", true },
+ { "mec0373.com", true },
+ { "mec0374.com", true },
+ { "mec0375.com", true },
+ { "mec0376.com", true },
+ { "mec0377.com", true },
+ { "mec0378.com", true },
+ { "mec0379.com", true },
+ { "mec0391.com", true },
+ { "mec0392.com", true },
+ { "mec0393.com", true },
+ { "mec0394.com", true },
+ { "mec0395.com", true },
+ { "mec0396.com", true },
+ { "mec0398.com", true },
+ { "mec0410.com", true },
+ { "mec0411.com", true },
+ { "mec0412.com", true },
+ { "mec0413.com", true },
+ { "mec0414.com", true },
+ { "mec0415.com", true },
+ { "mec0416.com", true },
+ { "mec0419.com", true },
+ { "mec0421.com", true },
+ { "mec0429.com", true },
+ { "mec0431.com", true },
+ { "mec0432.com", true },
+ { "mec0433.com", true },
+ { "mec0434.com", true },
+ { "mec0435.com", true },
+ { "mec0436.com", true },
+ { "mec0437.com", true },
+ { "mec0438.com", true },
+ { "mec0439.com", true },
+ { "mec0440.com", true },
+ { "mec0450.com", true },
+ { "mec0451.com", true },
+ { "mec0452.com", true },
+ { "mec0453.com", true },
+ { "mec0454.com", true },
+ { "mec0455.com", true },
+ { "mec0456.com", true },
+ { "mec0457.com", true },
+ { "mec0458.com", true },
+ { "mec0459.com", true },
+ { "mec0470.com", true },
+ { "mec0471.com", true },
+ { "mec0472.com", true },
+ { "mec0473.com", true },
+ { "mec0474.com", true },
+ { "mec0475.com", true },
+ { "mec0476.com", true },
+ { "mec0477.com", true },
+ { "mec0478.com", true },
+ { "mec0479.com", true },
+ { "mec0482.com", true },
+ { "mec0483.com", true },
+ { "mec0510.com", true },
+ { "mec0511.com", true },
+ { "mec0512.com", true },
+ { "mec0513.com", true },
+ { "mec0514.com", true },
+ { "mec0515.com", true },
+ { "mec0516.com", true },
+ { "mec0517.com", true },
+ { "mec0518.com", true },
+ { "mec0519.com", true },
+ { "mec0523.com", true },
+ { "mec0530.com", true },
+ { "mec0531.com", true },
+ { "mec0532.com", true },
+ { "mec0533.com", true },
+ { "mec0534.com", true },
+ { "mec0535.com", true },
+ { "mec0536.com", true },
+ { "mec0537.com", true },
+ { "mec0538.com", true },
+ { "mec0539.com", true },
+ { "mec0550.com", true },
+ { "mec0551.com", true },
+ { "mec0552.com", true },
+ { "mec0553.com", true },
+ { "mec0554.com", true },
+ { "mec0555.com", true },
+ { "mec0556.com", true },
+ { "mec0557.com", true },
+ { "mec0558.com", true },
+ { "mec0559.com", true },
+ { "mec0561.com", true },
+ { "mec0562.com", true },
+ { "mec0563.com", true },
+ { "mec0564.com", true },
+ { "mec0565.com", true },
+ { "mec0566.com", true },
+ { "mec0570.com", true },
+ { "mec0571.com", true },
+ { "mec0572.com", true },
+ { "mec0573.com", true },
+ { "mec0574.com", true },
+ { "mec0575.com", true },
+ { "mec0576.com", true },
+ { "mec0577.com", true },
+ { "mec0578.com", true },
+ { "mec0579.com", true },
+ { "mec0580.com", true },
+ { "mec0591.com", true },
+ { "mec0592.com", true },
+ { "mec0593.com", true },
+ { "mec0594.com", true },
+ { "mec0595.com", true },
+ { "mec0596.com", true },
+ { "mec0597.com", true },
+ { "mec0598.com", true },
+ { "mec0599.com", true },
+ { "mec0660.com", true },
+ { "mec0661.com", true },
+ { "mec0662.com", true },
+ { "mec0663.com", true },
+ { "mec0691.com", true },
+ { "mec0692.com", true },
+ { "mec0701.com", true },
+ { "mec0710.com", true },
+ { "mec0711.com", true },
+ { "mec0712.com", true },
+ { "mec0713.com", true },
+ { "mec0714.com", true },
+ { "mec0715.com", true },
+ { "mec0716.com", true },
+ { "mec0717.com", true },
+ { "mec0718.com", true },
+ { "mec0719.com", true },
+ { "mec0722.com", true },
+ { "mec0724.com", true },
+ { "mec0728.com", true },
+ { "mec0730.com", true },
+ { "mec0731.com", true },
+ { "mec0732.com", true },
+ { "mec0733.com", true },
+ { "mec0734.com", true },
+ { "mec0735.com", true },
+ { "mec0736.com", true },
+ { "mec0737.com", true },
+ { "mec0738.com", true },
+ { "mec0739.com", true },
+ { "mec0743.com", true },
+ { "mec0744.com", true },
+ { "mec0745.com", true },
+ { "mec0746.com", true },
+ { "mec0751.com", true },
+ { "mec0752.com", true },
+ { "mec0753.com", true },
+ { "mec0754.com", true },
+ { "mec0755.com", true },
+ { "mec0756.com", true },
+ { "mec0757.com", true },
+ { "mec0758.com", true },
+ { "mec0759.com", true },
+ { "mec0760.com", true },
+ { "mec0762.com", true },
+ { "mec0763.com", true },
+ { "mec0765.com", true },
+ { "mec0766.com", true },
+ { "mec0768.com", true },
+ { "mec0769.com", true },
+ { "mec0770.com", true },
+ { "mec0771.com", true },
+ { "mec0772.com", true },
+ { "mec0773.com", true },
+ { "mec0774.com", true },
+ { "mec0775.com", true },
+ { "mec0776.com", true },
+ { "mec0777.com", true },
+ { "mec0778.com", true },
+ { "mec0779.com", true },
+ { "mec0790.com", true },
+ { "mec0791.com", true },
+ { "mec0792.com", true },
+ { "mec0793.com", true },
+ { "mec0794.com", true },
+ { "mec0795.com", true },
+ { "mec0796.com", true },
+ { "mec0797.com", true },
+ { "mec0798.com", true },
+ { "mec0799.com", true },
+ { "mec0810.com", true },
+ { "mec0811.com", true },
+ { "mec0812.com", true },
+ { "mec0813.com", true },
+ { "mec0814.com", true },
+ { "mec0816.com", true },
+ { "mec0817.com", true },
+ { "mec0818.com", true },
+ { "mec0819.com", true },
+ { "mec0826.com", true },
+ { "mec0827.com", true },
+ { "mec0830.com", true },
+ { "mec0831.com", true },
+ { "mec0832.com", true },
+ { "mec0833.com", true },
+ { "mec0834.com", true },
+ { "mec0835.com", true },
+ { "mec0836.com", true },
+ { "mec0837.com", true },
+ { "mec0838.com", true },
+ { "mec0839.com", true },
+ { "mec0840.com", true },
+ { "mec0851.com", true },
+ { "mec0852.com", true },
+ { "mec0853.com", true },
+ { "mec0854.com", true },
+ { "mec0855.com", true },
+ { "mec0856.com", true },
+ { "mec0857.com", true },
+ { "mec0858.com", true },
+ { "mec0859.com", true },
+ { "mec0870.com", true },
+ { "mec0871.com", true },
+ { "mec0872.com", true },
+ { "mec0873.com", true },
+ { "mec0874.com", true },
+ { "mec0875.com", true },
+ { "mec0876.com", true },
+ { "mec0877.com", true },
+ { "mec0878.com", true },
+ { "mec0879.com", true },
+ { "mec0881.com", true },
+ { "mec0883.com", true },
+ { "mec0886.com", true },
+ { "mec0887.com", true },
+ { "mec0888.com", true },
+ { "mec0890.com", true },
+ { "mec0891.com", true },
+ { "mec0898.com", true },
+ { "mec0899.com", true },
+ { "mec0910.com", true },
+ { "mec0911.com", true },
+ { "mec0912.com", true },
+ { "mec0913.com", true },
+ { "mec0914.com", true },
+ { "mec0915.com", true },
+ { "mec0916.com", true },
+ { "mec0917.com", true },
+ { "mec0919.com", true },
+ { "mec0930.com", true },
+ { "mec0931.com", true },
+ { "mec0932.com", true },
+ { "mec0933.com", true },
+ { "mec0934.com", true },
+ { "mec0935.com", true },
+ { "mec0936.com", true },
+ { "mec0937.com", true },
+ { "mec0938.com", true },
+ { "mec0941.com", true },
+ { "mec0943.com", true },
+ { "mec0951.com", true },
+ { "mec0952.com", true },
+ { "mec0953.com", true },
+ { "mec0954.com", true },
+ { "mec0971.com", true },
+ { "mec0972.com", true },
+ { "mec0973.com", true },
+ { "mec0974.com", true },
+ { "mec0975.com", true },
+ { "mec0976.com", true },
+ { "mec0977.com", true },
+ { "mec0991.com", true },
+ { "mec111.com", true },
+ { "mec222.com", true },
+ { "mec333.com", true },
+ { "mec444.com", true },
+ { "mec555.com", true },
+ { "mec825.com", true },
+ { "mec888.com", true },
+ { "mec999.com", true },
{ "mecanicoautomotriz.org", true },
{ "mecaniquemondor.com", true },
+ { "meccano.srl", true },
{ "mechanics-schools.com", true },
{ "mechanus.io", true },
{ "mechaspartans6648.com", true },
{ "mechmk1.me", true },
+ { "mechok.ru", true },
{ "med-colleges.com", true },
{ "med-otzyv.ru", true },
{ "med-post.biz", true },
@@ -25333,7 +28025,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "med.tips", true },
{ "med360.at", true },
{ "medba.se", true },
+ { "medbreaker-friends.at", true },
{ "medcir.com.br", true },
+ { "medcorfu.gr", true },
{ "medcrowd.com", true },
{ "meddelare.com", true },
{ "meddigital.com", false },
@@ -25341,6 +28035,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "medeinos.lt", true },
{ "medellinapartamentos.com", true },
{ "medexpress.co.uk", true },
+ { "medguide-bg.com", true },
{ "medhy.fr", true },
{ "medi.com.br", true },
{ "media-credit.eu", true },
@@ -25356,6 +28051,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mediacloud.me", true },
{ "mediadex.be", true },
{ "mediaexpert.fr", true },
+ { "mediafart.fr", true },
{ "mediafly.com", true },
{ "mediafocus.biz", true },
{ "mediagenic.ch", true },
@@ -25364,6 +28060,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mediahaus.de", true },
{ "mediajurnal.com", true },
{ "medialab.nrw", true },
+ { "medialys.ca", true },
{ "mediamarkt.pl", true },
{ "mediapart.fr", true },
{ "mediapath.gr", true },
@@ -25385,15 +28082,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "medicare-providers.net", true },
{ "medicarecoveragefinder.com", true },
{ "medicareinfo.org", true },
+ { "medicinasaludvida.com", true },
+ { "medicine.com", true },
{ "medicinesfast.com", false },
{ "medicinia.com.br", true },
+ { "mediciventures.com", true },
{ "medicm.jp", true },
{ "medicocompetente.it", true },
{ "medicoresponde.com.br", true },
+ { "medicsz.co", true },
{ "medienweite.de", true },
{ "medifi.com", true },
{ "medigap-quote.net", true },
- { "medik8.com.cy", true },
{ "medikalakademi.com.tr", true },
{ "medikuma.com", true },
{ "medino.com", true },
@@ -25401,10 +28101,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "medinside.li", true },
{ "medinsider.ch", true },
{ "medinsider.li", true },
- { "medireport.fr", true },
{ "meditadvisors.com", true },
+ { "meditation-rennes.org", true },
+ { "meditel.nl", true },
{ "medium.com", true },
{ "medja.net", true },
+ { "medlabmediagroup.com", true },
{ "medlineplus.gov", true },
{ "medo64.com", true },
{ "medovea.ru", true },
@@ -25413,6 +28115,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "medpics.com", true },
{ "medpost.biz", true },
{ "medpost.co", true },
+ { "medpost.com", true },
{ "medpost.info", true },
{ "medpost.me", true },
{ "medpost.mobi", true },
@@ -25437,20 +28140,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "medposturgentcare.org", true },
{ "medpostwalkincare.com", true },
{ "medpostwellness.com", true },
+ { "medsblalabs.com", true },
{ "medschat.com", true },
{ "medtalents.ch", true },
{ "medtehnika.ua", true },
+ { "medtip.de", true },
{ "medusa.wtf", true },
{ "meduza.io", true },
{ "medvedikorenka.cz", true },
+ { "medvedkovo-hovrino.ru", true },
{ "medvet.com.es", true },
+ { "medvezhii-ozera.ru", true },
{ "medwaybouncycastlehire.co.uk", true },
{ "medyotan.ga", true },
+ { "medzinenews.com", false },
{ "meeco.kr", true },
{ "meedoenhartvanwestbrabant.nl", true },
- { "meedoennoordkop.nl", false },
{ "meehle.com", true },
- { "meeko.cc", true },
+ { "meeplegamers.com", true },
{ "meereskunst.de", true },
{ "meerman.nl", true },
{ "meermantechnischburo.nl", true },
@@ -25470,10 +28177,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "meeztertom.nl", true },
{ "meg-a-bounce.co.uk", true },
{ "mega-byte.nl", true },
- { "mega-feeling.de", true },
{ "mega.co.nz", true },
{ "mega.nz", true },
- { "megablogging.org", true },
{ "megabounce.co.uk", true },
{ "megabounceni.co.uk", true },
{ "megabouncingcastles.com", true },
@@ -25489,9 +28194,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "megaplan.cz", true },
{ "megaplan.ru", true },
{ "megarex.jp", true },
- { "megasslstore.com", true },
{ "megauction.tk", true },
+ { "megawarez.org", true },
{ "megaxchange.com", true },
+ { "megaxchange.org", true },
{ "meggidesign.com", true },
{ "mego.cloud", true },
{ "megumico.net", true },
@@ -25499,17 +28205,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "meh.is", true },
{ "mehalick.com", true },
{ "mehhh.xyz", true },
- { "mehmetakif.edu.tr", true },
+ { "mehmetdursun.av.tr", true },
{ "mehmetince.net", true },
{ "mehostdd.com", false },
{ "mehr-schulferien.de", true },
{ "mehrleben.at", true },
+ { "mehrnevesht.com", true },
{ "mehrwert.de", true },
{ "meia.ir", true },
+ { "meidev.co", true },
{ "meierhofer.net", true },
{ "meikan.moe", true },
{ "meillard-auto-ecole.ch", true },
{ "meilleur.info", true },
+ { "meilleurstrucs.com", true },
+ { "mein-gehalt.at", true },
{ "mein-kuechenhelfer.de", true },
{ "mein-muehlhausen.bayern", true },
{ "mein-webportal.de", true },
@@ -25520,9 +28230,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "meine-email-im.net", true },
{ "meine-finanzanalyse.de", true },
{ "meine-immofinanzierung.de", true },
+ { "meineit.dvag", true },
+ { "meinewolke.pw", true },
{ "meinezwangsversteigerung.de", true },
- { "meinstartinsleben.com", true },
- { "meinstartinsleben.de", true },
+ { "meinheizstrom.de", true },
{ "meintragebaby.de", true },
{ "meinv.asia", true },
{ "meiodomato.com.br", true },
@@ -25532,33 +28243,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "meistertask.com", true },
{ "meitan.gz.cn", true },
{ "meizitang.es", true },
- { "mekatro.tech", true },
- { "mekatrotekno.com", true },
{ "mekesh.com", true },
{ "mekesh.net", true },
{ "mekesh.ru", true },
{ "meklon.net", true },
{ "mekongeye.com", true },
- { "mekongmontessori.com", true },
+ { "melanfengshui.com", true },
{ "melaniebernhardt.com", true },
{ "melaniegruber.de", true },
{ "melbourne.dating", true },
- { "melbourneapartments.website", true },
+ { "melcher.it", true },
{ "melchizedek-forum.de", true },
{ "meldcode-assistent.nl", true },
{ "melearning.university", false },
{ "melerpaine.com", true },
{ "melhoresdominios.com", true },
{ "melhoresmarcasdenotebook.com.br", true },
+ { "melikoff.es", true },
{ "melillaorienta.es", true },
{ "melina-schefczyk.de", true },
{ "melissaadkins.com", true },
- { "melissaauclaire.com", true },
{ "melissameuwszen.nl", true },
- { "mellitus.org", true },
{ "melnessgroup.com", true },
{ "melnikov.ch", true },
- { "melodicprogressivehouse.com", true },
{ "melodict.com", true },
{ "melodiouscode.co.uk", true },
{ "melodiouscode.com", true },
@@ -25566,7 +28273,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "melodiouscode.uk", true },
{ "melodrom.de", true },
{ "melopie.com", true },
- { "melted.me", true },
+ { "melosyne.com", true },
+ { "melosyne.de", true },
+ { "melosyne.net", true },
+ { "melosyne.org", true },
{ "meltzow.net", true },
{ "members-arbourlake.com", true },
{ "members-only-shopping.com", true },
@@ -25576,11 +28286,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "meme.fi", true },
{ "meme.institute", true },
{ "memememememememe.me", true },
- { "memepasmal.net", true },
{ "memes.nz", true },
{ "memesbee.com", true },
{ "memfrob.org", true },
{ "memiux.com", true },
+ { "memmertusa.com", true },
{ "memo-linux.com", true },
{ "memo.ee", true },
{ "memo2ch.com", true },
@@ -25593,10 +28303,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mendipbouncycastles.co.uk", true },
{ "mendozagenevieve.com", true },
{ "mendy.jp", true },
- { "menhadendefenders.org", true },
+ { "mengxin.life", true },
{ "menielias.com", true },
{ "menkyo-blog.com", true },
{ "mennace.com", true },
+ { "menno.me", true },
{ "menole.com", true },
{ "menole.de", true },
{ "menole.net", true },
@@ -25606,22 +28317,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mensagensdeconforto.com.br", true },
{ "mensarena.gr", true },
{ "mensch-peter.me", true },
+ { "menshealthinsurance.com", true },
{ "mentalhealthmn.org", true },
{ "mentaltraining-fuer-musiker.ch", true },
{ "mentecuriosa.net", true },
{ "mentiq.az", true },
- { "mentorithm.com", true },
- { "mentz.info", true },
{ "menudieta.com", true },
- { "menuel.me", true },
{ "menuonlineordering.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 },
+ { "mercadeolocal.com.ar", true },
{ "mercadoleal.com.br", true },
{ "mercadopago.com", true },
{ "mercamaris.es", true },
@@ -25638,26 +28349,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mercuryamericas.com", false },
{ "meremeti-online.gr", true },
{ "meremobil.dk", true },
- { "merenbach.com", false },
+ { "merenbach.com", true },
{ "merenita.com", true },
{ "merenita.eu", true },
{ "merenita.net", true },
{ "merenita.nl", true },
{ "meric-graphisme.info", true },
+ { "meridianenvironmental.com", true },
{ "meridianfresno.com", true },
{ "meridianmetals.com", true },
+ { "meridianoshop.com.br", true },
{ "merkel.me", true },
{ "merlet.eu", true },
{ "merlinsoap.com", true },
+ { "merloaded.rocks", true },
{ "merojob.com", true },
{ "meronberry.jp", true },
+ { "merpay.com", true },
+ { "mers.one", true },
+ { "merson.org", true },
{ "merson.tv", true },
{ "mertarauh.com", true },
{ "mertcangokgoz.com", true },
{ "meruri.com", true },
+ { "merzai.co.uk", true },
{ "mes-bouquins.fr", true },
{ "mes-finances.be", true },
{ "mes10doigts.ovh", true },
+ { "mesami-art.de", true },
{ "mesappros.com", true },
{ "mescaline.com", true },
{ "mescaline.org", true },
@@ -25666,25 +28385,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "meshok.info", true },
{ "mesicka.com", true },
{ "mesomeds.com", true },
+ { "messagescelestes-archives.ca", true },
{ "messagevortex.com", true },
{ "messagevortex.net", true },
{ "messdorferfeld.de", true },
- { "messenger.co.tz", true },
- { "messenger.com", true },
+ { "messenger.com", false },
{ "messengerwebbrands.com", true },
{ "messer24.ch", true },
{ "messymom.com", true },
{ "mestazitrka.cz", true },
- { "mestr.es", true },
{ "mesvt.com", true },
{ "meta-db.com", true },
{ "meta-word.com", true },
- { "meta.sc", true },
+ { "meta4.be", true },
{ "metachris.com", true },
{ "metacoda.com", true },
{ "metacode.biz", true },
+ { "metadata.be", true },
{ "metaether.net", true },
{ "metafurquest.net", true },
+ { "metaglyphics.com", true },
+ { "metainnovative.net", true },
{ "metallomania.it", true },
{ "metallosajding.ru", true },
{ "metalu.ch", true },
@@ -25693,6 +28414,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "metapeen.nl", true },
{ "metasquare.com.au", true },
{ "metasquare.nyc", true },
+ { "metasyntactic.xyz", true },
{ "metasysteminfo.com", true },
{ "metaurl.io", true },
{ "metaword.com", true },
@@ -25724,34 +28446,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "metro-lawn-care.com", true },
{ "metro-web.net", true },
{ "metroairvirtual.com", true },
+ { "metrobriefs.com", true },
{ "metrodetroitmommy.com", true },
{ "metrolush.com", true },
{ "metron-eging.com", true },
{ "metron-networks.com", true },
{ "metron-online.com", true },
{ "metronaut.de", true },
+ { "metronews.co.nz", true },
+ { "metropolisil.gov", true },
{ "metropop.ch", true },
+ { "metsasta.com", true },
{ "mettekopp.dk", true },
- { "meu-solutions.com", true },
{ "meubanco7.com.br", true },
- { "meuble-house.fr", true },
{ "meujeitodigital.com.br", false },
{ "meupainel.me", true },
{ "meurisse.org", true },
- { "mevanshop.com", true },
+ { "mevanshop.com", false },
{ "mevo.xyz", true },
{ "mevs.cz", true },
{ "mexican.dating", true },
{ "mexicanjokes.net", true },
{ "mexico.sh", true },
- { "mexicodental.co", true },
{ "mexicom.org", true },
{ "meyash.co", true },
+ { "mezzehuis.be", true },
{ "mf-fischer.de", true },
{ "mfen.de", true },
{ "mfits.co.uk", true },
{ "mflodin.se", true },
{ "mfxbe.de", true },
+ { "mgdigitalmarketing.com.au", true },
+ { "mghw.ch", true },
{ "mgi.gov", true },
{ "mgiljum.com", true },
{ "mglink.be", true },
@@ -25759,6 +28485,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mgrt.net", true },
{ "mgsisk.com", true },
{ "mgtbaas.eu", true },
+ { "mgvideo.com.au", true },
{ "mhadot.com", true },
{ "mhalfter.de", true },
{ "mhand.org", true },
@@ -25766,30 +28493,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mhatlaw.com", true },
{ "mheistermann.de", true },
{ "mhermans.nl", true },
+ { "mhf.gc.ca", true },
{ "mhi.web.id", true },
{ "mhjuma.com", true },
+ { "mhtdesign.net", true },
+ { "mhurologytriad.org", true },
{ "mi-beratung.de", true },
{ "mi-so-ji.com", true },
{ "mi80.com", true },
{ "mi92.ru", true },
+ { "mia.ac", true },
{ "miadennees.com", true },
{ "miagexport.com", true },
+ { "miah.top", true },
{ "mialquilerdecoches.com", true },
{ "miamaibaum.com", true },
+ { "miaololi.com", true },
+ { "miaomiao.eu.org", true },
+ { "miaomiaomiao.live", true },
{ "miaonagemi.com", true },
- { "miaoubox.com", true },
{ "miaowo.org", true },
- { "miasarafina.de", true },
{ "miavierra.org", true },
{ "mibh.de", true },
{ "mibuiin.com", true },
{ "micado-software.com", true },
{ "micalodeal.ch", true },
{ "micbase.com", true },
- { "micelius.com", true },
{ "michadenheijer.com", true },
{ "michael-schefczyk.de", true },
- { "michael-schilling.de", true },
{ "michael-steinhauer.eu", true },
{ "michael.band", true },
{ "michaelasawyer.com", true },
@@ -25797,9 +28528,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "michaelband.com", true },
{ "michaelcullen.name", true },
{ "michaelhrehor.com", true },
- { "michaeliscorp.com", true },
{ "michaelismold.com", true },
+ { "michaelizquierdo.com", true },
{ "michaeljdennis.com", true },
+ { "michaelklos.nl", true },
{ "michaelkuchta.me", true },
{ "michaell.io", true },
{ "michaell.xyz", true },
@@ -25811,7 +28543,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "michaelschmidt.ch", true },
{ "michaelschubert.com", true },
{ "michaelschule-rheine.de", true },
- { "michaelslatkine.com", true },
{ "michaelsweater.com", true },
{ "michaeltaboada.me", true },
{ "michaeltroger.com", true },
@@ -25821,7 +28552,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "michal-spacek.com", true },
{ "michal-spacek.cz", true },
{ "michaldudek.it", true },
- { "michalpodraza.pl", true },
+ { "michalklabnik.cz", true },
{ "michalspacek.com", true },
{ "michalspacek.cz", true },
{ "michalwiglasz.cz", true },
@@ -25829,6 +28560,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "michel-wein.de", true },
{ "michele.ml", true },
{ "michellavat.com", true },
+ { "michelletmc.com", true },
{ "michelskovbo.dk", true },
{ "michiganstateuniversityonline.com", true },
{ "michiganunionoptout.com", true },
@@ -25836,17 +28568,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "michmexguides.com.mx", true },
{ "michu.pl", true },
{ "mickelvaessen.com", true },
+ { "miconcinemas.com", true },
{ "micopal.com", true },
{ "micr.io", true },
{ "micr0lab.org", true },
+ { "micra.org.uk", true },
{ "microbiote-insectes-vecteurs.group", true },
{ "microco.sm", true },
{ "microcomploja.com.br", true },
{ "microdots.de", true },
{ "microfonejts.com.br", true },
- { "microlinks.org", true },
{ "microlog.org", true },
{ "micromata.de", true },
+ { "micromegas.com.ua", true },
{ "micromind.io", true },
{ "micromookie.com", true },
{ "microneedlingstudio.se", true },
@@ -25856,10 +28590,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "microzubr.com", true },
{ "micsell.com", true },
{ "midair.io", true },
+ { "midamericapiering.com", true },
+ { "midart.ro", true },
{ "midasjewellery.com.au", true },
{ "midcarolinaregionalairport.com", true },
{ "midcarolinaregionalairport.org", true },
{ "midgawash.com", true },
+ { "midi-ctes.fr", true },
+ { "midiaid.de", true },
{ "midislandrealty.com", true },
{ "midistop.org", true },
{ "midkam.ca", true },
@@ -25868,18 +28606,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "midlandroofingri.com", true },
{ "midlandsfundays.co.uk", true },
{ "midlandsphotobooths.co.uk", true },
+ { "midnight-visions.de", true },
{ "midnightmango.co.uk", true },
{ "midnightmango.de", true },
{ "midnightmechanism.com", true },
{ "midrandplumber24-7.co.za", true },
{ "midress.club", true },
{ "midstatebasement.com", true },
+ { "midt.io", true },
+ { "midterm.us", true },
{ "midtowndentistry.com", true },
+ { "midweb.ro", false },
{ "midwestbloggers.org", true },
{ "midwestplus.com", true },
{ "miegl.com", true },
{ "miegl.cz", true },
+ { "miele-katerini.gr", true },
{ "miemus.eu", true },
+ { "mierloiu.ro", true },
{ "mietwohnungen-vermietung.com", true },
{ "mieuxgrandir.ch", true },
{ "miffy.me", true },
@@ -25888,18 +28632,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mightysighty.com", true },
{ "miguel.pw", true },
{ "migueldemoura.com", true },
- { "migueldominguez.ch", true },
{ "miguelgaton.es", true },
- { "miguelmartinez.ch", true },
{ "miguelmenendez.pro", true },
{ "miguelmoura.com", true },
{ "miguia.tv", true },
- { "mihgroup.eu.org", true },
{ "mihgroup.net", true },
{ "mihnea.net", true },
{ "mijailovic.net", true },
{ "mijcorijneveld.nl", true },
{ "mijn-financien.be", true },
+ { "mijn.computer", true },
{ "mijnetz.nl", true },
{ "mijnkerstkaarten.be", true },
{ "mijnkinderkleding.com", true },
@@ -25914,17 +28656,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mikakalevi.com", true },
{ "mikalikes.men", true },
{ "mike-bland.com", true },
+ { "mike-burns.com", true },
+ { "mike-et-pascale-sanger.com", true },
{ "mike2k.de", true },
+ { "mikeandersondj.com", true },
{ "mikebelanger.ca", true },
{ "mikeblog.site", true },
{ "mikebutcher.ca", true },
+ { "mikecapson.com", true },
{ "mikecb.org", true },
+ { "mikegao.net", false },
+ { "mikegao.org", true },
{ "mikegarnett.co.uk", true },
{ "mikegerwitz.com", true },
- { "mikeguy.co.uk", true },
{ "mikehamburg.com", true },
{ "mikehilldesign.co.uk", true },
+ { "mikeklidjian.com", true },
{ "mikekreuzer.com", true },
+ { "mikemooresales.com", true },
{ "mikerichards.photography", true },
{ "miketabor.com", true },
{ "miketheuer.com", true },
@@ -25933,8 +28682,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mikewillia.ms", true },
{ "mikewrites.online", true },
{ "mikeybailey.org", true },
- { "mikhlevich.ru", true },
- { "miki-boras.de", true },
+ { "mikhirev.ru", true },
{ "miki.it", true },
{ "mikkelladegaard.dk", true },
{ "mikkelscheike.com", true },
@@ -25945,11 +28693,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mikonmaa.fi", true },
{ "mikropixel.de", true },
{ "mikroskeem.eu", true },
+ { "miku.ro", true },
{ "mikumaycry.com", true },
- { "mikupic.com", true },
- { "mikusa.xyz", true },
{ "mil-spec.ch", true },
- { "milakirschner.de", true },
+ { "milahendri.com", true },
{ "milania.de", true },
{ "milanpala.cz", false },
{ "milanstephan.de", true },
@@ -25958,11 +28705,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mileme.com", true },
{ "milenaria.es", true },
{ "milesapart.dating", true },
+ { "milfpornograph.com", true },
{ "milhoazul.com.br", true },
- { "milionshop.sk", true },
+ { "militaryonesource.mil", true },
{ "milkameglepetes.hu", true },
- { "milkandcookies.ca", true },
{ "milkingit.co.uk", true },
+ { "milkingit.net", true },
{ "milktea.info", true },
{ "milkypond.org", true },
{ "millanova.wedding", false },
@@ -25976,11 +28724,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "millettable.com", true },
{ "millhousenchurch.com", true },
{ "millionairegames.com", true },
- { "millions32.com", true },
+ { "millionen-von-sonnen.de", true },
{ "millistream.com", true },
- { "milnes.org", true },
{ "milsonhypnotherapyservices.com", true },
{ "mim.am", true },
+ { "mimavision.ddns.net", true },
{ "mimemo.io", true },
{ "mimemoriadepez.com", true },
{ "mimeo.digital", true },
@@ -25992,9 +28740,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "min-datorsupport.se", true },
{ "min-sky.no", true },
{ "minakov.pro", true },
- { "minakova.pro", true },
{ "minami.xyz", true },
{ "minamo.io", true },
+ { "minandolacorrupcion.mx", true },
+ { "minapin.com", true },
{ "minaprine.com", true },
{ "mind-box.ch", true },
{ "mind-hochschul-netzwerk.de", true },
@@ -26002,22 +28751,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mindatasupport.se", true },
{ "mindatorsupport.se", true },
{ "mindcoding.ro", true },
- { "mindercasso.nl", true },
{ "mindfactory.de", true },
{ "mindhunter.info", true },
{ "mindleaking.org", true },
{ "mindmax.fi", true },
{ "mindmeister.com", true },
+ { "mindofmedia.dk", true },
{ "mindoktor.se", false },
{ "mindorbs.com", true },
{ "mindox.com.br", true },
- { "mindsetatx.com", true },
{ "mindstretchers.co.uk", true },
{ "mine-craftlife.com", true },
{ "mine-pixl.de", true },
- { "mine260309.me", true },
+ { "mine260309.me", false },
{ "minebier.dk", true },
{ "minecraft-forum.eu", true },
+ { "minecraft-ok.ru", true },
{ "minecraft-server.eu", true },
{ "minecraftforum.de", true },
{ "minecraftforum.ovh", true },
@@ -26036,15 +28785,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
{ "mingtreerealty.com", true },
{ "mingwah.ch", true },
{ "minh.at", false },
+ { "minhyukpark.com", true },
{ "mini2.fi", true },
+ { "miniaturepets.net", true },
{ "minican.net", true },
{ "minigames.com", true },
{ "miniglueck.net", true },
@@ -26054,32 +28805,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "minikneet.com", true },
{ "minilions.fr", true },
{ "minimal-apps.de", true },
+ { "minimalistbaker.com", true },
{ "minimaltimer.com", true },
{ "minimayhemsoftplay.co.uk", true },
{ "minimbah.com.au", true },
{ "minimvc.com", true },
- { "miningtronics.com", true },
+ { "mining.diamonds", true },
+ { "miningtronics.com", false },
{ "minisoft4u.ir", true },
{ "ministeriumfuerinternet.de", true },
+ { "minitruckin.net", true },
{ "minitrucktalk.com", true },
- { "minivaro.de", true },
+ { "miniverse.social", true },
{ "minkymoon.jp", true },
- { "minnesotakinkyyouth.org", true },
+ { "minmaxgame.com", true },
{ "minnesotareadingcorps.org", true },
{ "minnit.chat", true },
- { "minobar.com", true },
{ "minorshadows.net", true },
{ "minpingvin.dk", true },
{ "minschuns.ch", true },
{ "mintclass.com", true },
- { "mintosherbs.com", true },
{ "mintrak2.com", true },
{ "mintse.com", true },
- { "minttang.cn", true },
{ "minu.link", true },
{ "minube.co.cr", true },
{ "minutashop.ru", true },
{ "minux.info", true },
+ { "mio-ip.ch", true },
{ "mionerve.com", true },
{ "mionerve.org", true },
{ "mipapo.de", true },
@@ -26090,8 +28842,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mirabalphoto.es", true },
{ "miraheze.org", true },
{ "miraidenshi.com", true },
- { "miraiex.com", true },
- { "miraste.com.br", true },
+ { "miraiex.com", false },
+ { "miramar-obgyn.com", true },
+ { "miramar.ca", true },
{ "mirazperu.com", true },
{ "mircarfinder.ru", true },
{ "mirch.com", true },
@@ -26100,29 +28853,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mirepublic.co.nz", true },
{ "mireservaonline.es", true },
{ "mirfire.com", true },
- { "mirjamderijk.nl", false },
+ { "mirjamderijk.nl", true },
{ "mirkofranz.de", true },
- { "mirodasilva.be", true },
+ { "miroctum.com", true },
{ "mironet.cz", true },
+ { "mirrordream.net", true },
{ "mirrorsedgearchive.de", true },
{ "mirshak.com", true },
{ "mirtes.cz", true },
{ "mirtouf.fr", true },
{ "misakacloud.net", true },
+ { "misakastudio.com", true },
{ "misakatang.cn", true },
{ "misakiya.co.jp", true },
{ "misanci.cz", true },
{ "mischak.net", true },
{ "misclick.nl", true },
+ { "mishkan-israel.net", true },
{ "mishkovskyi.net", true },
+ { "misini.fr", true },
{ "misinstrumentos.com", true },
{ "miskatonic.org", true },
{ "misoji-resist.com", true },
{ "misol.kr", true },
- { "misrv.com", true },
+ { "misp-project.org", true },
{ "miss-inventory.co.uk", true },
{ "miss-platinum.net", true },
{ "miss.com.tw", true },
+ { "missblisshair.com.au", true },
{ "missdream.org", true },
{ "misseguf.dk", true },
{ "missevent.pl", true },
@@ -26132,7 +28890,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "missip.nl", true },
{ "missjoias.com.br", true },
{ "misskey.jp", true },
- { "misskey.site", true },
{ "misskey.xyz", true },
{ "missoy.me", true },
{ "misssex.de", true },
@@ -26142,6 +28899,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mistaken.pl", true },
{ "mister-matthew.de", true },
{ "misterseguros.com.br", true },
+ { "mistinecn.com", true },
{ "mistreaded.com", true },
{ "mistybox.com", true },
{ "misupport.dk", true },
@@ -26151,8 +28909,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
@@ -26167,35 +28923,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mitrecaasd.org", true },
{ "mitremai.org", true },
{ "mitrostudios.com", true },
- { "mitsu-szene.de", true },
+ { "mitsonnenbrillen.de", true },
{ "mitsukabose.com", true },
{ "mittagonggardencentre.com.au", true },
{ "mittagonghomestead.com.au", true },
{ "mittbolan.se", true },
+ { "mittelalter-lexikon.de", true },
{ "mittelunsachlich.de", true },
- { "mittenofficesystems.com", true },
{ "mitylite.com", true },
{ "mitzpettel.com", true },
{ "miui-germany.de", true },
+ { "mivestuariolaboral.com", true },
{ "mivzak.im", true },
{ "mivzakim.biz", true },
+ { "mivzakim.cf", true },
+ { "mivzakim.ga", true },
+ { "mivzakim.gq", true },
{ "mivzakim.info", true },
+ { "mivzakim.ml", true },
{ "mivzakim.mobi", true },
{ "mivzakim.net", true },
{ "mivzakim.org", true },
+ { "mivzakim.tk", true },
{ "mivzakim.tv", true },
{ "miweb.cr", false },
+ { "mixedrecipe.com", true },
{ "mixinglight.com", true },
{ "mixmister.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", false },
+ { "miyugirls.com", true },
+ { "mizar.im", true },
{ "mizipack.com", true },
{ "mizque.ch", true },
+ { "mizternational.com", true },
{ "mizu.coffee", true },
{ "mizucoffee.net", true },
{ "mizuho-trade.net", true },
@@ -26205,13 +28970,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mjanja.ch", true },
{ "mjasm.org", true },
{ "mjec.net", true },
- { "mjlaurindo.pt", true },
{ "mjmedia.co.za", true },
{ "mjmnagy.info", true },
{ "mjpak.com.au", true },
+ { "mjsacco-dwi.com", true },
+ { "mjsacco.com", true },
+ { "mjscustomcreations.com.au", true },
{ "mjt.me.uk", true },
{ "mk89.de", true },
- { "mkaciuba.com", true },
+ { "mkaciuba.com", false },
{ "mkakh.com", true },
{ "mkbouncycastles.co.uk", true },
{ "mkbouncyhire.co.uk", true },
@@ -26223,11 +28990,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mkg-scherer.de", true },
{ "mkg-wiebelskirchen.de", true },
{ "mkhsoft.eu", true },
- { "mkie.cf", true },
{ "mkimage.com", true },
+ { "mkinteriores.com.br", true },
{ "mkjl.ml", true },
{ "mkk.de", true },
- { "mkkkrc.ru", true },
{ "mklpedia.de", true },
{ "mkoppmann.at", true },
{ "mkpef.org", true },
@@ -26237,46 +29003,61 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mkset.ru", true },
{ "mktdigital.info", true },
{ "mktemp.org", true },
+ { "mktenlared.com", true },
{ "mkuznets.com", true },
- { "mlarte.com", true },
+ { "mkw.st", true },
+ { "mlan-server.de", true },
{ "mlcnfriends.com", true },
{ "mlemay.com", true },
{ "mlmjam.com", true },
{ "mlp.ee", true },
{ "mlpvector.club", true },
+ { "mlsha.cn", true },
{ "mlundberg.se", true },
{ "mlvbphotography.com", true },
{ "mlytics.com", true },
+ { "mm-wife.com", true },
{ "mm13.at", true },
- { "mm404.com", true },
- { "mma-acareporting.com", true },
+ { "mm5197.co", true },
+ { "mm6729.co", true },
+ { "mm6729.com", true },
+ { "mm6957.co", true },
+ { "mm9297.co", true },
+ { "mm9397.com", true },
+ { "mm9721.com", true },
+ { "mm9728.co", true },
{ "mmalisz.com", true },
+ { "mmaps.org", true },
{ "mmbb.org", true },
{ "mmgal.com", true },
{ "mmin.us", false },
{ "mmmarco.com", true },
+ { "mmmm.mn", true },
{ "mmogah.com", true },
{ "mmonit.com", true },
+ { "mmprojects.nl", true },
{ "mms.is", true },
+ { "mmsmotor.com.hk", true },
{ "mmt.my", true },
{ "mmucha.de", true },
- { "mna7e.com", true },
+ { "mnciitbhu.me", true },
{ "mncloud.de", true },
{ "mnconsulting.xyz", true },
{ "mnd.sc", true },
{ "mne.moe", true },
{ "mneerup.dk", true },
{ "mnemonic.ninja", true },
+ { "mneti.ru", true },
{ "mnguyen.io", true },
{ "mnienamel.com", true },
- { "mnitro.com", true },
{ "mnium.de", true },
{ "mnml.art", true },
{ "mnml.jp", true },
{ "mnnknz.de", true },
+ { "mns.co.jp", true },
+ { "mns.jp", true },
{ "mnsure.org", true },
{ "mnt-tech.fr", true },
- { "mnt9.de", true },
{ "mo-journal.com", true },
{ "mo.nl", true },
{ "mo2021.de", true },
@@ -26284,10 +29065,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "moabpapier.de", true },
{ "moabygg.se", true },
{ "moahmo.com", true },
- { "moas.design", true },
- { "moas.photos", true },
- { "mobag.ru", false },
+ { "moarcookies.com", true },
+ { "mobag.ru", true },
{ "mobal.com", true },
+ { "mobasuite.com", true },
{ "mobi2go.com", true },
{ "mobifinans.ru", true },
{ "mobila-chisinau.md", true },
@@ -26315,71 +29096,77 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mobiproj.com", true },
{ "mobisaar-cloud.de", true },
{ "mobius.network", true },
+ { "mobizma.com", true },
+ { "mobl.io", true },
{ "mobobe.com", true },
{ "mobsender.com", true },
{ "mobycoders.com", true },
+ { "mobydog.net", true },
{ "moc.ac", true },
- { "mochanstore.com", true },
+ { "mochanstore.com", false },
+ { "mochizuki.moe", true },
{ "mockerel.com", true },
+ { "mocking-bird.org", true },
{ "mococo.co.uk", true },
{ "modaexecutiva.com.br", true },
- { "modafinil.com", true },
{ "modafinil.net", true },
- { "modafinil.wiki", true },
{ "modafo.com", true },
{ "modalogi.com", true },
{ "modcasts.video", true },
+ { "modcover.com", true },
{ "modding-forum.com", true },
{ "modding-welt.com", true },
+ { "moddiy.com", true },
{ "mode-hautnah.de", true },
{ "mode-individuell.de", true },
- { "modehaus-marionk.de", true },
- { "modelcase.co.jp", false },
{ "modelclub-draveil.eu", true },
{ "modelcube.com", true },
+ { "modelemax.pl", true },
{ "modelisme-rc.net", true },
{ "modelisme-voiture-rc.fr", true },
+ { "modellismo.roma.it", true },
{ "modelservis.cz", true },
{ "modemaille.com", true },
{ "modemchild.net", true },
{ "modeportaal.nl", true },
{ "moderatoren.org", true },
- { "moderatorenpool.org", true },
{ "modern-family.tv", true },
- { "modernapprenticeships.org", true },
{ "moderncoinmart.com", true },
{ "moderncommercialrealestate.com", true },
{ "modifiedmind.com", true },
{ "modistry.com", true },
{ "modmountain.com", true },
- { "modnitsa.info", true },
{ "modonor.dk", true },
{ "modosaude.com.br", true },
- { "mods-community.de", true },
- { "mods-pic.de", true },
+ { "modscrew.com", true },
{ "modul21.com", true },
{ "modul21.eu", true },
{ "module.market", true },
{ "modulex-gmbh.de", true },
+ { "moduloseltaladro.com", true },
+ { "modusawperandi.com", true },
{ "moe-max.jp", true },
+ { "moe.best", true },
{ "moebel-vergleichen.com", true },
{ "moechel.com", true },
- { "moeclue.com", true },
{ "moecraft.net", true },
{ "moefactory.com", true },
+ { "moegi.ml", true },
+ { "moego.me", true },
{ "moehrke.cc", true },
{ "moekes.amsterdam", true },
{ "moeking.me", true },
- { "moellers.systems", true },
- { "moenew.top", true },
- { "moepass.com", true },
- { "moeqing.net", false },
+ { "moeloli.cc", true },
+ { "moeqing.net", true },
+ { "moesif.com", true },
{ "moetrack.com", true },
+ { "moeyun.net", true },
{ "mofidmed.com", true },
{ "mofohome.dyndns.org", true },
{ "moha-swiss.com", true },
{ "mohanmekap.com", true },
{ "mohela.com", true },
+ { "mohitchahal.com", true },
{ "mohr-maschinenservice.de", true },
{ "moin.jp", true },
{ "moipourtoit.ch", true },
@@ -26393,23 +29180,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mojefedora.cz", true },
{ "mojilitygroup.com", true },
{ "mojizuri.com", true },
- { "mojnet.eu", true },
- { "mojnet.net", true },
+ { "mojkragujevac.net", true },
{ "mojoco.co.za", true },
+ { "mojomusic.org", true },
+ { "mojt.net", true },
{ "mojzis.com", true },
{ "mojzis.cz", true },
{ "mojzisova.com", true },
{ "mok.pw", true },
- { "mokeedev.review", true },
{ "mokhtarmial.com", false },
- { "mokote.com", true },
+ { "moki.org.pl", true },
{ "molb.org", true },
+ { "mold.world", true },
{ "molecularbiosystems.org", true },
{ "moleskinestudio.com", true },
{ "molinero.xyz", true },
{ "mollaretsmeningitis.org", true },
{ "mollie.com", true },
{ "molokai.org", true },
+ { "molpek.com", true },
{ "molti.hu", true },
{ "molun.net", true },
{ "molunerfinn.com", true },
@@ -26418,7 +29207,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "momentum.photos", true },
{ "momentumdash.com", true },
{ "momirfarooq.com", true },
+ { "momjoyas.com", true },
{ "momo0v0.club", true },
+ { "momove.nl", true },
{ "momozeit.de", true },
{ "momstableonline.com", true },
{ "momut.org", true },
@@ -26434,6 +29225,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "monakasatmasr.com", true },
{ "monalyse.com", true },
{ "monarchcleanersnc.com", true },
+ { "monarcjuexpo.ch", true },
{ "monbudget.org", true },
{ "moncoach.ch", true },
{ "mondedie.fr", true },
@@ -26441,7 +29233,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mondo-it.ch", true },
{ "monelephantapois.com", true },
{ "moneni.com", true },
- { "moneseglobal.com", true },
+ { "monerogamez.com", true },
+ { "monetki.net", true },
{ "moneybird.com", true },
{ "moneybird.nl", true },
{ "moneychangersoftware.com", true },
@@ -26450,7 +29243,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "moneyhouse.de", true },
{ "moneypark.ch", true },
{ "moneytoday.se", true },
+ { "mongolie.net", true },
{ "mongolieenfrance.fr", true },
+ { "monicajean.photography", true },
{ "moniquedekermadec.com", true },
{ "moniquemunhoz.com.br", true },
{ "monitman.com", true },
@@ -26459,7 +29254,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "monix.io", true },
{ "monkay.de", true },
{ "monkeybusiness.agency", true },
- { "monkeyhill.us", true },
+ { "monkeyfaqs.com", true },
{ "monkeytek.ca", true },
{ "monlabs.com", true },
{ "monloyer.quebec", true },
@@ -26472,8 +29267,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "monolithapps.com", true },
{ "monolithindustries.com", true },
{ "monolithinteractive.com", true },
+ { "mononom.com", true },
+ { "monopoly-one.com", true },
+ { "monospazzole.roma.it", true },
{ "monothesis.com", true },
- { "monotributo.online", true },
{ "monoworks.co.jp", true },
{ "monpc-pro.fr", true },
{ "monpermismoto.com", true },
@@ -26483,8 +29280,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "monplay.host", true },
{ "monsieurbureau.com", true },
{ "monsieursavon.ch", true },
+ { "monsterandfox.co.uk", true },
{ "monstermashentertainments.co.uk", true },
{ "monsterx.cn", true },
+ { "montack.de", true },
{ "montage-kaika.de", false },
{ "montagne-tendance.ch", true },
{ "montanasky.tv", true },
@@ -26494,7 +29293,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "montas.io", true },
{ "montazer.net", true },
{ "montemanik.com", true },
- { "montenero.pl", true },
{ "montessori.edu.vn", true },
{ "montgomeryfirm.com", true },
{ "montgomerysoccer.net", true },
@@ -26503,25 +29301,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "montredeal.fr", true },
{ "montsaintaignan.fr", true },
{ "montychristie.com", true },
+ { "monwarez.ovh", true },
{ "monzo.com", true },
{ "monzo.me", true },
{ "moo.la", true },
{ "moodfoods.com", true },
- { "moodzshop.com", true },
{ "moolah.rocks", true },
{ "moon.fish", true },
{ "moonagic.com", true },
{ "moonbench.xyz", true },
{ "moonbot.io", true },
+ { "moonboys.de", true },
{ "moonchart.co.uk", true },
{ "moondrop.org", true },
{ "moonkin.eu", true },
+ { "moonlabs.nl", true },
{ "moonmelo.com", true },
- { "moonraptor.co.uk", true },
- { "moonraptor.com", true },
- { "moonrhythm.io", true },
+ { "moonraptor.co.uk", false },
+ { "moonraptor.com", false },
{ "moonshyne.org", true },
{ "moontaj.com", true },
+ { "moonue.com", true },
{ "moonvpn.org", true },
{ "moorewelliver.com", true },
{ "moorfunevents.co.uk", true },
@@ -26540,12 +29340,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "moparisthebest.net", true },
{ "moparisthebest.org", true },
{ "moparscape.net", true },
+ { "mopedpress.com", true },
{ "mopedreifen.de", false },
{ "mopie.de", true },
{ "mople71.cz", true },
+ { "mopliangxing.com", true },
{ "moplx.com", true },
{ "moppeleinhorn.de", true },
- { "moppy.org", true },
+ { "mopxing.com", true },
{ "mora.pl", true },
{ "morbatex.com", true },
{ "morbiceramicindustry.com", true },
@@ -26561,13 +29363,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "moreniche.com", true },
{ "morepablo.com", true },
{ "morepay.cn", true },
+ { "moreserviceleads.com", true },
{ "moresw.com", true },
{ "morethanautodealers.com", true },
{ "morethancode.be", true },
{ "morethandigital.info", true },
- { "morganino.it", true },
+ { "moretti.camp", true },
+ { "morgan-insurance.com", true },
{ "morgansleisure.co.uk", true },
- { "morgner.com", true },
{ "moritz-baestlein.de", true },
{ "moritztremmel.de", true },
{ "moriz.de", true },
@@ -26576,29 +29379,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mormonleaks.io", true },
{ "morningcurve.com", true },
{ "morningstar.moe", true },
- { "morphy2k.io", true },
{ "morris.computer", true },
{ "morrisby.com", true },
{ "morteruelo.net", true },
{ "mortgagecalculator.biz", true },
- { "mortgagecentersmo.com", true },
{ "mortis.eu", true },
+ { "morvo.mx", true },
{ "mosaic-design.ru", true },
{ "mosaicadvisors.com", true },
{ "mosaicmarble.com", true },
+ { "mosboutique.it", true },
{ "moscatalogue.net", true },
{ "moscow.dating", true },
+ { "moseleyelectronics.com", true },
+ { "moseracctg.com", true },
{ "mosfet.cz", true },
- { "moshwire.com", true },
{ "mosin.org", true },
{ "moskeedieren.nl", true },
- { "mosos.de", true },
{ "mosquitojoe.com", true },
{ "mosscade.com", true },
- { "mosstier.com", true },
{ "mostcomfortableworkboots.net", true },
- { "mostholynameofjesus.org", true },
- { "mostlyoverhead.com", true },
{ "motd.ch", true },
{ "motd.today", true },
{ "motekforce.link", true },
@@ -26608,7 +29408,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "motekmedical.com", true },
{ "motekmedical.eu", true },
{ "motekmedical.nl", true },
- { "motekrysen.com", true },
{ "moteksystems.com", true },
{ "motezazer.fr", true },
{ "mothereff.in", false },
@@ -26616,25 +29415,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "motionless.nl", true },
{ "motionvideos.uk", true },
{ "motiweb.fr", true },
+ { "motlife.net", true },
+ { "motmplus.com", true },
+ { "motoactionimola.it", true },
{ "motocollection.pl", true },
+ { "motodb.co.uk", true },
+ { "motodb.eu", true },
+ { "motodb.net", true },
+ { "motodb.uk", true },
{ "motogb.net", true },
{ "motohell.com", true },
{ "motojato.com.br", true },
{ "motonauticaibiza.com", true },
{ "motor-forum.nl", true },
+ { "motor1.com", true },
{ "motoreflex.com", true },
{ "motorpointarenacardiff.co.uk", true },
{ "motorring.ru", true },
{ "motorsplus.com", false },
+ { "motorsportdiesel.com", true },
{ "motoryachtclub-radolfzell.de", true },
{ "motosikletevi.com", true },
{ "motospaya.com", true },
- { "motostorie.blog", false },
+ { "motostorie.blog", true },
{ "mototax.ch", true },
- { "motovated.co.nz", true },
+ { "motovio.de", true },
{ "motowilliams.com", true },
{ "motransportinfo.com", true },
{ "motstats.co.uk", true },
+ { "mouche.fr", true },
+ { "moucloud.cn", true },
{ "moulinaparoles.ca", true },
{ "mountain-rock.ru", true },
{ "mountainactivitysection.org.uk", true },
@@ -26647,14 +29457,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "move.mil", true },
{ "moveltix.net", true },
{ "movember.com", false },
+ { "movewellapp.com", true },
{ "movewellnesslab.com", true },
{ "movfun.ga", true },
- { "movie-cross.net", true },
{ "movie-infos.net", true },
{ "movie1000.com", true },
+ { "movie4kto.site", true },
{ "movie4kto.stream", true },
- { "movieboost.nl", true },
- { "moviedeposit.com", true },
{ "moviefreeze.com", true },
{ "movieguys.org", true },
{ "moviesetc.net", true },
@@ -26667,12 +29476,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "movingtojapan.life", true },
{ "movlib.org", true },
{ "moy.cat", true },
- { "moyer.pub", true },
{ "moylen.eu", true },
{ "mozartgroup.hu", true },
{ "mozektevidi.net", true },
+ { "mozilla-hispano.org", true },
{ "mozilla.cz", true },
{ "mozzez.de", true },
+ { "mp3gratuiti.com", true },
{ "mpa-pro.fr", true },
{ "mpac.ca", false },
{ "mpc-hc.org", true },
@@ -26680,8 +29490,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mpetroff.net", true },
{ "mpg-universal.com", true },
{ "mpgaming.pro", true },
+ { "mphwinkel.nl", true },
{ "mpkrachtig.nl", true },
- { "mpkshop.com.br", true },
{ "mplanetphl.fr", true },
{ "mplant.io", true },
{ "mplicka.cz", true },
@@ -26689,42 +29499,49 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mprsco.eu", true },
{ "mpsgarage.com.au", true },
{ "mpsoundcraft.com", true },
+ { "mpu-beratungsstellen.com", true },
+ { "mpu-ibbi.de", true },
{ "mpu-vorbereitung.com", true },
- { "mqas.net", true },
+ { "mpublicidad.com", true },
{ "mr-anderson.org", true },
- { "mr-designer-oman.com", true },
- { "mr-nachhilfe.de", true },
{ "mr-wolf.nl", false },
{ "mralonas.ml", true },
- { "mrbmafrica.com", true },
+ { "mrandmrsparrot.gr", true },
{ "mrbounce.com", true },
{ "mrbouncescrazycastles.co.uk", true },
{ "mrbouncycastle.com", true },
{ "mrbuckykat.com", true },
{ "mrca-sharp.com", true },
{ "mrcoolevents.com", true },
+ { "mrcrowley217.com", true },
{ "mrd.ninja", true },
{ "mrdatenschutz.de", true },
{ "mrdayman.com", true },
{ "mremallin.ca", true },
{ "mrevolution.eu", true },
- { "mrgasfires.co.uk", true },
- { "mrgiveaways.com", true },
{ "mrhc.ru", true },
+ { "mrhee.com", true },
{ "mrhookupsd.com", true },
+ { "mrichard333.com", true },
{ "mrinalpurohit.in", true },
+ { "mrjbanksy.com", true },
{ "mrjhnsn.com", true },
+ { "mrjo.sh", true },
{ "mrjooz.com", true },
{ "mrkapowski.com", true },
{ "mrketolocksmith.com", true },
{ "mrknee.gr", true },
{ "mrkrabat.de", true },
{ "mrmad.com.tw", true },
+ { "mrmanner.eu", true },
{ "mrnh.de", true },
+ { "mrning.com", true },
+ { "mrnordic.com", true },
{ "mrprintables.com", true },
{ "mrs-labo.jp", true },
{ "mrs-shop.com", true },
{ "mrsbairds.com", false },
+ { "mrschristine.com", true },
{ "mrserge.lv", true },
{ "mrsk.me", true },
{ "mrstat.co.uk", true },
@@ -26732,24 +29549,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mrtunnel.club", true },
{ "mruczek.ga", true },
{ "mrv.li", true },
- { "mrx.one", true },
+ { "mrx.one", false },
{ "mrxn.net", true },
+ { "ms-a.at", true },
{ "ms-ch.ch", true },
{ "ms-host.fr", true },
{ "msa-aesch.ch", true },
{ "mscc.mu", true },
{ "mscc.org", true },
- { "mscenter.cf", true },
{ "msch.pw", true },
{ "mschuessler.org", true },
{ "msebera.cz", true },
{ "msh100.uk", true },
- { "mshemailmarketer.com.au", true },
{ "msi-zlin.cz", true },
{ "msiegmund.com", true },
{ "msize48.ch", true },
{ "msmails.de", true },
- { "msno.no", true },
{ "msnr.net", true },
{ "mspsocial.net", true },
{ "msquadrat.de", true },
@@ -26758,17 +29573,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mssys.de", true },
{ "mstdn.blue", true },
{ "mstdn.club", true },
- { "mstdn.fr", true },
{ "mstdn.io", true },
{ "mstdn.onl", false },
- { "mstdn.vodka", true },
+ { "mstdn.vodka", false },
{ "msuna.net", true },
- { "msv-limpezas.pt", true },
{ "msx.org", true },
{ "mszavodumiru.cz", true },
{ "mt-bank.jp", true },
{ "mt.search.yahoo.com", false },
+ { "mt1016.com", true },
{ "mt2414.com", true },
+ { "mt4programming.com", true },
{ "mta.fail", true },
{ "mta.org.ua", true },
{ "mtane0412.com", true },
@@ -26778,6 +29593,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mtb.wtf", true },
{ "mtd.org", true },
{ "mte.sk", true },
+ { "mtechprecisioninc.com", true },
{ "mteleport.net", true },
{ "mtgeni.us", true },
{ "mtgenius.com", true },
@@ -26788,8 +29604,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mths.be", false },
{ "mticareportal.com", true },
{ "mtiryaki.com", true },
+ { "mtjholding.ee", true },
{ "mtlconcerts.com", true },
{ "mtltransport.com", true },
+ { "mtludlow.co.uk", true },
{ "mtouch.facebook.com", false },
{ "mtravelers.net", true },
{ "mtrip.com", true },
@@ -26799,11 +29617,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mtsolar.es", true },
{ "mu.search.yahoo.com", false },
{ "muabannhanh.com", false },
+ { "mubase.dk", true },
{ "mubiflex.nl", true },
+ { "muchohentai.com", true },
{ "muckingabout.eu", true },
{ "muckrack.com", true },
{ "mucmail.de", true },
{ "muctool.de", true },
+ { "mudanzasacuna.com.co", true },
{ "mudbenesov.cz", true },
{ "mudcrab.us", false },
{ "mudit.xyz", true },
@@ -26813,31 +29634,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "muellapp.com", true },
{ "mueller-gaestehaus.de", true },
{ "muenchberger.com", true },
+ { "muffs.ru", true },
{ "mufibot.net", true },
+ { "mugen.technology", true },
{ "muguayuan.com", true },
{ "muh.io", true },
+ { "muhcow.dk", true },
{ "mui.jp", true },
{ "muilties.com", true },
{ "muitadica.com", true },
+ { "muitoalemdobolo.com.br", true },
{ "mujerfutura.com", true },
{ "muk-kobetsu.com", true },
{ "mukilteodentalarts.com", true },
{ "mukilteoeuropeanautorepair.com", true },
- { "mukyu.moe", true },
{ "mulaccosmetics.com", true },
{ "mulaisehat.com", true },
{ "mulej.net", true },
+ { "mulheres18.com", true },
{ "muling.lu", true },
+ { "mulk.hopto.org", true },
{ "mullens-usedcars.be", true },
{ "mullerimoveisrj.com.br", true },
{ "multi-vpn.biz", true },
{ "multibit.org", true },
{ "multibomasm.com.br", true },
+ { "multiclinicacardio.com.br", true },
{ "multicomhost.com", true },
+ { "multigamecard.com", true },
{ "multigeist.de", true },
{ "multikalender.de", false },
{ "multimail.work", true },
{ "multimatte.com", false },
+ { "multimed-solutions.com", true },
{ "multimed.krakow.pl", true },
{ "multimedia-pool.com", true },
{ "multimediapc.de", true },
@@ -26849,20 +29678,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "multitec.nl", true },
{ "multitek.no", true },
{ "multitenantlaravel.com", true },
+ { "multiterm.org", true },
{ "multitheftauto.com", true },
+ { "multixa.net", true },
{ "multrier.fr", true },
{ "mum.ceo", true },
- { "mumakil.fi", true },
+ { "muma.ml", true },
+ { "mumakil.fi", false },
{ "mumbaionlinegifts.com", true },
{ "muminkoykiran.com", true },
{ "mumolabs.com", true },
{ "munch.me", true },
{ "munchcorp.com", true },
+ { "mundismart.com", true },
{ "mundoarabe.com.br", true },
{ "mundoconejos.com", true },
{ "mundodapoesia.com", true },
{ "mundodasmensagens.com", true },
- { "mundogamers.top", true },
{ "mundokinderland.com.br", true },
{ "mundolarraz.es", true },
{ "mundomagicotv.com", true },
@@ -26872,11 +29704,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mundtec.com.br", true },
{ "munduch.cz", true },
{ "munduch.eu", true },
- { "munirajiwa.com", true },
{ "munki.org", true },
{ "munkibuilds.org", true },
{ "munwr.com", true },
- { "muoivancauhoivisao.com", true },
{ "muqu.co", true },
{ "mur-vegetal-interieur.fr", true },
{ "murakami-sah.com", true },
@@ -26885,16 +29715,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "murfy.nz", true },
{ "murmel.it", false },
{ "murof.com.br", true },
- { "murphycraftbeerfest.com", true },
{ "murray.xyz", true },
{ "murraya.cn", true },
- { "murzik.space", true },
{ "musa.gallery", true },
{ "muscle-tg.com", true },
+ { "muscleangels.com", true },
{ "musclecarresearch.com", true },
{ "muscolinomusic.com", true },
{ "museclef.com", true },
{ "musehelix.com", true },
+ { "muserver.io", true },
{ "muses-success.info", true },
{ "musettishop.com", true },
{ "mush-room.co.jp", true },
@@ -26908,6 +29738,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "musicalive.nl", true },
{ "musicall.com", true },
{ "musicalschwarzenburg.ch", true },
+ { "musicalsoulfood.com", true },
{ "musicapara.net", true },
{ "musicasbr.com.br", true },
{ "musicchris.de", true },
@@ -26915,6 +29746,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "musicfromgod.com", true },
{ "musicgamegalaxy.de", true },
{ "musician.dating", true },
+ { "musicindustrydb.org", true },
{ "musickhouseleveling.com", true },
{ "musicompare.com", true },
{ "musicschoolonline.com", true },
@@ -26924,6 +29756,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "musiikkiohjelmapalvelu.fi", true },
{ "musik-mentaltraining.ch", true },
{ "musikholics.com", true },
+ { "musiktag2020.ch", true },
{ "musikverein-elten.de", true },
{ "musikzentrale.net", true },
{ "musketonhaken.nl", false },
@@ -26931,8 +29764,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "musmann.io", true },
{ "muspla.com", true },
{ "muspla.com.br", true },
- { "musselsblog.com", true },
- { "mustafaturhan.com", true },
+ { "mussalains.com", true },
+ { "musta.ch", true },
+ { "mustafaturhan.com", false },
{ "mustard.co.uk", true },
{ "mustardking.me", true },
{ "mustasj.no", true },
@@ -26941,30 +29775,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "muster-schablonen.de", true },
{ "mustertexte-musterbewerbung.de", true },
{ "musthavesforreal.com", true },
- { "mutantmonkey.in", true },
- { "mutantmonkey.info", true },
- { "mutantmonkey.sexy", true },
+ { "muszic.co", true },
{ "muthai.in.th", true },
- { "mutuals.cool", true },
{ "mutuelle.fr", true },
{ "muunnin.net", true },
{ "muurlingoogzorg.nl", true },
- { "muusikoiden.net", true },
{ "muwatenraqamy.org", true },
{ "muy.ooo", true },
{ "muz2u.ru", true },
{ "muzeumkomiksu.eu", true },
{ "muzhijy.com", true },
{ "muzikantine.nl", true },
+ { "muzykanawesele.info", true },
{ "mv-schnuppertage.de", true },
- { "mv-wohnen.de", true },
{ "mvandek.nl", true },
{ "mvbits.com", true },
- { "mvbug.com", true },
{ "mvisioncorp.com", true },
{ "mvistatic.com", true },
{ "mvno.io", true },
{ "mvp-stars.com", true },
+ { "mvwoensei.com", true },
{ "mvwoensel.com", true },
{ "mw.search.yahoo.com", false },
{ "mwainc.org", true },
@@ -26975,31 +29805,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mwe.st", true },
{ "mwezi-foundation.org", true },
{ "mwezi.org", true },
+ { "mwlcouriers.com", true },
{ "mwtdev.se", true },
{ "mww.moe", true },
{ "mx-quad.fr", true },
{ "mx.org.ua", true },
{ "mx.search.yahoo.com", false },
{ "mx5international.com", true },
- { "mxdanggui.org", true },
+ { "mxdvl.com", true },
{ "mxihan.xyz", true },
- { "mxn8.com", true },
{ "my-aftershave-store.co.uk", true },
{ "my-best-wishes.com", true },
- { "my-co.ir", true },
{ "my-contract.ch", true },
{ "my-contract.info", true },
{ "my-contract.net", true },
- { "my-dns.co.il", true },
{ "my-ebook.es", true },
{ "my-floor.com", true },
{ "my-gode.fr", true },
{ "my-host.ovh", true },
- { "my-hps.de", true },
+ { "my-hps.de", false },
{ "my-ip.work", true },
{ "my-new-bikini.de", true },
{ "my-nextcloud.at", true },
{ "my-stuff-online.com", true },
+ { "my-webcloud.at", true },
{ "my.onlime.ch", false },
{ "my.usa.gov", false },
{ "my.xero.com", false },
@@ -27019,28 +29848,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myammo.ru", true },
{ "myanimelist.net", true },
{ "myapexcard.com", true },
- { "myaspenheights.com", true },
{ "mybagofcoffee.com", true },
{ "mybakkupakku.com", true },
{ "mybasementdoctor.com", true },
{ "mybb.com", true },
{ "mybb.de", true },
- { "mybeautyjobs.de", true },
{ "mybicc.org", true },
- { "myblockchain.cloud", true },
{ "mybloggedlife.com", true },
{ "mybodylife.com", true },
{ "mybon.at", false },
{ "mybonfire.com", true },
{ "myboothang.com", true },
- { "mybreastcancerjourney.com", true },
{ "mybus.ro", true },
{ "mybusiness.wien", true },
- { "mycamda.com", true },
+ { "mycaelis.fr", true },
{ "mycamshowhub.com", true },
+ { "mycamshowhub.to", true },
{ "mycard.moe", true },
{ "mycareersfuture.sg", true },
- { "mycarwashers.com", true },
{ "mycc.be", true },
{ "mycieokien.info", false },
{ "mycinema.pro", true },
@@ -27052,10 +29877,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mycloud-system.com", true },
{ "mycofairtrade.com", true },
{ "myconan.net", true },
+ { "myconan.tk", true },
+ { "myconf.com", true },
+ { "myconf.uk", true },
{ "myconnect.cn", true },
{ "myconsulting.ch", true },
{ "mycookrecetas.com", true },
{ "mycoupons.com", true },
+ { "mycp668.com", true },
{ "mycr.eu", true },
{ "mycreativenook.com", true },
{ "mycreditcardcenter.com", true },
@@ -27064,6 +29893,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mycrypto.com", false },
{ "mycrystalgrove.com", true },
{ "mycustomwriting.com", true },
+ { "mydais.org", true },
+ { "mydarkstar.net", true },
{ "mydatadoneright.eu", true },
{ "mydaywebapp.com", true },
{ "mydebian.in.ua", true },
@@ -27071,17 +29902,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mydevolo.com", true },
{ "mydevolo.de", true },
{ "mydigitalweek.com", true },
- { "mydjsongbook.com", true },
{ "mydna.bio", true },
+ { "mydnshost.co.uk", true },
{ "mydoc.fr", true },
{ "mydocserve.com", true },
{ "mydomaindesk.com", true },
- { "mydreamshaadi.in", true },
+ { "mydroneservices.ca", true },
+ { "mydroneservices.com", true },
+ { "mydsacontabilidad.com", true },
{ "myduffyfamily.com", true },
{ "myeasybooking.de", true },
{ "myeberspaecher.com", true },
- { "myeffect.today", true },
+ { "myedumundo.com", true },
{ "myeisenbahn.de", true },
+ { "myessaygeek.com", true },
{ "myetherwallet.com", true },
{ "myf.cloud", true },
{ "myfae.eu", true },
@@ -27096,6 +29930,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mygadgetguardian.lookout.com", false },
{ "mygallery.homelinux.net", true },
{ "mygate.at", false },
+ { "mygedit.com", true },
{ "mygeneral.org", true },
{ "mygeotrip.com", true },
{ "mygest.me", true },
@@ -27104,13 +29939,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mygirlfriendshouse.com", true },
{ "mygnmr.com", true },
{ "mygoldennetwork.com", true },
- { "mygreatjobs.de", true },
{ "mygreatlakes.org", true },
{ "mygretchen.de", true },
{ "mygrotto.org", true },
{ "mygymer.ch", true },
{ "myhatsuden.jp", true },
{ "myhealthreviews.com", true },
+ { "myhmz.bid", true },
{ "myhollywoodnews.com", true },
{ "myhome-24.pl", true },
{ "myhuthwaite.com", true },
@@ -27123,6 +29958,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myjudo.net", true },
{ "myjumparoo.co.uk", true },
{ "myjumpsuit.de", true },
+ { "myjuvelirika.ru", true },
{ "myki.co", true },
{ "mykontool.de", true },
{ "mykumedir.com", true },
@@ -27136,33 +29972,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myloan.hk", true },
{ "myloneworkers.com", true },
{ "mylookout.com", false },
+ { "mylotto.co.nz", true },
{ "mylstrom.com", true },
{ "mylucknursinghome.com", true },
{ "mymadina.com", true },
{ "mymall.co.jp", true },
{ "mymarketingcourses.com", true },
{ "mymb.pm", true },
- { "mymed.de", true },
- { "mymed.eu", true },
{ "mymedz.nl", true },
{ "mymixtapez.com", true },
{ "mymommyworld.com", true },
{ "mymonture.com", true },
{ "mymotor.nl", true },
- { "myms.eu", true },
{ "mymun.com", true },
{ "mymun.net", true },
- { "mymusiclist.alwaysdata.net", true },
{ "mymx.lu", true },
{ "myna.go.jp", true },
{ "mynameistavis.com", true },
{ "myndcoin.com", true },
- { "mynetworkingbuddy.com", true },
+ { "myndcoins.com", true },
{ "mynext.events", true },
{ "mynextmove.org", true },
{ "mynn.io", true },
{ "mynook.info", false },
- { "mynortherngarden.com", true },
{ "myonline.hu", true },
{ "myonline.store", true },
{ "myopd.in", true },
@@ -27180,11 +30012,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myowndisk.com", true },
{ "myowndisk.net", true },
{ "mypaperdone.com", true },
+ { "mypaperwriter.com", true },
+ { "myparisiankitchen.com", true },
{ "mypartnernews.com", true },
{ "mypartybynoelia.es", true },
{ "mypay.fr", true },
{ "mypayoffloan.com", true },
- { "mypcqq.cc", true },
{ "myperfecthome.ca", true },
{ "myperks.in", true },
{ "myphamaplus.org", true },
@@ -27197,7 +30030,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myprintcard.de", true },
{ "myproblog.com", true },
{ "myprotime.eu", true },
- { "mypt3.com", true },
{ "myrandomtips.com", true },
{ "myraytech.net", false },
{ "myrealestatemate.com.au", true },
@@ -27259,7 +30091,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myrewardspoints.com", true },
{ "myriadof.com", true },
{ "myrig.com", true },
- { "myrig.net", true },
{ "myrnabiondo.com.br", true },
{ "myrotvorets.center", true },
{ "myrotvorets.news", true },
@@ -27268,16 +30099,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mysber.ru", true },
{ "myschoolphoto.org", true },
{ "myseatime.com", true },
- { "mysecretcase.com", false },
- { "mysectools.org", true },
+ { "mysecretcase.com", true },
{ "myself5.de", true },
- { "myservice.store", false },
{ "myservicearl.com", true },
{ "mysexydate24.com", true },
{ "mysignal.com", true },
- { "mysize-condooms.nl", true },
{ "mysmelly.com", true },
- { "mysocialporn.com", true },
{ "mysockfactory.ch", true },
{ "mysockfactory.com", true },
{ "mysocrat.com", true },
@@ -27285,24 +30112,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myspicer.com", true },
{ "mysqldump-secure.org", true },
{ "myssl.com", true },
+ { "mystaffonline.com", true },
+ { "mystagic.cloud", true },
{ "mysteriouscode.io", true },
{ "mysterydata.com", true },
{ "mysterymind.ch", true },
- { "mysterysear.ch", true },
+ { "mysteryshow.site", true },
+ { "mystia.org", true },
{ "mystic-welten.de", true },
+ { "mysticconsult.com", true },
{ "mystickphysick.com", true },
- { "mysticplumes.com", true },
{ "mysticrs.tk", true },
{ "mystorymonster.com", true },
+ { "mystudy.me", true },
{ "mystudycart.com", true },
{ "myswissmailaddress.com", true },
{ "myte.ch", true },
{ "mytfg.de", true },
{ "mythemeshop.com", false },
- { "mythengay.ch", true },
{ "mythicdelirium.com", true },
+ { "mytime.fr", true },
{ "mytime.gl", true },
{ "myting.net", true },
+ { "mytntware.com", true },
{ "mytraiteurs.com", true },
{ "mytripcar.co.uk", true },
{ "mytripcar.com", true },
@@ -27310,6 +30142,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mytripcar.es", true },
{ "mytripcar.fr", true },
{ "mytruecare.org", true },
+ { "mytrustadviser.com", true },
{ "mytty.net", true },
{ "mytuleap.com", false },
{ "mytun.com", true },
@@ -27321,15 +30154,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myusagepayments.com", true },
{ "myvacompany.com", true },
{ "myvalleymarketing.com", true },
+ { "myvegan.menu", true },
{ "myvirtualserver.com", true },
{ "myvitalhealthsolutions.com.au", true },
- { "myvpl.com", true },
{ "mywari.com", true },
- { "mywebmanager.co.uk", true },
{ "mywebpanel.eu", true },
{ "mywebpanel.nl", true },
{ "myweddingaway.co.uk", true },
{ "myweddingreceptionideas.com", true },
+ { "mywetpussycams.com", true },
+ { "mywiwe.com.au", true },
+ { "mywomenshealthgroup.com", true },
{ "myworkinfo.com", false },
{ "myworth.com.au", true },
{ "myxnr.com", true },
@@ -27362,6 +30197,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "n2diving.net", true },
{ "n2servers.com", true },
{ "n4v.eu", true },
+ { "n5197.co", true },
+ { "n6729.co", true },
+ { "n6729.com", true },
+ { "n6957.co", true },
{ "n6a.net", true },
{ "n7.education", true },
{ "n8ch.net", true },
@@ -27369,10 +30208,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "n8nvi.com", true },
{ "n8solutions.net", true },
{ "n8solutions.us", true },
+ { "n8ta.com", true },
+ { "n9297.co", true },
+ { "n9397.com", true },
+ { "n9721.com", true },
+ { "n9728.co", true },
{ "na-school.nl", true },
{ "naahgluck.de", true },
- { "naam.me", true },
- { "naarakah.fr", true },
{ "nabaleka.com", true },
{ "nabankco.com", true },
{ "nabbar.com", true },
@@ -27392,22 +30234,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nadelholzkulturen.de", true },
{ "naders.com", true },
{ "nadiafourcade-photographie.fr", true },
+ { "nadine-birkner.de", true },
{ "nadine-chaudier.net", true },
+ { "nadji.ga", true },
{ "nadsandgams.com", true },
{ "nadyaolcer.fr", true },
{ "nafod.net", true },
{ "naga-semi.com", true },
+ { "naga.im", true },
{ "naganithin.me", true },
{ "nagashi.ma", false },
- { "nagata.info", true },
{ "nagaya.biz", true },
- { "nagb.gov", true },
{ "nagel-dentaltechnik.de", true },
{ "nagelfam.com", true },
- { "naggie.net", true },
{ "nah.nz", true },
{ "nah.re", true },
- { "nahura.com", true },
{ "nai-job.jp", true },
{ "naijaxnet.com.ng", true },
{ "nailattitude.ch", true },
@@ -27416,9 +30257,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nailsart.roma.it", true },
{ "nailtodayminneapolis.com", true },
{ "nairobibusinessreview.com", true },
- { "nais0ne.com", true },
- { "naive.network", true },
- { "naivetube.com", true },
+ { "naivetube.com", false },
{ "najany.de", true },
{ "najany.dk", true },
{ "najany.fr", true },
@@ -27426,6 +30265,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "najany.se", true },
{ "najedlo.sk", true },
{ "naji-astier.com", true },
+ { "naka.io", true },
{ "nakalabo.jp", true },
{ "nakama.tv", true },
{ "nakandya.com", true },
@@ -27438,48 +30278,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nakladki.su", true },
{ "nakliyat.name.tr", true },
{ "nakliyatsirketi.biz.tr", true },
+ { "nakluky.cz", true },
{ "nako.no", true },
+ { "nalenders.com", true },
{ "nalepky-na-zed.cz", true },
{ "nalepte.cz", true },
{ "nalexandru.xyz", true },
+ { "nalsai.de", true },
{ "namaanakperempuan.net", true },
{ "namaleaks.com", false },
- { "namazon.org", true },
+ { "namalelaki.com", true },
+ { "namaperempuan.com", true },
{ "namazvakitleri.com.tr", true },
{ "namegrep.com", true },
{ "nameid.org", true },
{ "namepros.com", true },
{ "nameproscdn.com", true },
{ "namereel.com", true },
+ { "namethatporn.com", true },
{ "nametiles.co", true },
- { "nami.bo", true },
{ "nami.trade", true },
{ "naminam.de", true },
{ "namrs.net", true },
{ "namskra.is", true },
+ { "namu.games", true },
+ { "namu.la", true },
{ "namu.live", true },
{ "namu.moe", true },
+ { "namu.news", true },
{ "namu.wiki", true },
{ "namus.gov", true },
{ "nan.ci", true },
{ "nan.ge", true },
+ { "nan0.cloud", true },
{ "nanarose.ch", true },
{ "nanch.com", true },
{ "nancytelford.com", true },
{ "nandex.org", true },
{ "nange.cn", true },
- { "nange.co", true },
+ { "nanisiyou.com", true },
{ "nankiseamansclub.com", true },
{ "nannytax.ca", true },
{ "nano.voting", true },
- { "nanofy.org", true },
{ "nanogi.ga", true },
- { "nanogramme.fr", true },
- { "nanollet.org", true },
+ { "nanogramme.fr", false },
+ { "nanopixel.ch", true },
{ "nanotechnologist.com", true },
{ "nanotechnologysolutions.com.au", true },
{ "nanotechtorsion.com", true },
- { "nanovolt.nl", true },
{ "nanowallet.io", true },
{ "nanpuyue.com", true },
{ "nansa.ch", true },
@@ -27495,23 +30341,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "napkins-wholesale.nz", true },
{ "napkins-wholesale.uk", true },
{ "napkins-wholesale.us", true },
- { "napolinissanctparts.com", true },
- { "narada.com.ua", true },
+ { "naplata.mk", true },
+ { "nappynko.com", true },
+ { "naradiebosch.sk", true },
+ { "naradiehusqvarna.sk", true },
+ { "naradiemakita.sk", true },
{ "narakenkoland.net", true },
{ "naralogics.com", true },
{ "narardetval.se", true },
{ "narazaka.net", true },
- { "narduin.xyz", true },
- { "narenderchopra.com", true },
{ "narfation.org", true },
{ "nargele.eu", true },
{ "nargileh.nl", true },
{ "naric.com", true },
{ "narindal.ch", true },
- { "narmos.ch", true },
{ "naro.se", true },
{ "narodniki.com", true },
- { "narodsovety.ru", true },
{ "naroska.name", true },
{ "narrativasdigitais.pt", true },
{ "narrative.network", true },
@@ -27520,33 +30365,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "narthollis.net", false },
{ "nasbi.pl", true },
{ "nasbnation.com", false },
- { "nascio.org", true },
{ "naseehah.ga", true },
{ "nashdistribution.com", true },
- { "nashikmatka.com", true },
+ { "nashikmatka.com", false },
{ "nashira.cz", true },
+ { "nashuaradiology.com", true },
{ "nashvillebasements.com", true },
{ "nashvillelidsurgery.com", true },
{ "nashzhou.me", true },
- { "nasosvdom.com.ua", true },
{ "nasr.mobi", true },
{ "nasrsolar.com", true },
+ { "nasserver-test.de", true },
{ "nastoletni.pl", true },
{ "nataldigital.com", true },
{ "nataliedawnhanson.com", true },
{ "natation-nsh.com", false },
{ "natchmatch.com", true },
+ { "nateandxtina.wedding", true },
{ "natecraun.net", false },
+ { "natehobi.com", true },
+ { "natenom.com", true },
+ { "natenom.de", true },
+ { "natenom.name", true },
+ { "natevolker.com", true },
{ "natgeofreshwater.com", true },
{ "nathaliebaron.ch", true },
{ "nathaliebaroncoaching.ch", true },
{ "nathaliedijkxhoorn.com", true },
{ "nathaliedijkxhoorn.nl", true },
- { "nathan.io", true },
- { "nathan.ovh", true },
{ "nathanaeldawe.com", true },
{ "nathancheek.com", false },
- { "nathankonopinski.com", true },
{ "nathanmfarrugia.com", true },
{ "nathansmetana.com", true },
{ "nation-contracting.com.hk", true },
@@ -27559,20 +30407,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nationalmap.gov", true },
{ "nationalpassportservice.info", true },
{ "nationalpriorities.org", true },
+ { "nationalresourcedirectory.gov", true },
+ { "nationalservice.gov", 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 },
+ { "nattiam.com", true },
{ "natuerlichabnehmen.ch", true },
{ "natur.com", true },
{ "natura-sense.com", true },
{ "naturalezafengshui.com", true },
{ "naturalfit.co.uk", true },
- { "naturalhealthcures.net", false },
+ { "naturalhealthcures.net", true },
{ "naturalkitchen.co.uk", true },
{ "naturalspacesdomes.com", true },
{ "naturaum.de", true },
@@ -27590,7 +30440,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "natverkstekniker.se", true },
{ "naude.co", true },
{ "naughty.audio", true },
- { "naughtytoy.co.uk", true },
{ "nauris.fi", true },
{ "nausicaahotel.it", true },
{ "naut.ca", true },
@@ -27600,7 +30449,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "navdeep.ca", true },
{ "navienna.com", true },
{ "navient.com", true },
- { "navigate-it-services.de", false },
+ { "navigator.ca", true },
+ { "navitime.me", true },
{ "navstevnik.sk", true },
{ "navycs.com", true },
{ "nawir.de", true },
@@ -27609,12 +30459,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nayanaas.com", true },
{ "nayr.us", true },
{ "nazevfirmy.cz", true },
+ { "nazimogluinsaat.com", true },
{ "nazukebanashi.com", true },
{ "nazuna.blue", true },
{ "nb.zone", true },
{ "nb01.com", true },
{ "nb6.de", true },
{ "nba-2k.com", true },
+ { "nba-croatia.com", true },
{ "nba.christmas", true },
{ "nba.com.de", true },
{ "nba.de.com", true },
@@ -27666,18 +30518,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nbavc.com", true },
{ "nbavg.com", true },
{ "nbayouxi.com", true },
- { "nbgrooves.de", true },
{ "nbhorsetraining.com", true },
{ "nbib.gov", true },
{ "nbnnetwork.com", true },
- { "nbrain.de", true },
{ "nbrii.com", true },
{ "nbriresearch.com", true },
{ "nbur.co.uk", true },
{ "nc-beautypro.fr", true },
{ "nc-formation.fr", true },
- { "nc-network.io", true },
- { "nc99.co", true },
+ { "nca.ink", true },
{ "ncamarquee.co.uk", true },
{ "ncands.net", true },
{ "ncarmine.com", true },
@@ -27687,15 +30536,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nccemail.net", true },
{ "ncdc.pt", true },
{ "ncea.net.au", true },
- { "ncgt.se", true },
+ { "nch.link", true },
{ "nchangfong.com", true },
{ "nchponline.org", true },
- { "ncic.gg", true },
{ "ncjrs.gov", true },
{ "ncloud.freeddns.org", true },
- { "ncm-malerbetrieb.de", true },
+ { "ncpimd001.spdns.de", true },
{ "ncsc.gov.uk", true },
- { "ncsccs.com", true },
{ "ncstep.org", true },
{ "nctx.co.uk", true },
{ "ncua.gov", true },
@@ -27713,11 +30560,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ndpigskin.com", true },
{ "nds-helicopter.de", true },
{ "ndum.ch", true },
+ { "ndvr.com", true },
+ { "ndx.ee", true },
{ "ndy.sex", true },
{ "ne-on.org", true },
{ "nea.gov", true },
{ "nearby.in.th", true },
{ "neartothesky.com", true },
+ { "neasahourigan.com", true },
{ "neatous.cz", true },
{ "neatous.net", true },
{ "neatzy.co.uk", true },
@@ -27726,28 +30576,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nebelhauch.de", true },
{ "nebelheim.de", true },
{ "nebenbeiblog.ch", true },
+ { "nebl.cash", true },
{ "nebra.io", true },
{ "nebul.at", true },
{ "nebula.exchange", true },
{ "nebulae.co", true },
- { "nebuluxcapital.com", true },
+ { "nebuso.com", true },
{ "necessaryandproportionate.net", true },
{ "necessaryandproportionate.org", true },
- { "nechiactua.com", true },
+ { "neckbeard.xyz", true },
{ "necormansir.com", true },
{ "nectarleaf.com", true },
+ { "nectir-staging.com", true },
+ { "nectir.co", true },
{ "nedcdata.org", true },
+ { "nederdraad.org", true },
{ "nederland.media", true },
{ "nederlands-vastgoedfonds.nl", true },
{ "nedim-accueil.fr", true },
{ "nedlinin.com", true },
{ "nedraconsult.ru", true },
+ { "nedzadalibegovic.com", true },
{ "neecist.org", true },
{ "needemand.com", true },
{ "needstyle.ru", true },
{ "neeerd.org", true },
{ "neel.ch", true },
{ "neemzy.org", true },
+ { "neev.tech", true },
{ "nefertitis.cz", true },
{ "neffat.si", true },
{ "neflabs.com", true },
@@ -27755,7 +30611,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "neftis.es", true },
{ "neg9.org", false },
{ "negai.moe", true },
+ { "negativecurvature.net", true },
{ "neglecteddiseases.gov", true },
+ { "negril.com", true },
{ "neheim-huesten.de", true },
{ "nehoupat.cz", true },
{ "nehrp.gov", true },
@@ -27767,30 +30625,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "neillans.co.uk", true },
{ "neillans.com", true },
{ "neilwynne.com", true },
- { "neio.uk", true },
{ "nejenpneu.cz", true },
{ "nejlevnejsi-parapety.cz", true },
{ "neko-nyan-nuko.com", true },
- { "neko-nyan.org", true },
{ "nekodex.net", true },
- { "nekolove.jp", true },
{ "nekomimi.pl", true },
{ "nekomimirouter.com", true },
+ { "nekorektni.cz", true },
{ "nekosc.com", true },
{ "nekowa.moe", true },
+ { "nekox.ml", true },
{ "nekusoul.de", true },
+ { "nelflex.com.br", true },
{ "nelhage.com", true },
- { "nemcd.com", true },
- { "nemez.net", true },
+ { "nemcd.com", false },
+ { "nemiroth.net", true },
{ "nemo.run", true },
{ "nemopan.com", true },
{ "nemopret.dk", true },
{ "nemplex.com", true },
{ "nemplex.win", false },
{ "nems.no", true },
+ { "nemumu.com", true },
{ "nemunai.re", true },
+ { "nengzhen.com.cn", true },
{ "nenkin-kikin.jp", true },
{ "neno.io", true },
+ { "neo2k.dk", true },
{ "neo2shyalien.eu", false },
{ "neobits.nl", true },
{ "neocities.org", true },
@@ -27798,7 +30659,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "neodigital.bg", true },
{ "neodrive.ch", true },
{ "neoedresources.org", true },
- { "neohu.com", true },
{ "neojo.org", true },
{ "neolaudia.es", true },
{ "neonataleducationalresources.org", true },
@@ -27808,6 +30668,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "neophilus.net", true },
{ "neos.co.jp", true },
{ "neosdesignstudio.co.uk", true },
+ { "neosey.com", true },
{ "neostralis.com", true },
{ "neotiv.com", true },
{ "neowin.net", true },
@@ -27818,6 +30679,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nepal-evolution.org", true },
{ "nepezzano13.com", true },
{ "nephelion.org", true },
+ { "nephology.net.au", true },
{ "nephy.jp", true },
{ "nepovolenainternetovahazardnihra.cz", true },
{ "nepremicninar.com", true },
@@ -27825,27 +30687,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nepremicnine.net", true },
{ "nepustil.net", false },
{ "nerdca.st", true },
+ { "nerdherd.fun", true },
{ "nerdhouse.io", true },
{ "nerdmind.de", true },
- { "nerdoutstudios.tv", true },
{ "nerdpol.ch", true },
{ "nerdpol.org", true },
{ "nerdrockshop.co.uk", true },
{ "nerds-gegen-stephan.de", true },
+ { "nerdswithknives.com", true },
{ "nerdtime.de", true },
{ "nerdwallet.com", true },
{ "nerdydev.net", true },
{ "nereustech.com", true },
{ "nerot.eu", true },
{ "nerpa-club.ru", true },
- { "nerull7.info", true },
+ { "nerv.com.au", true },
{ "nerven.se", true },
- { "nesbase.com", true },
{ "nesolabs.com", true },
{ "nesolabs.de", true },
{ "nestedquotes.ca", false },
{ "nestor.nu", true },
{ "neswec.org.uk", true },
+ { "net-combo-ja.com", true },
{ "net-safe.info", true },
{ "net-share.de", true },
{ "net4visions.at", true },
@@ -27864,21 +30727,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "netchameleon.com", true },
{ "netconnect.at", true },
{ "netcoolusers.org", true },
+ { "netd.at", true },
{ "netdex.co", true },
{ "netera.se", true },
{ "neteraser.de", true },
+ { "netexpat.com", true },
{ "netfabb.com", true },
{ "netfeeds.eu", true },
{ "netflixlife.com", true },
{ "netfog.de", true },
+ { "netframe.net", true },
{ "netfuture.ch", true },
- { "netfxharmonics.com", true },
{ "nethack.ninja", true },
{ "nethackwiki.com", true },
{ "nethask.ru", true },
{ "nethostingtalk.com", true },
- { "nethruster.com", true },
{ "nethunter.top", true },
+ { "netid.de", true },
{ "netki.com", true },
{ "netlentes.com.br", true },
{ "netlocal.ru", true },
@@ -27893,7 +30758,6 @@ 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 },
@@ -27901,9 +30765,11 @@ 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 },
+ { "nettgiro.no", true },
{ "nettia.fi", true },
{ "nettilamppu.fi", true },
{ "netto-service.ch", true },
@@ -27912,9 +30778,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "netube.org", true },
{ "netvizura.co.uk", true },
{ "netvpn.ml", true },
+ { "netwaf.com", true },
{ "netwarc.eu", true },
{ "netwarc.nl", true },
{ "netweaver.uk", true },
+ { "networg.com", true },
+ { "networg.cz", true },
+ { "networg.pl", true },
{ "network-midlands.co.uk", true },
{ "network-midlands.uk", true },
{ "network-notes.com", true },
@@ -27924,24 +30794,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "networking4all.com", true },
{ "networkingnexus.net", true },
{ "networkingphoenix.com", true },
- { "networkmas.com", true },
+ { "networkmas.com", false },
{ "networkmidlands.co.uk", true },
{ "networkmidlands.uk", true },
{ "networkmon.net", true },
+ { "networkofarts.com", true },
{ "networkposting.com", true },
{ "netz-yokohama.co.jp", true },
{ "netzfabrik.com", true },
{ "netzfrauen.org", true },
+ { "netzklad.de", true },
{ "netzona.org", true },
{ "netzwerkwerk.de", true },
+ { "neuber.uno", true },
{ "neuflizeobc.net", true },
{ "neurabyte.com", true },
{ "neurexcellence.com", true },
{ "neurobiology.com", true },
{ "neurochip.com", true },
{ "neurocny.cloud", true },
- { "neuroethics.com", true },
{ "neurolab.no", true },
+ { "neuronus.com.br", true },
+ { "neuropatia-periferica.com", true },
{ "neuropharmacology.com", true },
{ "neurostimtms.com", true },
{ "neurotransmitter.net", true },
@@ -27950,7 +30824,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "neutralox.com", true },
{ "neuwal.com", true },
{ "neva.li", true },
- { "nevalogic.com", true },
{ "never.pet", true },
{ "nevergreen.io", true },
{ "nevermore.fi", true },
@@ -27987,16 +30860,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "newcitystudio.ch", true },
{ "newcloudwhodis.com", true },
{ "newday.host", true },
+ { "newdimensioninterlock.com", true },
{ "newearth.press", true },
+ { "newenglandworkinjury.com", true },
{ "newfangledscoop.com", true },
{ "newfiepedia.ca", true },
+ { "newflavor.design", true },
+ { "newflora.ru", true },
{ "newfoundland-labradorflora.ca", true },
{ "newgrowbook.com", true },
{ "newguidance.ch", true },
- { "newhoperailroad.com", true },
{ "newind.info", true },
+ { "newinf.at", true },
+ { "newinternet.media", true },
{ "newizv.ru", true },
- { "newjianzhi.com", true },
{ "newkaliningrad.ru", true },
{ "newknd.com", true },
{ "newlifeband.de", true },
@@ -28005,54 +30882,60 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "newmed.com.br", true },
{ "newmediaone.net", true },
{ "newmelalife.com", true },
- { "newmovements.net", true },
{ "newmusicjackson.org", true },
{ "newodesign.com", true },
{ "newposts.ru", true },
{ "newreleases.io", true },
+ { "news47ell.com", true },
{ "newsgroups.io", true },
{ "newsletteralerts.com", true },
{ "newsmotor.info", true },
+ { "newspiritfilms.com", true },
{ "newspsychology.com", true },
{ "newstone-tech.com", true },
{ "newsyslog.org", true },
{ "newtonproject.org", true },
{ "newtrackon.com", true },
{ "newvehicle.com", true },
+ { "newyorkcoffeejobs.com", true },
{ "nex.li", true },
{ "nex.sx", true },
{ "nexd.com", true },
+ { "nexgeneration-solutions.com", true },
{ "nexicafiles.com", true },
+ { "next-idea.co", true },
{ "next-taxi.ru", false },
{ "next-web.ad.jp", true },
{ "next176.sk", true },
{ "next24.io", true },
- { "nextads.ch", true },
{ "nextbranders.com", true },
{ "nextcairn.com", true },
{ "nextcasino.com", true },
{ "nextcloud-miyamoto.spdns.org", true },
- { "nextcloud.co.za", true },
+ { "nextcloud.at", true },
{ "nextcloud.com", true },
- { "nextcloud.li", true },
+ { "nextcloud.de", true },
+ { "nextcloud.li", false },
{ "nextcloud.nerdpol.ovh", true },
+ { "nextcloud.org", true },
{ "nextclouddarwinkel.nl", true },
+ { "nextcom.digital", true },
{ "nexter.cloud", true },
{ "nextevolution.co.uk", true },
{ "nextgen.sk", true },
- { "nextgencel.com", true },
{ "nextgenthemes.com", true },
{ "nextgreatmess.com", true },
- { "nexthop.co.jp", true },
- { "nexthop.jp", true },
{ "nextiot.de", true },
+ { "nextiva.com", true },
+ { "nextlevel-it.co.uk", true },
{ "nextmbta.com", true },
{ "nextme.se", true },
{ "nextnely.com", true },
{ "nextnowagency.com", true },
+ { "nextos.com", true },
+ { "nextrec.site", true },
{ "nextrobotics.de", true },
{ "nextstep-labs.gr", true },
- { "nexttv.co.il", true },
{ "nextwab.com", true },
{ "nexus-exit.de", true },
{ "nexusconnectinternational.eu", true },
@@ -28061,17 +30944,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "neyer-lorenz.de", true },
{ "nezrouge-est-vaudois.ch", true },
{ "nezrouge-geneve.ch", true },
- { "nf4.net", true },
{ "nf9q.com", true },
{ "nfam.de", true },
{ "nfe-elektro.de", true },
{ "nfir.nl", true },
- { "nfl.dedyn.io", true },
- { "nfl.duckdns.org", true },
{ "nflchan.org", true },
{ "nflmocks.com", true },
- { "nfls.io", true },
- { "nflsic.org", true },
{ "nfpors.gov", true },
{ "nframe.io", true },
{ "nfsec.pl", true },
@@ -28081,18 +30959,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ngc.gov", false },
{ "nghe.net", true },
{ "ngi.eu", true },
+ { "nginxconfig.com", true },
{ "nginxconfig.io", true },
- { "ngndn.jp", true },
+ { "ngojclee.com", true },
+ { "ngospelmedia.net", true },
{ "ngt.gr", true },
{ "nguyencucthanh.com", true },
- { "nguyenminhhung.com", true },
+ { "nguyenhongson.me", true },
+ { "nguyenminhhung.com", false },
{ "ngvf.de", true },
{ "ngx.hk", true },
{ "ngxpkg.com", true },
+ { "nhakhoangocanh.net", true },
{ "nhchalton.com", true },
{ "nhdsilentheroes.org", true },
{ "nhgteam.hu", true },
+ { "nhhoteljobs.nl", true },
{ "nhimf.org", true },
+ { "nhnieuws.nl", true },
{ "nhome.ba", true },
{ "nhsolutions.be", true },
{ "nhw.ovh", true },
@@ -28105,38 +30989,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "niagaraschoice.org", true },
{ "nibb13.tech", true },
{ "nibo.blog", true },
+ { "nibouw.nl", true },
{ "nic.goog", true },
{ "nic.gov", true },
{ "nic.how", true },
{ "nic.soy", true },
{ "nic.xn--q9jyb4c", true },
{ "nice.ch", true },
- { "nice.im", true },
+ { "niceb5y.net", true },
{ "niceguyit.biz", true },
{ "nicesco.re", true },
{ "nicesleepo.com", true },
{ "nicestudio.co.il", false },
+ { "nichi.co", true },
{ "nichijou.com", true },
{ "nicholasperkins.io", true },
{ "nicholaspruss.com", true },
{ "nicholasquigley.com", true },
+ { "nicholasruddick.com", true },
{ "nicholaswilliams.net", true },
{ "nichteinschalten.de", false },
{ "nichthelfer.de", true },
{ "nicic.gov", true },
{ "nickcraver.com", true },
- { "nickdekruijk.nl", true },
+ { "nickfrost.rocks", true },
{ "nickguyver.com", true },
{ "nickhitch.co.uk", true },
{ "nickloose.de", true },
- { "nicklord.com", true },
- { "nickmertin.ca", true },
+ { "nickmchardy.com", true },
{ "nickmorri.com", true },
{ "nickmorris.name", true },
{ "nickplotnek.co.uk", true },
{ "nickrickard.co.uk", true },
{ "nicks-autos.com", true },
- { "nickscomputers.nl", true },
{ "nickserve.com", true },
{ "nickstories.de", true },
{ "nicktheitguy.com", true },
@@ -28145,16 +31030,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nico.st", true },
{ "nicochinese.com", true },
{ "nicocourts.com", true },
+ { "nicogrosser.de", true },
{ "nicoknibbe.nl", true },
{ "nicoladixonrealestate.com", true },
{ "nicolaiteglskov.dk", true },
{ "nicolajanedesigns.co.uk", true },
+ { "nicolaottomano.it", true },
{ "nicolas-dumermuth.com", true },
{ "nicolas-hoffmann.net", true },
{ "nicolas-hoizey.com", true },
+ { "nicolas-simond.ch", true },
{ "nicolas-simond.com", true },
{ "nicolasfriedli.ch", true },
- { "nicolashess.de", true },
{ "nicolasiung.me", true },
{ "nicolaszambetti.ch", true },
{ "nicolaw.uk", true },
@@ -28162,14 +31049,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "niconico.ooo", true },
{ "niconode.com", false },
{ "nicoobook.com", true },
- { "nicoobook.net", true },
{ "nicsezcheckfbi.gov", true },
{ "nicul.in", true },
{ "nidro.de", true },
{ "nidsuber.ch", true },
{ "niederohmig.de", true },
{ "niehage.name", true },
- { "niemaler.de", true },
{ "nien.cf", true },
{ "nien.co", true },
{ "nien.com", true },
@@ -28180,9 +31065,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nienkeslop.nl", true },
{ "nierenpraxis-dr-merkel.de", true },
{ "nierenpraxis-merkel.de", true },
+ { "niers.land", true },
{ "nieselregen.com", true },
{ "niess.space", true },
{ "niesstar.com", true },
+ { "nietmvwoensel.com", true },
{ "nietzsche.com", true },
{ "nieuwsberichten.eu", true },
{ "nieuwslagmaat.nl", true },
@@ -28197,26 +31084,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "night2stay.de", true },
{ "night2stay.fr", true },
{ "night2stay.ru", true },
- { "nightbutterflies.com", true },
{ "nightfirec.at", true },
- { "nightfirecat.com", true },
- { "nightmoose.org", true },
{ "nightsi.de", true },
{ "nightstand.io", true },
- { "nihilistan.tk", true },
{ "nihon-no-sake.net", true },
{ "nihtek.in", true },
- { "nii2.org", true },
{ "nij.gov", true },
{ "nijiero-ch.com", false },
{ "nijikata.com", true },
{ "nijm.nl", true },
{ "nikandcara.com", true },
{ "nikao-tech.com", true },
- { "nikavandenbos.nl", true },
{ "nikimix.com", true },
+ { "nikitashevchenko.com", true },
{ "nikkasystems.com", true },
{ "nikkila.me", true },
+ { "nikklassen.ca", true },
{ "niklas.pw", true },
{ "niklasbabel.com", true },
{ "nikolainevalainen.fi", true },
@@ -28228,11 +31111,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nikonschool.co.uk", true },
{ "nikpool.com", true },
{ "niktok.com", true },
+ { "nikunjcementarticles.com", true },
{ "nil.gs", true },
{ "nil.mx", true },
{ "niles.xyz", true },
{ "nilgirispice.co.uk", true },
{ "niloxy.com", true },
+ { "nim-news.com", true },
+ { "nimbo.com.au", true },
{ "nimeshjm.com", true },
{ "nimidam.com", true },
{ "nina-laaf.de", true },
@@ -28244,7 +31130,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ninepints.co", true },
{ "ninesix.cc", true },
{ "ninespec.com", true },
- { "ninetailed.ninja", false },
{ "ninetaillabs.com", true },
{ "ninetaillabs.xyz", true },
{ "ninfora.com", true },
@@ -28261,26 +31146,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ninth.cat", true },
{ "ninthfloor.org", true },
{ "ninverse.com", true },
+ { "niourk.com", true },
{ "nipax.cz", true },
{ "nipe-systems.de", true },
{ "nipit.biz", true },
+ { "nippangift.com", true },
+ { "nipplefucking.com", true },
{ "nippon-oku.com", true },
- { "nippon.fr", true },
{ "niqex.com", true },
+ { "nirhub.ru", true },
{ "nirjonmela.com", true },
{ "nirjonmela.net", true },
{ "nirudo.me", true },
+ { "nirvanashop.com", true },
{ "niscats.com", true },
+ { "nishimebistro.cz", true },
{ "nissanofbismarckparts.com", true },
{ "nitifilter.com", true },
{ "nitrix.me", true },
{ "nitrohorse.com", false },
{ "nitrokey.com", true },
+ { "nitropanel.com", true },
{ "nitropur.com", true },
{ "nitropur.de", true },
{ "nitrous-networks.com", true },
{ "nitschinger.at", true },
{ "niu.moe", true },
+ { "niumactive.it", true },
+ { "nivelul2.ro", true },
+ { "nixnet.xyz", true },
{ "nixonlibrary.gov", true },
{ "nixx-gel.cz", true },
{ "niyawe.de", true },
@@ -28294,25 +31188,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nkapliev.org", true },
{ "nkforum.pl", true },
{ "nkinka.de", true },
- { "nkp-media.de", true },
{ "nl-ix.net", true },
{ "nl.search.yahoo.com", false },
{ "nl3ehv.nl", true },
{ "nlap.ca", false },
{ "nlbewustgezond.nl", true },
{ "nlegall.fr", true },
- { "nlfant.eu", true },
{ "nllboard.co.uk", true },
{ "nlleisure.co.uk", true },
{ "nlm.gov", true },
{ "nlt.by", false },
+ { "nmd.so", true },
{ "nmmlp.org", true },
{ "nmnd.de", true },
{ "nmontag.com", true },
- { "nmsinusdoc.com", true },
{ "nn.cz", true },
+ { "nn5197.co", true },
+ { "nn6729.co", true },
+ { "nn6729.com", true },
+ { "nn6957.co", true },
+ { "nn9297.co", true },
+ { "nn9397.com", true },
+ { "nn9721.com", true },
+ { "nn9728.co", true },
{ "nna774.net", true },
- { "nnqc.nl", true },
{ "no-ip.cz", true },
{ "no-xice.com", true },
{ "no.search.yahoo.com", false },
@@ -28323,6 +31222,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "noahsaso.com", true },
{ "noahwitt.me", true },
{ "nob.ro", true },
+ { "nobilefoods.com", true },
{ "nobitakun.com", true },
{ "nobledust.com", true },
{ "nobleparkapartments.com.au", true },
@@ -28330,17 +31230,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "noc.org", true },
{ "nocit.dk", true },
{ "nocks.com", true },
+ { "noclegiwchecinach.pl", true },
{ "nocmd.com", true },
{ "nodecdn.net", true },
{ "nodecraft.com", true },
+ { "nodeedge.com", true },
+ { "nodeflame.com", true },
{ "nodejs.de", true },
{ "nodelab-it.de", true },
- { "nodelia.com", true },
{ "nodesec.cc", true },
- { "nodesonic.com", true },
{ "nodespin.com", true },
{ "nodevops.com", true },
- { "nodist.club", true },
{ "noeatnosleep.me", true },
{ "noedidacticos.com", true },
{ "noelclaremont.com", true },
@@ -28349,7 +31249,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "noematic.space", true },
{ "noemax.com", true },
{ "noexec.org", true },
- { "noez.de", true },
{ "nofrillsdns.com", true },
{ "nogerondier.eu", true },
{ "nogetime.com", true },
@@ -28360,17 +31259,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nohttps.org", true },
{ "nohup.se", true },
{ "nohup.xyz", true },
+ { "noiglosujemy.com.pl", true },
+ { "noiglosujemy.pl", true },
{ "noima.com", true },
{ "noincludesubdomains.preloaded.test", false },
{ "noise.agency", true },
- { "noisetor.net", true },
{ "noisetrap.cz", true },
{ "noisky.cn", true },
{ "noisyfox.cn", true },
- { "nojobook.com", true },
{ "nokono.com", true },
{ "nolaviz.org", true },
{ "noleggio-bagni-chimici.it", true },
+ { "noleggiobagnichimici.perugia.it", true },
+ { "noleggioimbarcazioni.it", true },
{ "noleggiolimousine.roma.it", true },
{ "noma-film.com", true },
{ "nomadproject.io", true },
@@ -28388,8 +31289,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nonx.pro", true },
{ "noob-box.net", true },
{ "noobow.me", true },
+ { "noobsunited.de", true },
{ "noobunbox.net", true },
- { "noodles.net.nz", true },
+ { "noodles.net.nz", false },
{ "noodplan.co.za", true },
{ "noodweer.be", true },
{ "noofficewalls.com", true },
@@ -28408,21 +31310,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "noovell.com", true },
{ "nopaste.xyz", true },
{ "nopaynocure.com", true },
+ { "nophelet.com", true },
{ "norad.sytes.net", true },
+ { "noradevot.com", true },
{ "norbertschneider-music.com", true },
{ "nord-restaurant-bar.de", true },
{ "nord-sud.be", true },
- { "nordakademie.de", true },
+ { "nordfinck.de", true },
{ "nordicirc.com", true },
{ "nordinfo.fi", true },
{ "nordlichter-brv.de", true },
{ "nordmoregatebilklubb.com", true },
{ "nordnetz-hamburg.de", true },
{ "nordseeblicke.de", true },
+ { "nordstromheating.com", true },
+ { "nordwal.de", true },
{ "nordwaldzendo.de", true },
{ "noreply.mx", true },
{ "norestfortheweekend.com", true },
{ "noret.com", true },
+ { "norfolkgardencare.co.uk", true },
{ "norichanmama.com", true },
{ "noriel.ro", true },
{ "normaculta.com.br", true },
@@ -28430,7 +31337,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "normanbauer.com", true },
{ "normandgascon.com", true },
{ "normankranich.de", true },
+ { "normantobar.com", true },
+ { "norml.fr", true },
{ "noroshi-burger.com", true },
+ { "norrlandsbilverkstad.se", true },
{ "norrliden.de", true },
{ "norsewars.com", true },
{ "norskpensjon.no", true },
@@ -28450,7 +31360,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "northern-lakes.com", true },
{ "northerngate.net", true },
{ "northernhamsterclub.com", true },
- { "northernpage.com", true },
{ "northernpowertrain.com", true },
{ "northernselfstorage.co.za", true },
{ "northfieldyarn.com", true },
@@ -28459,20 +31368,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "northpole.dance", true },
{ "northpost.is", true },
{ "northridgeelectrical.com", true },
+ { "northtexasvasectomy.com", true },
{ "northumbriagames.co.uk", true },
- { "norys-escape.de", true },
{ "nos-medias.fr", true },
{ "nos-oignons.net", true },
{ "noscript.net", true },
{ "noscura.nl", true },
+ { "noseastumismo.com", true },
{ "nosecrets.ch", true },
{ "noslite.nl", true },
- { "nospoint.cz", true },
{ "nosqlzoo.net", true },
{ "nossasenhora.net", true },
{ "nossasenhoradodesterro.com.br", true },
+ { "nostalgimidi.se", true },
{ "nostraforma.com", false },
- { "nosuch.blog", true },
{ "nosuch.site", true },
{ "nosuch.website", true },
{ "noswap.com", true },
@@ -28486,41 +31395,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "notar-glagowski.de", true },
{ "notar-peikert.com", true },
{ "notare-marktplatz24.info", true },
+ { "notariusz-bialystok.com", true },
{ "notarkrauss.de", true },
- { "notarvysocina.cz", true },
{ "notcompletelycorrect.com", true },
+ { "noteboat.net", true },
{ "notepad.nz", true },
+ { "noteshare.net", true },
{ "noteshare.online", true },
{ "noteskeeper.ru", true },
{ "nothing.net.nz", true },
+ { "nothingprivate.ml", true },
{ "noticaballos.com", true },
{ "noticiasdehumor.com", true },
+ { "noticiasdetv.com", true },
{ "notify.moe", true },
{ "notigatos.es", true },
{ "notilus.fr", true },
- { "notinglife.com", true },
{ "notjustvacs.com", true },
{ "notmybox.com", true },
{ "notnize.net", true },
{ "notnl.com", true },
{ "notofilia.com", true },
{ "notora.tech", true },
- { "notoriousdev.com", true },
{ "nototema.com", true },
{ "notsafefor.work", true },
{ "nottres.com", true },
{ "noudjalink.nl", true },
{ "nourishandnestle.com", true },
{ "noustique.com", true },
+ { "nousyukum.com", true },
{ "nova-dess.ch", true },
{ "nova-it.pl", true },
{ "nova-kultura.org", true },
{ "nova-wd.org.uk", true },
+ { "nova.com.hk", true },
{ "nova.live", true },
{ "novabench.com", true },
+ { "novacal.ga", true },
{ "novacoast.com", false },
{ "novadermis.es", true },
{ "novafreixo.pt", true },
+ { "novaiguacu.net.br", true },
{ "novascan.net", true },
{ "novawave.ca", true },
{ "nove.city", true },
@@ -28534,30 +31449,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "novelfeed.com", true },
{ "novelinglife.net", true },
{ "novelvyretraite.fr", true },
+ { "novema.jp", true },
{ "novengi.mu", true },
{ "novfishing.ru", true },
{ "novgorod-avia.ru", true },
{ "novilaw.com", true },
{ "novilidery.com", true },
+ { "novinhabucetuda.com", true },
{ "novinivo.com", true },
- { "novodiegomaia.com.br", true },
{ "novojet.cl", true },
{ "novoresume.com", false },
{ "novosibavia.ru", true },
{ "novurania.com", true },
- { "nowall.online", true },
+ { "nowarning.cc", true },
{ "nowhere.dk", true },
- { "nowitzki.me", true },
{ "nowitzki.network", true },
{ "nowlas.org", true },
{ "nowloading.co", true },
{ "nowzuwan.org", false },
{ "noxlogic.nl", true },
{ "noxx.global", true },
- { "noydeen.com", true },
+ { "noxx.solutions", true },
{ "noyocenter.org", true },
{ "np-edv.at", true },
{ "np.search.yahoo.com", false },
+ { "np39.de", true },
{ "npath.de", true },
{ "npbeta.com", true },
{ "npcrcss.org", true },
@@ -28566,22 +31482,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "npregion.org", true },
{ "npsas.org", true },
{ "npw.net", true },
- { "nqesh.com", true },
{ "nqeshreviewer.com", true },
+ { "nrd.gov", true },
{ "nrd.li", true },
- { "nrdstd.io", true },
{ "nrev.ch", true },
+ { "nriol.net", true },
{ "nrkn.fr", true },
{ "nrsmart.com", true },
{ "nrsweb.org", true },
{ "nrvn.cc", false },
{ "ns-frontier.com", true },
{ "ns2servers.pw", true },
- { "nsa.lol", true },
{ "nsa.ovh", true },
+ { "nsadns.uk", true },
{ "nsapwn.com", true },
{ "nsboston.org", true },
- { "nsboutique.com", true },
{ "nscnet.jp", true },
{ "nsfw-story.com", true },
{ "nshipster.cn", true },
@@ -28590,43 +31505,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nshipster.es", true },
{ "nsm.ee", true },
{ "nsm.stat.no", true },
+ { "nsnsp.org", true },
{ "nso.ie", true },
{ "nsofficeinteriors.com", true },
+ { "nsoft.nu", true },
{ "nsp.ua", true },
+ { "nspawn.org", true },
+ { "nsradiology.net", true },
{ "nst-maroc.com", true },
- { "nstatic.xyz", true },
{ "nstd.net", true },
+ { "nstinvoiceqa.com", true },
+ { "nstnet.org", true },
{ "nstremsdoerfer.ovh", true },
{ "nstrust.co.uk", true },
{ "nsworks.com", true },
+ { "nszipline.com", true },
+ { "nt-catala.com", true },
{ "ntags.org", true },
- { "ntcoss.org.au", true },
+ { "ntcp.ph", true },
{ "nte.email", true },
- { "nth.sh", true },
{ "nti.de", true },
{ "ntia.gov", true },
{ "ntlabs.org", true },
{ "ntotten.com", true },
{ "ntppool.org", false },
{ "ntsb.gov", true },
- { "ntut.net", true },
{ "ntwt.us", true },
{ "ntx360grad-fallakte.de", true },
{ "ntzwrk.org", true },
{ "nu3tion.com", true },
{ "nu3tion.cz", true },
{ "nuacht.ie", true },
+ { "nualgiponds.com", true },
{ "nuamooreaindonesia.com", true },
- { "nubu.at", true },
{ "nuclea.id", true },
- { "nuclea.site", true },
{ "nuclearcat.com", true },
- { "nucleuscore.org", true },
+ { "nucleosynth.space", true },
+ { "nudes.ovh", true },
{ "nudevotion.com", true },
+ { "nudge.ai", true },
{ "nuel.cl", true },
- { "nuevaimagenpublicidad.es", true },
{ "nuffield.nl", true },
- { "nugdev.co", true },
+ { "nuipogoda.ru", true },
{ "nukleosome.com", true },
{ "null-life.com", true },
{ "nullday.de", true },
@@ -28634,21 +31554,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nullonerror.org", true },
{ "nullpointer.io", true },
{ "nullroute.com", true },
- { "nulltime.net", false },
+ { "nullwebscripts.com", true },
+ { "nullxsec.net", true },
{ "numarasorgulama.tel", true },
{ "numatic.co.uk", true },
- { "number.me", true },
{ "numbercult.net", true },
{ "numbermunchers.net", true },
- { "numberoneshoes.co.nz", false },
+ { "numberoneshoes.co.nz", true },
{ "numberzero.org", true },
{ "numerik-games.ch", true },
{ "numero-aleatorio.com", true },
{ "numero1.ch", true },
{ "numerologist.com", true },
{ "numerossanos.com.ar", true },
- { "numis.tech", true },
{ "numismed-seniorcare.de", true },
+ { "numo.co", true },
{ "numwave.nl", true },
{ "nunesgh.com", true },
{ "nunnenmacher.net", true },
@@ -28662,49 +31582,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nureg.xyz", true },
{ "nuriacamaras.com", true },
{ "nursejj.com", true },
+ { "nursemom.ca", true },
{ "nurseone.ca", true },
+ { "nurseregistry.com", true },
{ "nurses.dating", true },
- { "nursingschool.network", true },
{ "nuryahan.com.br", true },
+ { "nusatrip-api.com", true },
{ "nussadoclub.org", true },
{ "nut.services", true },
{ "nutikell.com", true },
{ "nutleyeducationalfoundation.org", true },
{ "nutleyef.org", true },
- { "nutonic-sports.com", true },
{ "nutpanda.com", true },
{ "nutra-creations.com", true },
{ "nutrafitsuplementos.com.br", true },
{ "nutri-spec.me", true },
+ { "nutricaovegana.com", true },
{ "nutriciametabolics-shop.de", true },
{ "nutridieta.com", true },
{ "nutripedia.gr", true },
{ "nutrishop.com", true },
{ "nutrition.gov", true },
- { "nutrivisa.com.br", true },
+ { "nuttyveg.com", true },
{ "nuvechtdal.nl", true },
{ "nuvini.com", true },
{ "nuvospineandsports.com", true },
{ "nuxer.fr", true },
{ "nv.gw", true },
- { "nve-qatar.com", true },
{ "nvl-game.tokyo", true },
{ "nvq.nl", true },
{ "nvr.bz", true },
{ "nvtc.gov", true },
- { "nwapproval.com", true },
+ { "nwapproval.com", false },
{ "nwautorebuild.com", true },
{ "nwbc.gov", true },
+ { "nwea.nl", true },
{ "nwerc.party", true },
{ "nwgh.org", false },
{ "nwimports.com", true },
{ "nwitt.us", true },
{ "nwk1.com", true },
+ { "nwmd.nl", true },
{ "nwperformanceandoffroad.com", true },
{ "nwra.com", true },
- { "nwshell.com", true },
+ { "nwtrb.gov", true },
{ "nwwc.dk", true },
{ "nwwnetwork.net", true },
+ { "nxcd.com.br", true },
+ { "nxgn.io", true },
{ "nxinfo.ch", true },
{ "nxit.ca", true },
{ "nxth.io", true },
@@ -28713,46 +31638,59 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nyadora.moe", true },
{ "nyan.it", true },
{ "nyan.stream", true },
- { "nyansparkle.com", true },
{ "nyantec.com", true },
{ "nybiz.nyc", true },
+ { "nyconcretelifting.com", true },
{ "nycoyote.org", true },
{ "nydig.com", true },
- { "nyghtus.net", false },
+ { "nydnxs.com", true },
+ { "nyerjachioval.hu", true },
+ { "nyerjenaheraval.hu", 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 },
{ "nyoliveoil.com", true },
{ "nyoronfansubs.org", true },
{ "nyphox.ovh", true },
- { "nys-hk.com", false },
{ "nysis.fr", true },
{ "nysis.net", true },
{ "nysteak5.com", true },
{ "nytrafficticket.com", true },
{ "nyxi.eu", true },
{ "nyyu.tk", true },
+ { "nyzed.com", true },
{ "nzb.cat", false },
+ { "nzbs.com", true },
{ "nzstudy.ac.nz", true },
{ "nzws.me", true },
{ "o-results.ch", true },
{ "o-s.no", true },
{ "o-sp.com", true },
- { "o0o.st", true },
{ "o2careers.co.uk", true },
{ "o3.wf", true },
{ "o3wallet.com", true },
+ { "o5.cx", true },
+ { "o5197.co", true },
+ { "o6729.co", true },
+ { "o6729.com", true },
+ { "o6957.co", true },
{ "o6asan.com", true },
+ { "o9297.co", true },
+ { "o9397.com", true },
+ { "o9721.com", true },
+ { "o9728.co", true },
+ { "oahpmdata.net", true },
{ "oaic.gov.au", true },
{ "oakandresin.co", true },
{ "oakesfam.net", true },
+ { "oakface.club", true },
+ { "oakface.com.au", true },
{ "oakington.info", false },
- { "oaklands.co.za", true },
{ "oakparkelectrical.com", true },
{ "oakparkexteriorlighting.com", true },
{ "oakparklandscapelighting.com", true },
@@ -28761,7 +31699,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oakslighting.co.uk", true },
{ "oaktonhouseandgardens.com", true },
{ "oaktree-realtors.com", true },
- { "oanalista.com.br", true },
+ { "oasiristorantebagno.it", true },
{ "oasisdabeleza.com.br", true },
{ "oasisim.net", false },
{ "oatmealdome.me", true },
@@ -28772,13 +31710,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "obec-krakovany.cz", true },
{ "oberhofdrinks.com", true },
{ "obermeiers.eu", true },
+ { "oberoi.de", true },
{ "obesidadlavega.com", true },
{ "obfuscate.xyz", true },
{ "obg-global.com", true },
{ "obgalslancaster.com", true },
+ { "obgynmiamifl.com", true },
{ "obitech.de", true },
{ "object.earth", true },
{ "objectif-terre.ch", true },
+ { "objectorientedsolutions.com", true },
{ "objekt-textil.ch", true },
{ "oblast45.ru", false },
{ "obligacjekk.pl", true },
@@ -28787,13 +31728,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "obrienswine.ie", true },
{ "obs.group", true },
{ "obscur.us", true },
- { "observer.name", true },
- { "obsessharness.com", true },
{ "obsproject.com", true },
{ "obtima.org", true },
{ "obud.cz", true },
{ "obxlistings.com", true },
{ "obyvateleceska.cz", true },
+ { "obzoroff.info", true },
{ "oc-sa.ch", true },
{ "ocalaflwomenshealth.com", true },
{ "ocarupo.com", true },
@@ -28805,11 +31745,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "occupational-therapy-colleges.com", true },
{ "ocd2016.com", true },
{ "ocdadmin.com", true },
+ { "oceanbreezehomes.com", true },
{ "oceancity4sales.com", true },
{ "oceandns.eu", true },
{ "oceandns.net", true },
{ "oceandns.nl", true },
{ "oceanlord.me", true },
+ { "oceanofapk.com", true },
{ "oceanvisuals.com", true },
{ "ocenovani-inspekce.cz", true },
{ "ocf.io", true },
@@ -28831,8 +31773,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "octagongroup.co", true },
{ "octarineparrot.com", true },
{ "octav.name", false },
+ { "octava.ua", true },
+ { "octaviosimon.com", true },
+ { "octavus.it", true },
{ "octobered.com", true },
{ "octocaptcha.com", true },
+ { "octocat.ninja", true },
{ "octofox.de", true },
{ "octohedralpvp.tk", true },
{ "octolopagon.games", true },
@@ -28844,16 +31790,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "octothorpe.club", true },
{ "octothorpe.ninja", true },
{ "oculus.com", true },
+ { "odden.io", true },
{ "oddmuse.org", true },
{ "oddnumber.ca", true },
{ "oddsandevens.ca", true },
{ "oddsandevensbookkeeping.ca", true },
- { "oddtime.net", true },
+ { "ode.red", true },
{ "odensc.me", true },
{ "odense3dprint.dk", true },
{ "odhosc.ca", true },
{ "odinseye.net", true },
- { "odisealinux.com", true },
+ { "odonti.com", true },
{ "odoo.co.th", true },
{ "odpikedoslike.com", true },
{ "odtu.lu", true },
@@ -28862,7 +31809,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "odysseyofthemind.eu", true },
{ "odzyskaniedomeny.pl", true },
{ "oe-boston.com", true },
- { "oec-music.com", true },
+ { "oe0fcdncxjpdd05b.myfritz.net", true },
+ { "oec-music.com", false },
{ "oeh.ac.at", true },
{ "oeko-bundesfreiwilligendienst-sh.de", true },
{ "oeko-bundesfreiwilligendienst.de", true },
@@ -28874,8 +31822,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oemspace.nl", true },
{ "oemwolf.com", true },
{ "oenings.eu", true },
+ { "oepsbanaan.nl", true },
+ { "oes.org.gt", true },
{ "oessi.eu", true },
- { "of2m.fr", true },
{ "ofcampuslausanne.ch", true },
{ "ofda.gov", true },
{ "ofertasadsl.com", true },
@@ -28885,8 +31834,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "offbyinfinity.com", true },
{ "offenekommune.de", true },
{ "offenes-deutschland.de", true },
+ { "offensity.com", true },
{ "offertegiuste.com", true },
- { "offfbynight.be", true },
{ "offgames.io", true },
{ "offgridauto.com", true },
{ "offgridhub.com", true },
@@ -28905,81 +31854,84 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "offshoot.rentals", true },
{ "offshore.digital", true },
{ "offshoremarineparts.com", false },
+ { "offtopica.uk", true },
{ "ofggolf.com", true },
{ "oflow.me", true },
{ "ofsetas.lt", true },
{ "oftamedic.com", true },
{ "oftn.org", true },
{ "oge.ch", true },
- { "ogkw.de", true },
- { "oglen.ca", true },
{ "ogocare.com", true },
{ "oguya.ch", true },
{ "ogyaa.jp", true },
{ "oh14.de", true },
{ "ohadsoft.com", true },
{ "ohai.su", true },
- { "ohartl.de", true },
{ "ohchouette.com", true },
{ "ohd.dk", true },
{ "oheila.com", true },
+ { "ohentpay.com", true },
{ "ohhere.xyz", true },
{ "ohiohealthfortune100.com", true },
+ { "ohm.sg", true },
+ { "ohm2013.org", true },
{ "ohmayonnaise.com", true },
{ "ohne-name.de", true },
- { "ohnonotme.com", true },
{ "ohol.se", true },
+ { "ohsocool.org", true },
{ "ohsohairy.co.uk", true },
- { "ohyooo.com", true },
{ "oi-wiki.org", true },
- { "oilpaintingsonly.com", true },
- { "oirealtor.com", true },
+ { "oil-ecn.ru", true },
{ "oisd.nl", true },
{ "oita-homes.com", true },
{ "ojaioliveoil.com", true },
{ "ojdip.net", true },
- { "ojomovies.com", true },
{ "ojp.gov", true },
+ { "ok3on.cz", true },
{ "okad-center.de", true },
{ "okad.de", true },
{ "okad.eu", true },
+ { "okada-touki.jp", true },
{ "okaidi.es", true },
{ "okaidi.fr", true },
{ "okakuro.org", true },
- { "okanaganrailtrail.ca", true },
{ "okashi.me", true },
{ "okay.cf", true },
{ "okay.coffee", true },
{ "okaz.de", true },
+ { "okazoo.eu", true },
{ "okburrito.com", true },
- { "okchicas.com", true },
{ "okchousebuyer.com", true },
{ "okeeferanch.ca", true },
{ "okhrana.agency", true },
{ "okib.ca", true },
{ "okin-jp.net", true },
{ "okinawa-mag.net", true },
- { "okmx.cloud", true },
- { "okmx.de", true },
+ { "oklahomafibroids.com", true },
{ "okna-tm.kz", true },
+ { "okonetwork.org.uk", true },
+ { "okoris.net", true },
{ "okotoksbeach.ca", true },
{ "okqubit.net", true },
{ "oksafe-t.org", true },
{ "oktime.cz", true },
{ "oktoberfeststore.nl", true },
{ "oktomus.com", true },
+ { "oku-nara.com", true },
{ "okukan.com.au", true },
{ "okurapictures.com", true },
{ "okusiassociates.com", true },
{ "okviz.com", true },
+ { "okwu.cz", true },
+ { "olafnorge.de", true },
{ "olanderflorist.com", true },
- { "olandiz.com", true },
{ "olasouris.com", true },
{ "olastrafford.org", true },
{ "olback.net", true },
{ "olbat.net", true },
{ "olcayanar.com", true },
{ "olcbrookhaven.org", true },
+ { "oldbrookinflatables.co.uk", true },
{ "oldbrookmarqueehire.co.uk", true },
{ "oldchaphome.nl", true },
{ "older-racer.com", true },
@@ -28988,26 +31940,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oldnews.news", true },
{ "oldno07.com", true },
{ "oldoakflorist.com", true },
+ { "oldonyosafaris.com", true },
{ "oldprop.com", true },
{ "oldroutetwo.com", true },
{ "oldschool-criminal.com", true },
{ "oldsticker.com", true },
{ "oldstmary.com", true },
{ "oldtimerreifen-moeller.de", true },
+ { "oleam.org", true },
{ "olecoin.io", true },
{ "olegon.ru", true },
{ "olegs.be", true },
{ "oleksii.name", true },
+ { "olenergies.com", true },
{ "oleodecopayba.com.br", true },
{ "oles-hundehaus.de", true },
{ "olfnewcastle.com", true },
{ "olfsecane.org", true },
+ { "olgcc.net", true },
{ "olgiati.org", true },
- { "olgui.net", true },
{ "olgun.eu", true },
{ "olhcparish.net", true },
- { "olifant.fr", true },
{ "olightstore.ro", true },
+ { "olitham.com", true },
{ "olivemultispecialist.com", true },
{ "oliveoil.bot", true },
{ "oliveoilschool.org", true },
@@ -29029,7 +31984,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oliviervaillancourt.com", true },
{ "olizeite.ch", true },
{ "ollie.io", true },
- { "ollies.cloud", true },
{ "ollies.cz", true },
{ "olliespage.com", true },
{ "olliespage.net", true },
@@ -29038,14 +31992,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "olltechjob.com", true },
{ "olmari.fi", true },
{ "olmc-nutley.org", true },
+ { "olmcjc.com", true },
{ "olmcnewark.com", true },
+ { "olmik.net", true },
+ { "olmmcc.tk", true },
{ "olmsted.io", true },
+ { "olofsson.cc", true },
{ "olomercy.com", true },
{ "olphseaside.org", true },
{ "olqoa.org", true },
+ { "olschurch.com", true },
{ "olsh-hilltown.com", true },
{ "olsonproperties.com", true },
- { "olygazoo.com", true },
{ "olymp-arts.world", true },
{ "olympeakgaming.tv", true },
{ "olympiads.ca", true },
@@ -29053,12 +32011,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "om.yoga", true },
{ "om1.com", true },
{ "omanko.porn", true },
- { "omarh.net", true },
{ "omegahosting.net", true },
{ "omegarazer.ca", true },
{ "omegathermoproducts.nl", true },
{ "omenprinting.com.au", true },
{ "omeopatiadinamica.it", true },
+ { "omerefe.av.tr", true },
{ "omertabeyond.com", true },
{ "omertabeyond.net", true },
{ "ometepeislandinfo.com", true },
@@ -29073,22 +32031,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "omniasl.com", true },
{ "omniatv.com", true },
{ "omnibot.tv", true },
+ { "omnifurgone.it", true },
+ { "omnigon.network", true },
+ { "omnimoto.it", true },
{ "omnisiens.se", true },
- { "omnisky.dk", true },
{ "omnitrack.org", true },
{ "omniverse.ru", true },
+ { "omny.info", true },
{ "omoide-hitokoto.com", true },
+ { "omorashi.org", true },
{ "omori.ch", true },
{ "omoteura.com", true },
- { "omranic.com", true },
{ "omronwellness.com", true },
{ "omsdieppe.fr", true },
+ { "omskrock.com", true },
{ "on-tech.co.uk", true },
+ { "on.tax", true },
+ { "on2it.net", true },
{ "ona.io", true },
{ "onaboat.se", true },
{ "onahonavi.com", true },
+ { "onair.ovh", true },
{ "onarto.com", true },
{ "onbuzzer.com", false },
+ { "oncalltech.net", true },
{ "onceuponarainbow.co.uk", true },
{ "oncf.asso.fr", true },
{ "oncodedesign.com", true },
@@ -29108,49 +32074,51 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "onebigcow.com", true },
{ "oneclic.ch", true },
{ "onedegreehealth.com", true },
- { "onedot.nl", true },
{ "onedottwelve.co.jp", false },
{ "onedottwelve.com", false },
{ "onedrive.com", true },
{ "onedrive.live.com", false },
{ "onee3.org", true },
- { "onefour.ga", false },
- { "onegoodthingbyjillee.com", true },
+ { "oneearthapp.com", true },
{ "oneheartbali.church", true },
- { "onehost.blue", true },
- { "oneidentity.me", true },
- { "oneiroi.co.uk", true },
+ { "oneindex.tk", true },
+ { "onelinkmmp.net", true },
+ { "onemeter.com", true },
{ "onemid.net", true },
{ "onemoonmedia.de", true },
{ "oneononeonone.de", true },
{ "oneononeonone.tv", true },
{ "onepercentrentals.com", true },
+ { "onepersona.io", true },
{ "onepointsafeband.ca", true },
{ "onepointsafeband.com", true },
{ "onepointzero.com", true },
{ "oneprediction.com", true },
- { "onesearay.com", true },
{ "onesnzeroes.com", true },
{ "onesports.cz", true },
+ { "onestasolar.com", true },
{ "onestepfootcare.com", true },
+ { "onestop-study.com", true },
{ "onestopcastles.co.uk", true },
{ "onetcenter.org", true },
{ "onetcodeconnector.org", true },
- { "onetech.it", true },
{ "onetime.info", true },
{ "onetonline.org", true },
{ "onetouchrevealplus.com", true },
{ "onetwentyseven001.com", true },
+ { "onevpn.com", true },
{ "oneway.ga", true },
{ "onewaymail.com", true },
{ "oneweb.hu", true },
{ "onfarma.it", true },
+ { "ongea.io", true },
{ "ongiaenegogoa.com", true },
{ "onhistory.co.uk", true },
{ "onhub1.com", true },
{ "oni.nl", true },
{ "onice.ch", true },
{ "onionbot.me", true },
+ { "onionplay.eu", true },
{ "onionplay.net", true },
{ "onionscan.org", true },
{ "onionyst.com", true },
@@ -29158,13 +32126,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "onix.eu.com", true },
{ "onixcco.com.br", true },
{ "onkentessegertdij.hu", true },
- { "onkfaktor.de", true },
{ "onlfait.ch", true },
{ "online-backup.se", true },
{ "online-biblio.tk", true },
- { "online-bouwmaterialen.nl", true },
{ "online-calculator.com", true },
- { "online-consulting-corp.com", true },
{ "online-consulting-corp.fr", true },
{ "online-eikaiwa-guide.com", true },
{ "online-health-insurance.com", true },
@@ -29175,46 +32140,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "online-textil.cz", true },
{ "online-textil.sk", true },
{ "online.marketing", true },
+ { "online.swedbank.se", true },
{ "online24.pt", true },
- { "onlinebizdirect.com", false },
{ "onlinecasino.vlaanderen", true },
+ { "onlinecasinobluebook.com", true },
{ "onlinecensorship.org", true },
{ "onlinecollegeessay.com", true },
+ { "onlinedemo.hu", true },
{ "onlinefashion.it", true },
+ { "onlinehaircuts.com", true },
{ "onlinehashfollow.com", true },
{ "onlinekmc.com", true },
{ "onlinelegalmarketing.com", true },
{ "onlinelegalmedia.com", true },
- { "onlinelighting.com.au", true },
{ "onlinemarketingmuscle.com", true },
{ "onlinemarketingtraining.co.uk", true },
{ "onlinepokerspelen.be", true },
+ { "onlineporno.tv", true },
{ "onlineporno.xyz", true },
{ "onlineprofecional.com", true },
{ "onlinerollout.de", true },
+ { "onlinesystem.jp", true },
{ "onlinetextil.cz", true },
{ "onlineth.com", false },
+ { "onlinevisa.ru", true },
+ { "onlineweblearning.com", true },
{ "onlinexl.nl", true },
- { "onlylebanon.net", true },
+ { "onlylibya.com", true },
{ "onmaps.de", true },
{ "onmarketbookbuilds.com", true },
{ "onnaguse.com", true },
+ { "onoranzefunebri.roma.it", true },
+ { "onore.org", true },
{ "onpay.io", true },
{ "onqproductions.com", true },
{ "onrr.gov", true },
{ "ons.ca", true },
{ "onsgenoegen-waz.nl", true },
- { "onshuistrust.co.za", true },
+ { "onsinscrit.com", true },
{ "onspring.com", true },
{ "ontdekhetzelf.nu", true },
{ "onthebriteside.com", true },
{ "ontras.com", false },
- { "ontsc.com", true },
{ "ontservice.com", true },
{ "ontsnappingskamer.nl", true },
{ "onurer.net", true },
{ "onvey.io", true },
{ "onviga.de", true },
+ { "onvisible.website", true },
{ "onvori.com", true },
{ "onvori.de", true },
{ "onvousment.fr", true },
@@ -29223,16 +32196,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "onyxfireinc.com", true },
{ "onyxgen.duckdns.org", true },
{ "onyxmoon.me", true },
+ { "oo5197.co", true },
+ { "oo6729.co", true },
+ { "oo6729.com", true },
+ { "oo6957.co", true },
+ { "oo918.com", true },
+ { "oo9297.co", true },
+ { "oo9397.com", true },
+ { "oo9721.com", true },
+ { "oo9728.co", true },
{ "oodlessoftplay.co.uk", true },
{ "oogami.name", true },
- { "oogartsennet.nl", true },
{ "ooharttemplates.com", true },
{ "oolsa.net", true },
{ "ooonja.de", true },
+ { "oosolutions.nl", true },
{ "ooyo.be", true },
+ { "op3racional.eu", true },
{ "opalesurfcasting.net", true },
{ "oparl.org", true },
+ { "opcare.co.uk", true },
{ "opcenter.de", true },
+ { "opcionpublicitaria.com", true },
{ "opcionpublicitaria.pe", true },
{ "ope.ee", true },
{ "open-banking-access.uk", true },
@@ -29242,8 +32227,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "open-ctp.net", true },
{ "open-ctp.org", true },
{ "open-desk.org", true },
- { "open-domotics.info", true },
- { "open-freax.fr", true },
+ { "open-freax.fr", false },
{ "open-future.be", true },
{ "open-gaming.net", true },
{ "open-infrastructure.net", true },
@@ -29260,6 +32244,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "opencaves.io", true },
{ "opencircuit.nl", true },
{ "openclima.com", true },
+ { "openconf.uk", true },
+ { "opencpes.net", true },
{ "opencrm.co.uk", true },
{ "openctp.com", true },
{ "openctp.net", true },
@@ -29272,23 +32258,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "opengg.me", true },
{ "opengovpartnership.de", true },
{ "openings.ninja", true },
- { "openintelligence.uk", true },
{ "openitforum.pl", true },
{ "openjur.de", true },
{ "openkim.org", true },
{ "openkvk.nl", true },
{ "openmirrors.ml", true },
{ "openmtbmap.org", true },
- { "opennippon.com", true },
- { "opennippon.ru", true },
+ { "openpictures.ch", true },
{ "openquery.com.au", true },
{ "openrainbow.com", true },
{ "openrainbow.net", true },
{ "openre.site", true },
{ "openrealestate.co", true },
+ { "openresearch.amsterdam", true },
{ "openresty.com", true },
{ "openreview.net", true },
{ "openroademail.com", true },
+ { "openrtm.org", true },
+ { "openruhr.de", true },
{ "openscreen.lu", true },
{ "openshippers.com", true },
{ "opensource-cms.nl", true },
@@ -29302,25 +32289,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "openstreetmap.lu", true },
{ "openstreetmap.org", true },
{ "opentrack.info", true },
- { "opentrash.org", true },
{ "opentuition.com", true },
{ "openverse.com", true },
{ "openvz.org", true },
{ "openwaveguide.de", true },
{ "openwifi.gr", true },
{ "openwireless.org", true },
- { "operationforever.com", true },
{ "opexterminating.com", true },
{ "opfin.com", true },
{ "ophis-phosphoros.com", true },
{ "opiates.ca", true },
{ "opic.gov", true },
{ "opin.me", true },
+ { "opinio.fr", true },
+ { "opinionitech.com", true },
{ "opioids.co.uk", true },
+ { "opioids.com", true },
{ "opioids.gov", true },
{ "opium.io", true },
{ "oplop.appspot.com", true },
- { "opoleo.com", false },
{ "oposiciones.com.es", true },
{ "oposicionesapolicialocal.es", true },
{ "oposicionescorreos.com.es", true },
@@ -29336,9 +32323,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "opportunity.de", true },
{ "opportunityliu.top", true },
{ "oppositionsecurity.com", true },
+ { "oppress.life", true },
{ "oppwa.com", true },
{ "opq.pw", true },
- { "oprbox.com", true },
{ "oprechtgezegd.nl", true },
{ "oprueba.com", true },
{ "opryshok.com", true },
@@ -29349,59 +32336,63 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "optik-trosdorff.de", true },
{ "optimalsetup.com", true },
{ "optimaner.pl", true },
- { "optimisedlabs.co.uk", true },
- { "optimisedlabs.com", true },
{ "optimist.bg", true },
{ "optimumwebdesigns.com", true },
{ "optimus.io", true },
{ "optimuscrime.net", true },
{ "optm.us", true },
{ "optmos.at", true },
- { "optometryscotland.org.uk", true },
{ "optoutday.de", true },
- { "opure.ru", true },
+ { "opture.ch", true },
{ "opus-codium.fr", true },
- { "oraculum.cz", true },
+ { "opus-consulting.no", true },
+ { "opvakantie-noorwegen.nl", true },
+ { "opvakantie-zweden.nl", true },
+ { "oqwebdesign.com", true },
{ "orang-utans.com", true },
{ "orangecomputers.com", true },
{ "orangefab.asia", true },
- { "orangefinanse.com.pl", true },
{ "orangejetpack.com", true },
{ "orangenbaum.at", true },
{ "orangesquash.org.uk", true },
- { "orangetravel.eu", true },
+ { "orangewombat.com", true },
{ "orangutan-appeal.org.uk", true },
- { "oranjee.net", true },
+ { "orangutan.org", true },
+ { "oranjee.net", false },
{ "orbital3.com", true },
{ "orbu.net", true },
{ "orca.pet", true },
+ { "orcada.co", true },
+ { "orcahq.com", true },
{ "orcamoney.com", true },
+ { "orcawiki.nl", true },
{ "orchideenettoyage.com", true },
{ "orchidlive.com", true },
+ { "orchids.co.jp", true },
{ "orchidsforum.com", true },
{ "orchidspaper.com", true },
{ "orcsnet.com", true },
{ "ordbokpro.se", true },
+ { "orde.red", true },
+ { "ordermore.cloud", true },
{ "ordernow.at", true },
{ "orderswift.com", true },
{ "ordoh.com", true },
{ "ordoro.com", true },
- { "ordr.mobi", true },
- { "ore.cool", true },
{ "oreshinya.xyz", true },
{ "oreskylaw.com", true },
- { "oreto.de", true },
+ { "oreto.de", false },
{ "orf-digitalsatkarte.at", false },
{ "orf-kartentausch.at", false },
+ { "orfelios.com", true },
{ "organica.co.za", true },
- { "organicskincare.com", true },
{ "organisatieteam.nl", true },
{ "organisationsberatung-jacobi.de", true },
- { "organix.ma", true },
{ "orgasmium.com", true },
- { "orgatech-gmbh.de", true },
{ "orgsyn.in", true },
+ { "orgyporngroup.com", true },
{ "orhideous.name", true },
+ { "orians.eu", true },
{ "oribia.net", true },
{ "orientalart.nl", true },
{ "orientravelmacas.com", true },
@@ -29412,8 +32403,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "original-christstollen.com", true },
{ "original-christstollen.de", true },
{ "originalniknihy.cz", true },
- { "origincoffee.com", true },
- { "origincoffee.nz", true },
{ "originpc.com", false },
{ "orikadabra.nl", true },
{ "orikum.org", true },
@@ -29427,11 +32416,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "orlandoprojects.com", true },
{ "orleika.io", true },
{ "ormer.nl", true },
+ { "oro.roma.it", true },
{ "orocojuco.com", true },
+ { "orologeria.roma.it", true },
{ "oroscopodelmese.it", true },
- { "orro.ro", false },
{ "orrs.de", true },
+ { "ortho-europe.com", true },
{ "orthocop.cz", true },
+ { "orthodocspro.com", true },
{ "orthodontiste-geneve-docteur-rioux.com", true },
{ "orthograph.ch", true },
{ "orthotictransfers.com", true },
@@ -29439,7 +32431,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oruggt.is", true },
{ "orwell1984.today", true },
{ "oryva.com", true },
- { "orz.uno", true },
{ "os-s.net", true },
{ "os-t.de", true },
{ "os24.cz", true },
@@ -29452,12 +32443,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "osburn.com", true },
{ "oscarvk.ch", true },
{ "osepideasthatwork.org", true },
- { "osereso.tn", true },
{ "oses.mobi", true },
+ { "osez-l-odyssee.fr", true },
{ "oshayr.com", true },
{ "oshell.me", true },
{ "oshrc.gov", true },
{ "osielnava.com", true },
+ { "osimmo.fr", true },
+ { "osirisrp.online", true },
{ "osirium.com", true },
{ "oskrba.net", true },
{ "oskrba.online", true },
@@ -29465,32 +32458,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "osla.org", true },
{ "oslinux.net", true },
{ "osm.is", true },
+ { "osm.ovh", true },
+ { "osmani-gebaeudereinigung.de", true },
{ "osmanlitorunu.com", true },
{ "osmosis.org", true },
{ "osmre.gov", true },
{ "osnova.cz", true },
{ "osobliwydom.pl", true },
{ "osolutionscorp.com", true },
+ { "osom.finance", true },
{ "osomjournal.org", true },
{ "ospf.sk", true },
- { "osprecos.com.br", true },
- { "osprecos.pt", true },
{ "ospree.me", true },
{ "ostachstore.com", true },
{ "ostan-collections.net", true },
+ { "osteendiner.com", true },
{ "osterkraenzchen.de", true },
{ "ostgotamusiken.se", true },
{ "osti.gov", true },
{ "ostimwebyazilim.com", true },
{ "ostr.io", true },
{ "ostrov8.com", true },
- { "osusume-houhou.com", true },
+ { "osuszanie-krakow.pl", true },
+ { "osuszanie-radom.pl", true },
+ { "osuszanie-warszawa.pl", true },
+ { "oswaldlabs.com", true },
{ "oswalds.co.uk", true },
{ "oswaldsmillaudio.com", true },
{ "oswbouncycastles.co.uk", true },
{ "osworx.net", true },
{ "osx86spain.com", true },
{ "oszri.hu", true },
+ { "ota365.com", true },
{ "otakubox.de", true },
{ "otakurepublic.com", true },
{ "otakurumi.de", true },
@@ -29502,9 +32501,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oticasvisao.net.br", true },
{ "otisko.com", true },
{ "otokiralama.name.tr", true },
+ { "otomobilforumu.com", true },
{ "otorrino.pt", true },
{ "otoy.com", true },
{ "otoya.space", false },
+ { "otprema.hr", true },
{ "otpsmart.com.ua", true },
{ "otr.ie", true },
{ "otrm.de", true },
@@ -29512,31 +32513,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "otsfreestyle.jp", true },
{ "ottoproject.io", false },
{ "ottoversand.at", true },
- { "otus-magnum.com", true },
{ "otvaracie-hodiny.sk", true },
+ { "otvertka.kz", true },
{ "otya.me", true },
{ "ouaibe.qc.ca", true },
{ "ouattara.ch", true },
{ "ouestsolutions.com", true },
{ "ouglor.com", true },
{ "ouin.land", true },
+ { "oulunjujutsu.com", true },
+ { "ouowo.gq", true },
+ { "our-box.de", true },
{ "our-box.net", true },
{ "ourai.ws", true },
{ "ourcloud.at", true },
{ "ourdocuments.gov", true },
{ "ourevents.net", true },
+ { "ourfavorite-kakamigahara.jp", true },
{ "ourladymountcarmel.net", true },
{ "ourladyofcalvary.org", true },
{ "ourladyoftheassumptionchurch.org", true },
{ "ourladyqueenofmartyrs.org", true },
- { "ourls.win", true },
{ "ourmaster.org", true },
+ { "ourocg.cn", true },
{ "ourwedding.xyz", true },
{ "ourworldindata.org", true },
{ "out-of-scope.de", true },
{ "outdoorchoose.com", true },
{ "outdoorfurniture.ie", true },
- { "outdoorhole.com", true },
{ "outdoorimagingportal.com", true },
{ "outdoorlightingagoura.com", true },
{ "outdoorlightingagourahills.com", true },
@@ -29552,55 +32556,65 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "outdoorlightingsimivalley.com", true },
{ "outdoorlightingthousandoaks.com", true },
{ "outdoorlightingwestlakevillage.com", true },
- { "outfit-weimar.eu", true },
+ { "outerlimitsdigital.com", true },
+ { "outetc.com", true },
+ { "outfunnel.com", true },
{ "outgress.com", true },
{ "outincanberra.com.au", true },
+ { "outinjersey.net", true },
{ "outka.xyz", true },
{ "outline.ski", true },
- { "outlines.xyz", true },
{ "outlookonthedesktop.com", true },
{ "outplnr.fr", true },
{ "outpostinfo.com", true },
+ { "output.clothing", true },
{ "outsideconnections.com", true },
{ "outsiders.paris", true },
- { "ovelhaostra.com", true },
+ { "outstack.vote", true },
+ { "ouxiang.me", true },
+ { "ovabastecedoraindustrial.com", true },
+ { "ovelhaostra.com", false },
{ "overalglas.nl", true },
{ "overamsteluitgevers.nl", true },
{ "overclockers.ge", true },
{ "overdrive-usedcars.be", true },
{ "overkillshop.com", true },
{ "overlandireland.ie", true },
+ { "overnightglasses.com", true },
+ { "overs.jp", true },
+ { "overs.top", true },
{ "overseamusic.de", true },
{ "oversight.garden", true },
{ "oversight.gov", true },
{ "overstap.deals", true },
{ "overstemmen.nl", true },
{ "overstockpromote.com", true },
- { "overthecloud.it", true },
{ "overthinkingit.com", true },
{ "overtrolls.de", true },
{ "overzicht.pro", true },
{ "overzicht.ws", true },
{ "oveweddings.com", true },
{ "ovirt.org", true },
+ { "ovisy.com", true },
{ "ovix.co", true },
{ "ovnrain.com", true },
{ "ovpn.to", true },
{ "ovvy.net", false },
{ "owapi.net", true },
+ { "owddm.com", true },
{ "owennelson.co.uk", true },
{ "owensordinarymd.com", true },
{ "owid.cloud", true },
{ "owl-square.com", true },
{ "owl-stat.ch", true },
{ "owl.net", true },
- { "owlandrabbitgallery.com", true },
{ "owlishmedia.com", true },
{ "own3d.ch", true },
{ "ownagepranks.com", true },
{ "ownc.at", true },
- { "owncloud.ch", true },
{ "ownmay.com", false },
+ { "owntournament.org", true },
+ { "oxanababy.com", true },
{ "oxborrow.ca", true },
{ "oxdl.cn", true },
{ "oxelie.com", true },
@@ -29610,30 +32624,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oxo.cloud", true },
{ "oxygin.net", true },
{ "oxytocin.org", true },
+ { "oxyx.tk", true },
{ "oxz.me", true },
{ "oxzeth3sboard.com", true },
{ "oyashirosama.tokyo", true },
{ "oyosoft.fr", true },
{ "oyosoft.net", true },
{ "oysterworldwide.com", true },
+ { "oyunpat.com", true },
+ { "ozalp.dk", true },
{ "ozark.be", true },
+ { "ozarktrailcooler.com", true },
{ "oznamovacipovinnost.cz", true },
- { "ozonitron.com", true },
- { "ozonitron.de", true },
- { "ozonitron.eu", true },
- { "ozonytron.com", true },
- { "ozonytron.de", true },
- { "ozonytron.eu", true },
{ "ozvolvo.org", true },
- { "p-fent.ch", true },
+ { "p-p.site", true },
{ "p-s-b.com", true },
- { "p-t.io", true },
{ "p0l.de", true },
+ { "p1979.com", true },
+ { "p1group.com", true },
{ "p1ratrulezzz.me", true },
{ "p22.co", true },
{ "p4chivtac.com", true },
+ { "p5197.co", true },
{ "p5on.net", true },
{ "p5r.uk", true },
+ { "p6957.co", true },
+ { "p9297.co", true },
+ { "p9721.com", true },
+ { "p9728.co", true },
{ "pa-w.de", true },
{ "pa.search.yahoo.com", false },
{ "paarberatung-hn.de", true },
@@ -29664,40 +32682,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pabuzo.vn", true },
{ "pacaom.com", true },
{ "pacatlantic.com", true },
- { "pacco.com.br", true },
+ { "pacch.io", true },
+ { "pacchioni.me", true },
+ { "paccolat.name", true },
{ "pace.car", true },
{ "paced.me", true },
{ "pacelink.de", true },
{ "pacifco.com", true },
{ "pacificcashforcars.com.au", true },
- { "pacificpalisadeselectric.com", true },
- { "pacificpalisadeselectrical.com", true },
- { "pacificpalisadeslandscapelighting.com", true },
- { "pacificpalisadeslighting.com", true },
+ { "pacificgynsurgicalgroup.com", true },
+ { "pacificpuke.com", true },
{ "pacifictilkin-occasions.be", true },
- { "pacifique-web.nc", true },
{ "pack-haus.de", true },
- { "packagefactory.dk", true },
{ "packagingproject.management", true },
{ "packagist.jp", true },
{ "packagist.org", false },
{ "packaware.com", true },
{ "packetdigital.com", true },
{ "packetlinux.com", true },
- { "packs-de-mujeres.com", true },
{ "pact2017.nl", true },
{ "pactf.com", true },
{ "padam-group.com", true },
{ "padberx-marketing-consultants.de", true },
{ "paddy.rocks", true },
+ { "padelbox.de", true },
{ "padeoe.com", true },
{ "padianda.com", true },
{ "padkit.org", true },
- { "padovani.de", true },
{ "padpilot.co", true },
{ "padrepio.in", true },
{ "padron.com.es", true },
- { "paducaheic.com", true },
{ "padzilla.com", true },
{ "paedlink.ca", true },
{ "paf-events.ch", true },
@@ -29706,11 +32720,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pagalworld.info", true },
{ "pagalworld.io", true },
{ "pagalworld.la", true },
+ { "pagalworld.live", true },
{ "pagalworld.me", true },
{ "pagalworld.org", true },
- { "pagamentosonline.pt", true },
{ "page-builders.com", true },
{ "pageantsnews.com", false },
+ { "pageboard.fr", true },
{ "pagedesignhub.com", true },
{ "pagedesignpro.com", true },
{ "pagedesignweb.com", true },
@@ -29718,20 +32733,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pagerduty.com", true },
{ "pagewizz.com", true },
{ "pagiamtzis.com", true },
- { "pagina.com.mx", true },
{ "pagina394.com.br", true },
{ "paginaweb4u.com", true },
{ "pagure.io", true },
- { "pahae.de", true },
+ { "pahae.de", false },
{ "pahealthbilling.com", true },
{ "pahlawanpulsa.com", true },
- { "pahub.io", true },
{ "paichai.space", false },
- { "paigejulianne.com", true },
{ "paincareehr.com", true },
{ "paindata.dk", true },
{ "painefamily.co.uk", true },
- { "paint-it.pink", true },
{ "paintball-ljubljana.si", true },
{ "paintball-shop.sk", true },
{ "paintcolorsbysue.com", true },
@@ -29747,10 +32758,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pakistani.dating", true },
{ "pakitow.fr", true },
{ "pakke.de", true },
- { "pakroyalpress.com", true },
{ "paktolos.net", true },
{ "palabr.as", true },
- { "palace-bayreuth.de", true },
{ "palapadev.com", true },
{ "palariviera.com", true },
{ "palary.work", true },
@@ -29759,51 +32768,74 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "palavalbasket.it", true },
{ "palavatv.com", true },
{ "palazzo.link", true },
- { "palazzo.work", true },
- { "paleolowcarb.de", true },
- { "paleoself.com", true },
- { "paleotraining.com", true },
+ { "palebluedot.de", true },
+ { "paleo.io", true },
+ { "paleodietfoodlist.com", true },
+ { "paleodietrecipes.com", true },
+ { "paleorecipepro.com", true },
+ { "paleoso.com", true },
{ "palermopride.it", true },
{ "palestra.roma.it", true },
{ "palladium46.com", true },
- { "pallas.in", true },
{ "palletflow.com", true },
{ "palli.ch", true },
{ "palmaprop.com", true },
{ "palmavile.us", true },
{ "palmaville.com", true },
{ "palmen-apotheke.de", true },
+ { "palomardisplays.com", true },
+ { "pama.fun", true },
{ "pamaniqu.nl", true },
{ "pamatv.hk", true },
{ "pamsorel.co.za", true },
{ "pan.digital", true },
{ "panamatrippin.com", true },
{ "panasca.is", true },
+ { "panascais.at", true },
+ { "panascais.ch", true },
{ "panascais.co", true },
{ "panascais.com", true },
+ { "panascais.cz", true },
{ "panascais.de", true },
+ { "panascais.es", true },
{ "panascais.eu", true },
+ { "panascais.fi", true },
+ { "panascais.fr", true },
{ "panascais.host", true },
+ { "panascais.info", true },
+ { "panascais.io", true },
{ "panascais.me", true },
{ "panascais.net", true },
+ { "panascais.network", true },
+ { "panascais.nl", true },
+ { "panascais.org", true },
+ { "panascais.pl", true },
+ { "panascais.pt", true },
{ "panascais.pw", true },
+ { "panascais.ru", true },
{ "panascais.site", true },
{ "panascais.tech", true },
{ "panascais.us", true },
+ { "panascais.zone", true },
{ "panaxis.biz", true },
{ "panaxis.ch", true },
{ "panaxis.li", true },
{ "panda-community.com", true },
{ "panda.tf", true },
+ { "pandaltd.nl", true },
{ "pandemicflu.gov", true },
{ "pandkonijn.nl", true },
{ "pandoraflora.com", true },
{ "pandymic.com", true },
{ "paneldewelopera.pl", true },
+ { "paneldoorsolutions.com", true },
{ "paneu.de", true },
+ { "panevo.com", true },
{ "panhandlemenshealth.com", true },
{ "panic.tk", true },
{ "panier-legumes.bio", true },
+ { "panino.gr", true },
+ { "paninohome.com", true },
{ "paniodpolskiego.eu", true },
{ "paniyanovska.ua", true },
{ "panj.ws", true },
@@ -29824,35 +32856,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pants-off.xyz", true },
{ "panzer72.ru", true },
{ "panzerscreen.dk", true },
- { "pao.ge", true },
{ "paolotagliaferri.com", true },
{ "pap.la", false },
{ "papa-webzeit.de", true },
+ { "papabearsautocenter.com", true },
{ "papadopoulos.me", true },
{ "papakatsu-life.com", true },
{ "papaya.me.uk", true },
{ "papayame.com", true },
{ "papayapythons.com", true },
{ "papelcraft.co.uk", true },
- { "paper-driver.biz", true },
{ "paper-republic.org", true },
{ "paper.sc", true },
{ "paperhoney.by", true },
{ "paperlesssolutionsltd.com.ng", true },
+ { "papermuseum.jp", true },
+ { "papersmart.net", true },
{ "papertracker.net", true },
{ "paperturn.com", true },
- { "paperworld.online", true },
{ "paperwritinghelp.net", true },
{ "papiermakerijdehoop.nl", true },
{ "papiermeteenverhaal.nl", true },
{ "papierniczy.eu", true },
{ "papillon-events.be", true },
{ "papion.it", true },
+ { "papiweb.ca", true },
{ "paprikas.fr", true },
{ "paraborsa.net", true },
{ "parachute70.com", true },
{ "paracomer.es", true },
{ "paradais-sphynx.com", true },
+ { "paradependentesquimicos.com.br", true },
{ "paradise-engineer.com", true },
{ "paradise-engineering.com", true },
{ "paradise-travel.net", true },
@@ -29861,12 +32895,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paragonie.com", false },
{ "paragonremodeling.com", true },
{ "paragreen.net", true },
- { "paranoidcrypto.com", true },
{ "paranoidmode.com", true },
{ "paranoidpenguin.net", true },
{ "parasitologyclub.org", true },
{ "parasosto.fi", true },
{ "paratlan.hu", true },
+ { "paratlantalalkozas.hu", true },
{ "paratxt.org", true },
{ "parcelbroker.co.uk", false },
{ "parchcraftaustralia.com", true },
@@ -29877,6 +32911,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "parentelement.com", true },
{ "parentheseardenne.be", true },
{ "parentinterview.com", true },
+ { "parentsandzebrasunited.com", true },
{ "parentsintouch.co.uk", true },
{ "paris-store.com", true },
{ "parisackerman.com", true },
@@ -29887,13 +32922,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "parisfranceparking.de", true },
{ "parisfranceparking.fr", true },
{ "parisfranceparking.nl", true },
- { "parisprovincedemenagements.fr", true },
{ "parkeren.in", true },
- { "parkfans.net", true },
+ { "parkerplumbingcompany.com.au", true },
{ "parkhost.eu", true },
{ "parkinginparis.fr", true },
{ "parkingparisnord.fr", true },
{ "parkingpoint.co.uk", true },
+ { "parkinsplasticsurgery.com", true },
{ "parkrunstats.servehttp.com", true },
{ "parkviewmotorcompany.com", true },
{ "parkwayminyan.org", true },
@@ -29902,22 +32937,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "parleu2016.nl", true },
{ "parmels.com.br", true },
{ "parnassys.net", true },
+ { "parnizaziteksasko.cz", true },
+ { "parodesigns.com", true },
{ "parolu.io", true },
{ "parquettista.milano.it", true },
{ "parquettista.roma.it", true },
+ { "parrocchiamontevecchia.it", true },
{ "parry.org", true },
+ { "parsdev.ir", true },
{ "parsemail.org", true },
{ "parser.nu", true },
{ "parsonsfamilyhomes.com", true },
- { "partage.ovh", true },
+ { "partage-noir.fr", true },
{ "parteaga.com", true },
{ "parteaga.net", true },
{ "partecipa.tn.it", true },
{ "parthkolekar.me", true },
+ { "partin.nl", true },
{ "partiono.com", true },
- { "partner.sh", true },
{ "partnercardservices.com", true },
{ "partnermobil.de", true },
+ { "partnertaxhub.com", true },
{ "partou.de", true },
{ "partridge.tech", true },
{ "parts4phone.com", true },
@@ -29926,14 +32966,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "partusedtyres.net", true },
{ "party-and-play.co.uk", true },
{ "party-calendar.net", true },
+ { "party-kneipe-bar.com", true },
{ "party-time-inflatables-durham.co.uk", true },
{ "partybounceplay.co.uk", true },
- { "partycentrumdebinnenhof.nl", true },
{ "partycentrumopenhuis.nl", true },
+ { "partyhelfer.ch", true },
{ "partyhireisleofwight.co.uk", true },
{ "partyhireliverpool.co.uk", true },
{ "partypearl.de", true },
{ "partyrocksbounce.co.uk", true },
+ { "partyschnaps.com", true },
{ "partyspaces.co.uk", true },
{ "partytime-uk.co.uk", true },
{ "partytimeltd.ie", true },
@@ -29950,8 +32992,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pasarella.eu", true },
{ "pascal-bourhis.com", true },
{ "pascal-bourhis.net", true },
- { "pascal-kannchen.de", true },
{ "pascal-wittmann.de", true },
+ { "pascalchristen.ch", true },
{ "pascaline-jouis.fr", true },
{ "pascalleguern.com", true },
{ "pascalmathis.com", true },
@@ -29964,18 +33006,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pass.org.my", true },
{ "passabook.com", true },
{ "passcod.name", true },
+ { "passengertravelportal.com", true },
{ "passfilesafe.com", true },
- { "passfoto-deinfoto.ch", true },
{ "passieposse.nl", true },
{ "passionandbalance.com", true },
+ { "passionate.org.nz", true },
{ "passionatefoodie.co.uk", true },
{ "passionatehorsemanship.com", true },
{ "passionatelife.com.au", true },
- { "passionbyd.com", true },
+ { "passionebenessere.com", true },
{ "passionpictures.eu", true },
{ "passions-art.com", true },
{ "passover-fun.com", true },
- { "passphrase.today", true },
{ "passport.yandex.by", true },
{ "passport.yandex.com", true },
{ "passport.yandex.com.tr", true },
@@ -29983,6 +33025,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "passport.yandex.ru", true },
{ "passport.yandex.ua", true },
{ "passports.govt.nz", true },
+ { "passporttrails.com", true },
{ "passthepopcorn.me", true },
{ "passumpsicbank.com", true },
{ "passvanille-reservation.fr", true },
@@ -30005,8 +33048,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paste.gg", true },
{ "paste.to", true },
{ "pastebin.co.za", true },
+ { "pastebin.run", true },
{ "pastebin.tw", true },
- { "pasteblin.com", true },
{ "pasternok.org", true },
{ "pasticcerialorenzetti.com", true },
{ "pasztor.at", true },
@@ -30025,10 +33068,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "patikabiztositas.hu", true },
{ "patineteselectricosbaratos.net", true },
{ "patric-lenhart.de", true },
+ { "patrick-omland.de", true },
+ { "patrick-omland.eu", true },
{ "patrick-othmer.de", true },
{ "patrick-robrecht.de", true },
{ "patrick.my-gateway.de", true },
- { "patrick21.ch", true },
{ "patrickaudley.ca", true },
{ "patrickaudley.com", true },
{ "patrickbrosi.de", true },
@@ -30052,20 +33096,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paudley.com", true },
{ "paudley.org", true },
{ "paul-barton.co.uk", true },
- { "paul-bronski.de", true },
{ "paul.reviews", true },
{ "pauladamsmith.com", true },
{ "paulbakaus.com", true },
{ "paulbdelaat.nl", true },
{ "paulbramhall.uk", true },
+ { "paulchen.at", true },
{ "paulcooper.me.uk", true },
- { "pauldev.co", true },
{ "paulerhof.com", true },
{ "paulgerberrealtors.com", true },
{ "paulinewesterman.nl", true },
{ "paullockaby.com", true },
{ "paulmeier.com", false },
- { "paulomonteiro.pt", true },
+ { "paulorochago.com.br", true },
{ "paulov.com", true },
{ "paulov.info", true },
{ "paulov.ru", true },
@@ -30073,8 +33116,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paulrotter.de", true },
{ "paulschreiber.com", true },
{ "paulscustomauto.com", true },
- { "paulshir.com", true },
- { "paulshir.is", true },
{ "paulsnar.lv", true },
{ "paulswartz.net", true },
{ "paulus-foto.pl", true },
@@ -30084,32 +33125,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paulwendelboe.com", true },
{ "pauly-stahlhandel.com", true },
{ "pauly-stahlhandel.de", true },
- { "pause-canap.com", true },
- { "pauspam.net", true },
{ "pautadiaria.com", true },
{ "pavamtio.cz", true },
{ "pavando.com", true },
{ "pavelfojt.cz", true },
{ "pavelrebrov.com", true },
- { "pavio.org", true },
+ { "pavelstriz.cz", true },
{ "paw.cloud", true },
{ "paw.pt", true },
{ "pawel-international.com", true },
{ "pawelnazaruk.com", true },
{ "pawelurbanek.com", true },
- { "pawsomebox.co.uk", true },
{ "pawspuppy.com", true },
{ "pawsr.us", true },
+ { "pawsru.org", true },
{ "paxchecker.com", true },
{ "paxerahealth.com", true },
{ "pay-online.in", true },
{ "pay.gov", true },
{ "paya.cat", true },
- { "paybook.co.tz", true },
{ "payboy.biz", true },
{ "payboy.rocks", true },
{ "paybro.eu", true },
- { "paydigital.pt", true },
{ "payexpresse.com", true },
{ "payfazz.com", true },
{ "payjunction.com", true },
@@ -30117,9 +33154,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paylike.io", true },
{ "payloc.io", true },
{ "payme.uz", true },
+ { "payment-express.net", true },
{ "payment-network.com", true },
{ "paymentaccuracy.gov", true },
{ "payments.google.com", true },
+ { "payments.gy", true },
{ "paymerang.com", true },
{ "paymill.com", true },
{ "paymill.de", true },
@@ -30128,8 +33167,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paypal.com", true },
{ "paypaq.com", true },
{ "paypro.nl", false },
+ { "payroll.myftp.org", true },
{ "payroll.xero.com", false },
- { "payrollhive.com", true },
{ "paysbuy.net", true },
{ "paysera.com", true },
{ "payslipview.com", true },
@@ -30138,9 +33177,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paytm.in", true },
{ "paytonmoledor.com", true },
{ "payupay.ru", true },
- { "payzang.com", true },
{ "pb.ax", false },
- { "pback.se", true },
{ "pbosquet.com", true },
{ "pbourhis.me", true },
{ "pbr.so", true },
@@ -30150,45 +33187,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pbz.im", true },
{ "pc-rescue.me", false },
{ "pc-servis-brno.com", true },
+ { "pc-warriors.com", true },
+ { "pc28yc.com", true },
{ "pccentral.nl", true },
{ "pcdocjim.com", true },
{ "pcel.com", true },
{ "pcf92.fr", true },
{ "pcfeuerwehr.de", true },
- { "pcforum.sk", true },
{ "pcgamingfreaks.at", true },
+ { "pchancs.com", true },
{ "pchelpforum.net", true },
- { "pci-dss.hu", true },
{ "pci-e.net", true },
+ { "pci4.org", true },
{ "pciconcursos.com.br", true },
- { "pcidss.hu", true },
- { "pcipac.com", true },
{ "pclaeuft.de", true },
{ "pclob.gov", true },
{ "pcloud.com", true },
{ "pcmkrembangan.or.id", true },
+ { "pcmobile.tech", true },
{ "pcmr.info", true },
{ "pcnotdienst-oldenburg-rastede.de", true },
- { "pcreparatiehardenberg.nl", true },
{ "pcrypt.org", true },
{ "pcs.org.au", true },
{ "pcs2.gr", true },
{ "pcsetting.com", true },
+ { "pcsremodel.com", true },
{ "pctonic.net", true },
{ "pctrouble.net", true },
{ "pculiar.com", true },
+ { "pcunderground.com.ar", true },
+ { "pd2bans.org", 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 },
{ "pdkrawczyk.com", true },
{ "pdox.net", true },
- { "pdthings.net", true },
+ { "pdragt.com", true },
{ "pdxtowncar.net", true },
+ { "pe-bank.jp", true },
{ "pe.search.yahoo.com", false },
{ "peacedivorce.com", true },
{ "peaceispossible.cc", true },
@@ -30199,6 +33239,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "peanutbase.org", true },
{ "peanutproductionsnyc.com", true },
{ "pear2pear.de", true },
+ { "pearbloom.com", true },
{ "pearlcohen.com", true },
{ "pearlsenroses.nl", true },
{ "pearlsonly.ca", true },
@@ -30210,15 +33251,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pebbleparents.com", true },
{ "pebblepointapartmentsstl.com", true },
{ "pebbles.net.in", true },
- { "peckcloths.com", true },
+ { "pechonova.com", true },
{ "pecker-johnson.com", true },
{ "peda.net", true },
+ { "pedalsbarcelona.com", true },
{ "peddock.com", true },
{ "peddy.dyndns.org", true },
{ "pedicurean.nl", true },
{ "pedicureduiven.nl", true },
{ "pedidamanosevilla.com", true },
- { "pedidosfarma.com.br", true },
{ "pedikura-vitu.cz", true },
{ "pedimanie.cz", true },
{ "pedimoda.com.br", true },
@@ -30229,7 +33270,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "peeekaaabooo.com", true },
{ "peekier.com", true },
{ "peep.gq", true },
- { "peepsfoundation.org", true },
+ { "peepsfoundation.org", false },
{ "peercraft.at", true },
{ "peercraft.be", true },
{ "peercraft.biz", true },
@@ -30259,27 +33300,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "peerweb.com", true },
{ "peetah.com", true },
{ "peeters.io", true },
- { "pefricea.com", true },
+ { "peev.io", true },
{ "peg.nu", true },
{ "pegas-studio.net", true },
- { "pehapkari.cz", true },
{ "peifi.de", false },
{ "peippo.at", true },
- { "peka.pw", true },
{ "pekarstvivetvrzi.cz", true },
{ "pekkapleppanen.fi", true },
- { "pekoe.se", false },
+ { "pekoe.se", true },
{ "pelanucto.cz", true },
{ "pelican.ie", true },
- { "peliseries24.com", true },
{ "pellet.pordenone.it", true },
- { "pelletizermill.com", true },
{ "pelletsprice.com", true },
{ "pelopogrund.com", true },
{ "pelopoplot.com", true },
{ "pelotonimports.com", true },
+ { "peluqueriaalcobendas.com", true },
+ { "peluqueriaalcobendas.es", true },
{ "pemborongbangunan.id", true },
{ "pems.gov.au", true },
+ { "pen-sec.de", true },
{ "penaugustin.com", true },
{ "pencepay.com", true },
{ "pencil2d.org", true },
@@ -30287,6 +33327,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pendriveapps.com", true },
{ "penetrationstest.se", true },
{ "penfold.fr", true },
+ { "pengepung.com", true },
{ "pengi.me", true },
{ "penguinbits.net", true },
{ "penguindrum.moe", true },
@@ -30302,9 +33343,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pensador.info", true },
{ "pensioenfonds-ey.nl", true },
{ "pension-am-alten-waschhaus.de", true },
+ { "pensionecani.milano.it", true },
{ "pensionpilot.ca", true },
+ { "pensiunea-paco.ro", true },
+ { "pensiunealido.ro", true },
{ "penslabyrinth.com", true },
+ { "pentagonreviewcenter.com.ph", true },
{ "pentandra.com", true },
+ { "pentatec.de", true },
{ "pentest.blog", true },
{ "pentest.nl", true },
{ "pentesterlab.com", true },
@@ -30314,21 +33360,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "penz.media", true },
{ "penzionvzahrade.cz", true },
{ "peoplelikemeapp.com", true },
+ { "peoplescu.com", true },
{ "peoplesdecade.org", true },
{ "peoplesguardian.org", true },
{ "pepeelektro.sk", true },
+ { "pepegym.cz", true },
{ "pepemodelismo.com.br", true },
{ "peperstraat.online", true },
{ "pepfar.gov", true },
{ "pepgrid.net", true },
{ "peplog.nl", true },
{ "pepme.net", true },
- { "peppelmedi.fi", true },
{ "pepstaff.net", true },
- { "pepwaterproofing.com", true },
{ "pequenosfavoritos.com.br", false },
{ "per-olsson.se", true },
- { "pera.gs", true },
{ "perala.me", true },
{ "peraparker.cz", true },
{ "percolate.com", true },
@@ -30348,15 +33393,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "perfectoparty.co.uk", true },
{ "perfectsnap.co.uk", true },
{ "perfectstreaming.systems", true },
- { "perfektesgewicht.com", true },
{ "perfektesgewicht.de", true },
{ "perfmatters.io", true },
{ "performancegate.com", true },
{ "performancehealth.com", false },
{ "performing-art-schools.com", true },
- { "perfumeaz.com", true },
{ "perfumes.com.br", true },
{ "perge.com.br", true },
+ { "periodex.co", true },
{ "periodic-drinking.com", true },
{ "periscope.tv", true },
{ "perishablepress.com", true },
@@ -30365,41 +33409,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "permajackofstlouis.com", true },
{ "permaseal.net", true },
{ "permeance108.com", true },
+ { "permisecole.com", true },
{ "permistheorique.be", true },
{ "permistheoriqueenligne.be", true },
{ "perniciousgames.com", true },
{ "perot.me", true },
{ "perpetualemotion.com", true },
- { "perrau.lt", true },
{ "perroquet-passion.ch", true },
+ { "persefonne.com", true },
{ "persephone.gr", true },
- { "persiart.shop", true },
{ "persocloud.org", true },
{ "personal-genome.com", true },
+ { "personalidadmagnetica.com", true },
+ { "personalitymax.com", true },
{ "personaltrainer-senti.de", true },
{ "perspectivum.com", true },
{ "perspektivwechsel-coaching.de", true },
{ "persson.me", true },
{ "perthhillsarmadale.com.au", true },
{ "perthtrains.net", true },
- { "perucasestoril.com.br", true },
+ { "perubusca.nl", true },
{ "pervacio.hu", true },
{ "perzeidi.hr", true },
{ "pescadorcomunicacao.com", true },
{ "pescadorcomunicacao.com.br", true },
{ "pescco.com.br", true },
+ { "pestcontrol.co.uk", true },
{ "pestici.de", true },
- { "pestkill.info", true },
{ "pet-hotel-mura.net", true },
- { "pet-life.top", true },
{ "pet-tekk.co.uk", true },
{ "petabits.de", true },
{ "petalkr.com", true },
+ { "petaouchnok.ch", true },
{ "petbooking.it", true },
{ "petcarvers.com", true },
{ "petdesign.pet", true },
{ "petech.ro", true },
{ "petelew.is", true },
+ { "peter-hurtenbach.de", true },
{ "peter.org.ua", true },
{ "peterandjoelle.co.uk", true },
{ "peterbarrett.ca", true },
@@ -30414,6 +33461,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "peterhuetz.com", true },
{ "peterjin.org", true },
{ "peterjohnson.io", true },
+ { "peterkrivanek.com", true },
{ "peterlew.is", true },
{ "petermaar.com", true },
{ "petersontoscano.com", true },
@@ -30434,15 +33482,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "petpost.co.nz", false },
{ "petpower.eu", true },
{ "petr.as", true },
- { "petrachuk.ru", true },
{ "petrasestakova.cz", true },
{ "petravdbos.nl", true },
{ "petresort.pt", true },
{ "petroleum-schools.com", true },
+ { "petrologisticsllc.com", true },
{ "petroscand.eu", true },
- { "petrostathis.com", true },
{ "petrotranz.com", true },
- { "petrpikora.com", true },
+ { "petrsvec.cz", true },
{ "petrucciresidential.com", true },
{ "petruzz.net", true },
{ "pets4life.com.au", true },
@@ -30454,6 +33501,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pewnews.org", true },
{ "pex.digital", true },
{ "peyote.com", true },
+ { "peyote.org", true },
{ "pf.dk", true },
{ "pfa.or.jp", true },
{ "pfadfinder-aurich.de", true },
@@ -30469,7 +33517,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pflan.dk", true },
{ "pflanzen-shop.ch", true },
{ "pflanzenshop-emsland.de", true },
- { "pflegesalon-siebke.de", true },
{ "pflug.email", true },
{ "pfmeasure.com", true },
{ "pfotentour-berlin.de", true },
@@ -30478,13 +33525,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pg-forum.de", true },
{ "pg-mana.net", true },
{ "pgh-art.com", true },
- { "pglaum.tk", true },
{ "pgmann.cf", true },
{ "pgnetwork.net", true },
- { "pgp.guru", true },
+ { "pgp.lol", true },
{ "pgp.network", true },
{ "pgpmail.cc", true },
{ "pgregg.com", true },
+ { "pgwap.com", true },
{ "ph-blog.de", true },
{ "ph.search.yahoo.com", false },
{ "ph3r3tz.net", true },
@@ -30495,11 +33542,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pharmaboard.org", true },
{ "pharmacie-fr.org", true },
{ "pharmacieplusfm.ch", true },
- { "pharmacyglobalrx.net", true },
- { "pharmafoto.ch", true },
- { "pharmaphoto.ch", true },
+ { "pharmacy.org.pk", true },
{ "pharmapolitics.com", true },
- { "pharmaquality.com", true },
{ "pharmasana.co.uk", true },
{ "pharmasana.de", true },
{ "pharmica.co.uk", true },
@@ -30508,12 +33552,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pharynks.com", true },
{ "pharynx.nl", true },
{ "phasme-2016.com", true },
- { "phattea.tk", true },
{ "phaux.uno", true },
{ "phcimages.com", true },
- { "phcnetworks.net", true },
+ { "phcnetworks.net", false },
{ "phcorner.net", true },
- { "phdhub.it", true },
{ "phellowseven.com", true },
{ "phelx.de", true },
{ "phen-garcinia.info", true },
@@ -30528,25 +33570,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "phil.red", true },
{ "phil.tw", true },
{ "philadelphia.com.mx", true },
+ { "phildonaldson.com", true },
{ "phileas-psychiatrie.be", true },
{ "philia-sa.com", true },
{ "philipdb.com", true },
{ "philipdb.nl", true },
{ "philipkobelt.ch", true },
- { "philipp-trulson.de", true },
+ { "philipp-trulson.de", false },
{ "philipp-winkler.de", true },
{ "philipp1994.de", true },
{ "philippbirkholz.de", true },
{ "philippe-mignotte.fr", true },
{ "philippebonnard.fr", true },
{ "philipperoose.be", true },
- { "philippheenen.de", true },
+ { "philippheenen.de", false },
+ { "philippinedroneassociation.org", true },
{ "philippkeschl.at", true },
{ "philipssupportforum.com", true },
{ "philipzhan.tk", true },
{ "phillipgoldfarb.com", true },
{ "phillipsdistribution.com", true },
- { "phillyinjurylawyer.com", true },
{ "philna.sh", true },
{ "philosoftware.com.br", true },
{ "philosopherswool.com", true },
@@ -30554,20 +33597,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "philosophy.moe", true },
{ "philosophyguides.org", true },
{ "philphonic.de", true },
+ { "phils1990.com", true },
{ "philslab.cloud", true },
{ "philslab.ninja", true },
{ "philsown.de", true },
{ "philsturgeon.uk", true },
{ "philux.ch", true },
- { "phishing-studie.org", true },
{ "phishingusertraining.com", true },
- { "phocean.net", true },
{ "phoenics.de", false },
+ { "phoenixlogan.com", true },
+ { "phoenixnest.ltd", true },
{ "phoenixurbanspaces.com", true },
+ { "phographer.com", true },
{ "pholder.com", true },
{ "phone-service-center.de", true },
{ "phonenumber-info.co.uk", true },
- { "phonix-company.fr", true },
{ "phormance.com", true },
{ "phosagro.biz", false },
{ "phosagro.com", false },
@@ -30579,16 +33623,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "photo.org.il", true },
{ "photoancestry.com", true },
{ "photoartelle.com", true },
+ { "photobooth.id", true },
{ "photodeal.fr", true },
{ "photofilmcamera.com", true },
{ "photographe-reims.com", true },
- { "photographersdaydream.com", true },
{ "photography-workshops.net", true },
{ "photolium.net", false },
{ "photomodelcasting.com", true },
{ "photosafari.com.my", true },
+ { "photosafaribg.com", true },
{ "phototravel.uk", true },
{ "phototrio.com", true },
+ { "photoutils.com", true },
{ "phoxden.net", true },
{ "phoxmeh.com", true },
{ "php-developer.org", true },
@@ -30604,17 +33650,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "phpprime.com", true },
{ "phpsecure.info", true },
{ "phpstan.org", true },
- { "phpunit.de", true },
- { "phrazor.com", true },
{ "phuket-idc.com", true },
{ "phuket-idc.de", true },
+ { "phulyshop.com", true },
{ "phurl.de", true },
{ "phurl.io", true },
{ "phus.lu", true },
{ "phyley.com", true },
{ "physicalism.com", true },
{ "physicalist.com", true },
+ { "physicentrix.ca", true },
{ "physics-schools.com", true },
+ { "physik.hu", true },
{ "physiotherapie-seiwald.de", true },
{ "physiovesenaz.ch", true },
{ "pi-control.de", true },
@@ -30644,13 +33691,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "picksin.club", true },
{ "pickupenc.ru", true },
{ "piclect.com", true },
- { "picoauto.com", true },
+ { "picom365.com", true },
{ "piconepress.com", true },
- { "picotech.com", true },
{ "picr.ws", true },
{ "picster.at", true },
{ "picsto.re", true },
{ "pictorial.com.sg", true },
+ { "pictoriastudios.com", true },
{ "pictorista.com", true },
{ "pictr.nl", true },
{ "picture.team", true },
@@ -30663,55 +33710,60 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "piekacz.eu.org", true },
{ "piekacz.net", true },
{ "piekacz.tel", true },
- { "pieland.eu", true },
{ "pieldenaranja.com", true },
{ "piem.org", true },
+ { "piening.ddns.net", true },
{ "piepermail.nl", true },
{ "pieq.eu", true },
{ "pieq.eu.org", true },
{ "pier28.com", true },
- { "piercing-store.com", true },
{ "piercraft.com", true },
{ "pierre-denoblens.net", true },
{ "pierre-schmitz.com", true },
{ "pierreblake.com", true },
{ "pierrefv.com", true },
+ { "pierreyvesdick.fr", true },
{ "pierrickdeniel.fr", true },
{ "pietechsf.com", true },
+ { "pieter-verweij.nl", true },
{ "pieterbos.nl", true },
- { "pieterhordijk.com", true },
+ { "pieterdev.net", true },
+ { "pieterhordijk.com", false },
{ "pietermaene.be", false },
{ "pietz.uk", true },
+ { "pif.email", true },
+ { "pig.name", true },
{ "pigs.pictures", true },
{ "pijuice.com", true },
{ "pijusmagnificus.com", true },
{ "pik.bzh", true },
{ "pikafederation.ca", 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 },
+ { "pillitteriobgyn.com", true },
{ "pillowfort.pub", true },
{ "pilot-colleges.com", true },
{ "pilot.co", true },
{ "pilotgrowth.com", true },
{ "pilsoncontracting.com", true },
+ { "pilvi.pw", true },
{ "pilvin.pl", true },
- { "pimg136.com", true },
{ "pimhaarsma.nl", true },
{ "pimhaarsmamedia.nl", true },
+ { "pimpmypaper.com", true },
{ "pimpmyperf.fr", true },
{ "pimusiccloud.hopto.org", true },
{ "pimylifeup.com", true },
+ { "pin.net.au", true },
{ "pinceaux.org", true },
- { "pincha.com.tw", false },
{ "pincodeit.com", true },
+ { "pincong.rocks", true },
{ "pindanutjes.be", false },
+ { "pinellaslaser.com", true },
{ "pinemountainnursery.com.au", true },
{ "pinemountbaptistchurch.org", true },
{ "pinetopazrealestate.com", true },
@@ -30729,13 +33781,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pinklecfest.org", true },
{ "pinklittlenotebook.com", true },
{ "pinkmango.travel", true },
+ { "pinkoi.com", true },
{ "pinkwalk.co.nz", true },
- { "pinkyf.com", false },
{ "pinkylam.me", true },
- { "pinnacle-tex.com", true },
{ "pinnacleallergy.net", true },
{ "pinnaclelife.co.nz", true },
- { "pinnaclelife.nz", true },
{ "pinot.it", true },
{ "pinoydailytvshow.net", true },
{ "pinoyonlinetv.com", true },
@@ -30743,6 +33793,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pinpayments.com", true },
{ "pinpointengineer.co.uk", true },
{ "pinskupakki.fi", true },
+ { "pinter-moebel-shop.de", true },
{ "pinterest.at", true },
{ "pinterest.co.uk", true },
{ "pinterest.com", true },
@@ -30752,14 +33803,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pinterest.info", true },
{ "pinterest.jp", true },
{ "pinterjann.is", true },
+ { "pintiaux.com", true },
{ "pintosbeeremovals.co.za", true },
{ "pintoselectricfencing.co.za", true },
{ "pintosplumbing.co.za", true },
+ { "pinup-app.com", true },
{ "pioneer-car.eu", true },
{ "pioneer-rus.ru", true },
{ "pipenny.net", true },
{ "pipfrosch.com", true },
- { "pipocao.com", true },
+ { "piramalglassusa.com", true },
+ { "pirapiserver.ddns.net", true },
{ "pirate.trade", true },
{ "piratebayproxy.tf", true },
{ "piraten-basel.ch", true },
@@ -30770,8 +33824,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pirateproxy.cat", true },
{ "pirateproxy.cc", true },
{ "pirateproxy.gdn", true },
+ { "pirateproxy.id", true },
{ "pirateproxy.ist", true },
{ "pirateproxy.la", true },
+ { "pirateproxy.lat", true },
{ "pirateproxy.one", true },
{ "pirateproxy.pl", true },
{ "pirateproxy.pw", true },
@@ -30780,14 +33836,13 @@ 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 },
+ { "pis.eu.com", true },
{ "piscine.roma.it", true },
{ "piseach.be", true },
{ "piskenfuerwehr.de", true },
@@ -30797,26 +33852,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pitaiabank.com", true },
{ "pitaiatrade.com", true },
{ "pitbullsecuritysolutions.ca", true },
- { "pitchpinecapital.com", true },
+ { "pitch.vip", true },
{ "pitchup.com", true },
{ "pitchupp.com", true },
{ "pitfire.io", true },
{ "pitot-rs.org", true },
- { "pittmantraffic.co.uk", true },
+ { "pitshift.com", true },
{ "piu.moe", true },
{ "piubip.com.br", true },
{ "pivniraj.com", true },
{ "pivotaltracker.com", true },
{ "pivotanimation.org", true },
+ { "pivovarcunak.cz", 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 },
+ { "pixelcomunicacion.com", true },
{ "pixelminers.net", true },
{ "pixelpirat.ch", true },
{ "pixelsquared.us", true },
@@ -30826,7 +33881,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pixeoapp.com", true },
{ "pixiv.cat", true },
{ "pixiv.moe", true },
- { "pixlfox.com", true },
+ { "pixivimg.me", true },
{ "pixloc.fr", true },
{ "pixshop.fr", true },
{ "pixulutinho.com.br", true },
@@ -30836,17 +33891,18 @@ 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 },
- { "pj539999.com", true },
+ { "pj02.com", true },
+ { "pj5588.cc", true },
{ "pjentertainments.co.uk", true },
{ "pjleisure.co.uk", true },
- { "pjo.no", true },
{ "pjp.com.mt", true },
{ "pjuu.com", false },
{ "pk.search.yahoo.com", false },
- { "pkbjateng.or.id", true },
+ { "pk8k.com", true },
{ "pkeus.de", true },
{ "pkgt.de", false },
{ "pkirwan.com", true },
@@ -30858,6 +33914,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pl-cours.ch", true },
{ "pl.search.yahoo.com", false },
{ "placasonline.com.br", true },
+ { "placebet.pro", true },
{ "placedaffiliate.com", true },
{ "placedapps.com", true },
{ "placedsupport.com", true },
@@ -30876,36 +33933,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "planecon.nz", true },
{ "planer.me", true },
{ "planespotterblog.de", true },
- { "planet-laas.de", true },
{ "planet-work.com", true },
{ "planetanim.fr", true },
+ { "planetarian.moe", true },
+ { "planetarydesign.com", true },
{ "planetasuboficial.com.br", true },
{ "planetau2.com", true },
{ "planetbreath.ch", true },
- { "planete-cocoon.com", false },
{ "planete-lira.fr", true },
{ "planeteroliste.com", true },
{ "planeteroliste.fr", true },
{ "planetknauer.net", true },
{ "planetofthegames.tv", true },
+ { "planetromeo.com", true },
{ "planetromeofoundation.org", true },
{ "planetsoftware.com.au", true },
{ "planify.io", true },
{ "planitz.com", true },
{ "planitz.net", true },
+ { "planitz.org", true },
{ "planktonforhealth.co.uk", true },
- { "planktonholland.nl", true },
{ "planlos.net", true },
{ "planmemberpartners.com", true },
{ "plannedlink.com", true },
- { "planningexcellence.com.au", true },
- { "planolowcarb.com", true },
+ { "planningsagenda.nl", true },
{ "plant-gift.jp", true },
{ "plantarum.com.br", true },
{ "plantastique.ch", true },
{ "plantastique.com", true },
{ "planteforum.no", true },
- { "plantekno.com", false },
+ { "plantekno.com", true },
{ "plantes.ch", true },
{ "plantezcheznous.com", true },
{ "plantron.gr", true },
@@ -30915,8 +33972,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "planup.fr", true },
{ "planview.com", true },
{ "plaque-funeraire.fr", true },
+ { "plaque-immatriculation-auto.com", true },
+ { "plasdeck.me", true },
{ "plassmann.ws", true },
{ "plastic-id.com", true },
+ { "plasticbags.co.uk", true },
{ "plasticsurgerynola.com", true },
{ "plasticsurgeryservices.com", true },
{ "plastovelehatko.cz", true },
@@ -30924,41 +33984,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "platformadmin.com", true },
{ "platinapump.com", true },
{ "platinumexpress.com.ar", true },
- { "platnicyvat.pl", true },
{ "platomania.nl", true },
- { "platschi.net", true },
{ "platten-nach-mass.de", true },
{ "platterlauncher.com", true },
{ "play-casino-japan.com", true },
{ "play-charades.com", true },
{ "play.cash", true },
{ "play.google.com", true },
+ { "playandwin.co.uk", true },
{ "playanka.com", true },
{ "playawaycastles.co.uk", true },
{ "playcollect.net", true },
{ "playdaysparties.co.uk", true },
+ { "playelephant.com", true },
{ "playerdb.co", true },
{ "players2gather.com", true },
- { "playerscout.net", true },
{ "playform.cloud", true },
{ "playnation.io", true },
+ { "playnow.com", true },
{ "playocean.net", true },
- { "playpirates.com", true },
{ "playreal.city", true },
{ "playsharp.com", true },
{ "playsnake.org", true },
- { "playsoundevents.be", true },
+ { "playsprout.industries", true },
{ "playtictactoe.org", true },
{ "playtimebouncycastles.co.uk", true },
+ { "playtopia.com", true },
+ { "playtopia.fr", true },
+ { "playtopia.nl", true },
+ { "playtopia.no", true },
{ "playupnow.com", true },
{ "playviolinmusic.com", true },
{ "playzonecastles.co.uk", true },
+ { "plaza.ph", true },
{ "plazasummerlin.com", true },
{ "pld-entertainment.co.uk", true },
{ "pldx.org", true },
{ "pleasure-science.com", true },
{ "plegro.com", true },
- { "pleiades.com.tr", true },
{ "pleier-it.de", false },
{ "pleier.it", false },
{ "pleine-conscience.ch", true },
@@ -30966,11 +34029,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "plentybetter.com", true },
{ "plentybetter.org", true },
{ "plesse.pl", true },
+ { "plevenlab.org", true },
{ "plexa.de", true },
{ "plexhome13.ddns.net", true },
{ "plexmark.tk", true },
+ { "plexnet.cz", true },
{ "plextv.de", true },
{ "plicca.com", true },
+ { "plichso.de", true },
{ "pliosoft.com", true },
{ "plissee-experte.de", true },
{ "plitu.de", true },
@@ -30978,6 +34044,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "plny.eu", true },
{ "plob.org", true },
{ "plochka.bg", true },
+ { "ploi.io", true },
{ "plokko.com", true },
{ "plongee-phuket.fr", true },
{ "ploofer.com", true },
@@ -30996,17 +34063,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "plumbercincoranch.com", true },
{ "plumbermountedgecombe.co.za", true },
{ "plumberumhlangarocks.co.za", true },
+ { "plumbing-arlington.com", true },
{ "plumbingandheatingspecialistnw.com", true },
{ "plumbingbenoni.co.za", true },
{ "plumbingcentral.com.au", true },
{ "plumbingglenvista.co.za", true },
+ { "plumbingkingsllc.com", true },
{ "plumlocosoft.com", true },
{ "plumnet.ch", true },
{ "plumpie.net", false },
- { "plumplat.com", true },
{ "plur.com.au", true },
{ "plural.cafe", true },
{ "plurr.me", true },
+ { "plurr.us", true },
{ "plus-5.com", true },
{ "plus.google.com", false },
{ "plus.sandbox.google.com", true },
@@ -31015,14 +34084,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "plusminus30.si", true },
{ "plusstreamfeed.appspot.com", true },
{ "plustech.id", true },
+ { "pluta.net", true },
+ { "pluth.org", true },
{ "plutiedev.com", true },
{ "pluto.life", true },
{ "plutokorea.com", true },
- { "plutonx.com", true },
{ "plutopia.ch", true },
{ "plymouthbouncycastles.co.uk", true },
{ "plzdontpwn.me", true },
- { "plzenskybarcamp.cz", true },
{ "plzh4x.me", true },
{ "plzz.de", true },
{ "pm-onboarding-external-dev.azurewebsites.net", true },
@@ -31031,13 +34100,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pm13.cz", true },
{ "pm13.org", true },
{ "pm25.im", true },
- { "pma-iss.com", true },
{ "pmaene.be", false },
{ "pmalaty.com", true },
{ "pmarques.info", true },
{ "pmartin.tech", true },
{ "pmbc.org", true },
- { "pmconference.ch", true },
+ { "pmbsteelbuildings.com", true },
{ "pmf.gov", true },
{ "pmg-offshore-company.com", true },
{ "pmg-purchase.com", true },
@@ -31047,108 +34115,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pmnaish.co.uk", true },
{ "pmoreau.org", true },
{ "pmp-art.com", true },
- { "pmsacorp.com", true },
+ { "pms.myiphost.com", true },
{ "pmsf.eu", true },
- { "pmsfdev.com", true },
{ "pmt-documenten.nl", true },
{ "pn.id.lv", true },
- { "pnakosoft.com", true },
- { "pnakosoft.com.au", true },
{ "pneu01.fr", true },
{ "pneu74.fr", true },
{ "pneuhaus-lemp.ch", true },
{ "pnimmobilier.ch", true },
- { "pnmhomecheckup.com", true },
+ { "pnnl.gov", true },
+ { "pnoec.org.do", true },
{ "pnona.cz", true },
{ "pnsc.is", true },
{ "pnut.io", false },
{ "po.net", true },
+ { "po0k.ie", true },
{ "poba.fr", true },
- { "poc.xn--fiqs8s", true },
- { "poc22.com", true },
- { "poc23.com", true },
- { "poc25.com", true },
- { "poc26.com", true },
- { "poc261.com", true },
- { "poc262.com", true },
- { "poc27.com", true },
- { "poc290.com", true },
- { "poc298.com", true },
- { "poc31.com", true },
- { "poc32.com", true },
- { "poc33.com", true },
- { "poc35.com", true },
- { "poc36.com", true },
- { "poc37.com", true },
- { "poc38.com", true },
- { "poc51.com", true },
- { "poc518.com", true },
- { "poc52.com", true },
- { "poc53.com", true },
- { "poc55.com", true },
- { "poc56.com", true },
- { "poc568.com", true },
- { "poc57.com", true },
- { "poc58.com", true },
- { "poc586.com", true },
- { "poc588.com", true },
- { "poc59.com", true },
- { "poc601.com", true },
- { "poc618.com", true },
- { "poc63.com", true },
- { "poc65.com", true },
- { "poc66.com", true },
- { "poc67.com", true },
- { "poc68.com", true },
- { "poc69.com", true },
- { "poc699.com", true },
- { "poc7.com", true },
- { "poc718.com", true },
- { "poc72.com", true },
- { "poc75.com", true },
- { "poc76.com", true },
- { "poc77.com", true },
- { "poc78.com", true },
- { "poc79.com", true },
- { "poc8.com", true },
- { "poc816.com", true },
- { "poc86.com", true },
- { "poc88.com", true },
- { "poc88.vip", true },
- { "poc888.com", true },
- { "poc89.com", true },
- { "poc899.com", true },
- { "poc916.com", true },
- { "poc918.com", true },
- { "poc98.com", true },
- { "poc99.com", true },
{ "pocatellonissanparts.com", true },
{ "pochaneko.com", true },
{ "pocitacezababku.cz", true },
{ "pocketfruity.com", true },
- { "pocpok.com", true },
- { "pocqipai.com", true },
+ { "pocketinsure.com", true },
+ { "pocketpasta.com", true },
+ { "poddr.co", true },
+ { "podemos.info", true },
{ "podia.com.gr", false },
{ "podipod.com", true },
- { "podo-podo.com", true },
{ "podroof.com", true },
{ "podroof.com.au", true },
{ "podshrink.de", true },
{ "poe.digital", true },
{ "poed.net.au", true },
{ "poemlife.com", true },
+ { "poetry.ge", true },
{ "poezja.com.pl", true },
- { "poezjagala.pl", true },
{ "poffenhouse.ddns.net", true },
{ "pogera.com", true },
- { "pogetback.pl", true },
+ { "pogoswine.com", true },
+ { "pogotowiekomputeroweolsztyn.pl", true },
{ "pogrebisky.net", true },
{ "pohlednice-tap.cz", true },
{ "pohlmann.io", true },
{ "poinsot.info", true },
{ "pointaction.com", true },
{ "pointcab.vn", true },
+ { "pointforwardinc.net", true },
{ "pointhost.de", true },
+ { "pointiswunderland.de", true },
+ { "pointmaquininha.com", true },
{ "pointsgame.net", true },
{ "pointsixtyfive.com", true },
{ "pointum.com", true },
@@ -31164,13 +34178,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pokemontabletopadventures.com", true },
{ "pokemori.jp", true },
{ "pokepon.center", true },
- { "pokerslab.com", true },
{ "pokl.cz", true },
{ "pokrowcecardo.pl", true },
{ "polaire.org", true },
{ "polanda.com", true },
{ "polar-baer.com", true },
- { "polar.uk.com", true },
+ { "polarfisk.com", true },
{ "pole-emotion.ch", true },
{ "poleacademie.com", true },
{ "poles4pilots.com", true },
@@ -31184,12 +34197,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "polis.or.at", true },
{ "polis.to", false },
{ "polis812.ru", true },
+ { "poliscentraal.nl", true },
{ "polish-dictionary.com", true },
{ "polish-flag.com", true },
+ { "polish-translations.com", true },
{ "polish-translator.com", true },
{ "polish-translator.net", true },
{ "polish-translators.net", true },
- { "polishforums.com", true },
+ { "polishforums.com", false },
{ "polishmarriage.org", true },
{ "polishtranslation.com", true },
{ "polishwomen.com", true },
@@ -31200,26 +34215,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "politiezoneriho.be", true },
{ "politik-bei-uns.de", true },
{ "polizeiwallis.ch", true },
- { "polkhealthforanewyou.net", true },
+ { "polkhealthforanewyou.net", false },
{ "polki.com", true },
- { "pollet-ghijs.be", true },
- { "pollet-ghys.be", true },
+ { "pollendine.co.uk", true },
{ "polletmera.com", true },
+ { "pollev.com", true },
{ "polleverywhere.com", true },
{ "pollingplace.uk", true },
- { "polly.spdns.org", true },
{ "polomack.eu", true },
{ "poloniainfo.com", true },
{ "polska-robota.com.ua", true },
{ "polskiemalzenstwo.org", true },
{ "poly-fast.com", true },
+ { "polycoise.com", true },
{ "polycraftual.co.uk", 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 },
@@ -31227,9 +34241,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "polytarian.com", true },
{ "polytekniskforening.dk", true },
{ "pomar.club", false },
+ { "pomelo-paradigm.com", true },
{ "pomfe.co", true },
{ "pomfeed.fr", true },
{ "pommedepain.fr", true },
+ { "pommetelecom.fr", true },
{ "pomockypredeti.sk", true },
{ "pomocniczy.eu.org", true },
{ "pompiers-martigny.ch", true },
@@ -31237,17 +34253,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "poncho-bedrucken.de", true },
{ "ponere.dz", true },
{ "poneypourtous.com", true },
- { "poneytelecom.org", true },
{ "ponga.se", true },
{ "ponio.org", true },
- { "ponio.xyz", true },
+ { "ponnau.com", true },
+ { "ponxel.com", true },
{ "pony-cl.co.jp", true },
{ "pony.tf", true },
{ "ponychan.net", true },
{ "ponycyclepals.co.uk", true },
{ "ponydesignclub.nl", true },
{ "ponyfoo.com", true },
- { "poochingaround.co.uk", true },
{ "poodleassassin.com", true },
{ "poodlefan.net", true },
{ "pookl.com", true },
@@ -31257,13 +34272,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pooltools.net", true },
{ "poolvilla-margarita.net", false },
{ "poon.io", true },
+ { "poopchart.net", true },
{ "poopjournal.rocks", true },
{ "poopr.ru", true },
+ { "poopthereitisla.com", true },
{ "poorclarepa.org", true },
{ "pop-corn.ro", true },
{ "pop3.jp", true },
{ "popcat.ru", true },
{ "popcornpalacefundraising.com", true },
+ { "popcultureshack.com", true },
{ "popeyes.com", true },
{ "popinga.it", true },
{ "popmagz.com", true },
@@ -31275,37 +34293,53 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "popvitrin.com", true },
{ "poquvi.net", true },
{ "porchdaydreamer.com", true },
+ { "porcore.com", true },
{ "porg.es", true },
{ "pork.org.uk", true },
{ "porkel.de", true },
+ { "porn2019.tk", true },
+ { "porn77.info", true },
{ "pornagent.de", true },
+ { "pornalpha.com", true },
{ "pornbay.eu", true },
+ { "pornbay.org", true },
+ { "porncompanions.com", true },
{ "porndragon.net", true },
{ "pornfacefinder.com", false },
{ "pornflare.net", true },
+ { "pornforwomentube.com", true },
{ "porngay.co", true },
{ "pornhubhd.biz", true },
- { "porniwi.com", true },
+ { "pornimg.net", true },
+ { "pornless.biz", true },
{ "pornloupe.com", true },
+ { "pornmax.net", true },
{ "pornmega.net", true },
- { "pornofilme.top", true },
+ { "porno-gif.ru", true },
{ "pornofilmovi.us", true },
+ { "pornohub.su", true },
{ "pornomens.be", true },
+ { "pornoserver.eu", true },
{ "pornovk.xxx", true },
+ { "pornport.org", true },
{ "pornshop.biz", true },
+ { "pornsocket.com", true },
+ { "pornspider.to", true },
{ "pornstop.net", true },
{ "pornsuper.net", true },
+ { "pornteddy.com", true },
+ { "pornultra.net", true },
{ "porny.xyz", true },
{ "porpcr.com", true },
{ "pors-sw.cz", true },
- { "port443.hamburg", true },
+ { "port443.hamburg", false },
{ "port443.se", true },
+ { "port5060.net", true },
{ "port67.org", true },
- { "port80.hamburg", true },
+ { "port80.hamburg", false },
{ "portailevangelique.ca", true },
{ "portal.tirol.gv.at", true },
{ "portalcarriers.com", true },
- { "portalcentric.net", true },
{ "portamiinpista.it", true },
{ "portatiles-baratos.net", true },
{ "porte.roma.it", true },
@@ -31320,30 +34354,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "portsmouthbouncycastles.co.uk", 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 },
{ "poshsecurity.com", true },
{ "positionus.io", true },
{ "positive.com.cy", true },
- { "positivenames.net", true },
+ { "poslusny.com", true },
{ "posobota.cz", true },
- { "posoiu.net", true },
{ "post-darwinian.com", true },
{ "post-darwinism.com", true },
{ "post.com.ar", true },
{ "post.io", true },
- { "post.we.bs", false },
+ { "post.monster", true },
{ "post4me.at", true },
{ "postal.dk", true },
{ "postal3.es", true },
{ "postandfly.com", true },
+ { "postawnasiebie.pl", true },
{ "postblue.info", true },
{ "postbox.life", true },
{ "postcode.nl", true },
@@ -31351,15 +34385,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "postdarwinian.com", true },
{ "postdarwinism.com", true },
{ "postdeck.de", true },
- { "posteo.de", false },
+ { "posteo.de", true },
{ "posterspy.com", true },
{ "postfalls-naturopathic.com", true },
{ "postfinance.ch", true },
+ { "postimages.org", true },
+ { "postimg.cc", true },
{ "postmatescode.com", true },
{ "postn.eu", true },
{ "postpot.co.kr", true },
+ { "postsubmeta.net", true },
{ "posttigo.com", true },
- { "postura-corretta.it", true },
{ "posyperfume.com", true },
{ "potatiz.com", true },
{ "potato.im", true },
@@ -31368,12 +34404,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "potatron.tech", true },
{ "potature.rimini.it", true },
{ "potature.roma.it", true },
+ { "potbar.com", true },
{ "potentialproject.com", false },
{ "poterepersonale.it", true },
{ "pothe.com", true },
{ "pothe.de", true },
+ { "potionlabs.de", true },
{ "potolok.am", true },
+ { "potomacurology.com", true },
{ "potrillionaires.com", true },
+ { "potsdam.directory", true },
{ "potterscraftcider.com", true },
{ "pottersheartministry.org", true },
{ "pottshome.co.uk", true },
@@ -31389,33 +34429,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "povmacrostabiliteit.nl", true },
{ "pow-s.com", true },
{ "pow.jp", true },
- { "powdersnow.top", true },
{ "powelljones.co.uk", true },
- { "power-fit.org", true },
{ "power-flowengineer.com", true },
- { "power-tools24.com", true },
{ "powerball.shop", true },
{ "powerblanket.com", true },
{ "powercloud.technology", true },
{ "poweredbyiris.nl", true },
{ "powerfortunes.com", true },
{ "powerinboxperformance.com", true },
- { "powermatic7.com", true },
{ "powermeter.at", true },
{ "powermint.de", true },
{ "powerpointschool.com", true },
{ "powersaleskc.com", true },
- { "powerserg.org", true },
{ "powersergdatasystems.com", true },
{ "powersergdynamic.com", true },
+ { "powersergemployeesonly.com", true },
{ "powersergholdings.com", true },
{ "powersergthisisthetunnelfuckyouscott.com", true },
{ "powersergthisisthewebsitefuckyouscott.com", true },
+ { "powerwashingproslosangeles.com", true },
{ "powerwellness-korecki.de", true },
{ "pozemedicale.org", true },
{ "pozlife.net", true },
{ "pp-server.com", true },
{ "pp3345.net", true },
+ { "pp5197.co", true },
+ { "pp6957.co", true },
+ { "pp9297.co", true },
+ { "pp9397.com", true },
+ { "pp9721.com", true },
+ { "pp9728.co", true },
{ "ppcrestaurants.com", true },
{ "ppipe.net", true },
{ "pplsoft.nl", true },
@@ -31423,6 +34466,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ppmathis.ch", true },
{ "ppmathis.com", true },
{ "ppmoon.com", true },
+ { "ppoou.co.uk", true },
{ "ppoozl.com", true },
{ "ppro.com", true },
{ "pptavmdata.org", true },
@@ -31439,7 +34483,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "practiceflow.nl", true },
{ "practicepanther.com", true },
{ "practisforms.com", true },
+ { "practixdevelopment.com", true },
{ "practo.com", true },
+ { "pracujwunii.pl", true },
+ { "praderarestaurant.co.uk", true },
{ "prado.it", true },
{ "praeparation-keppner.de", true },
{ "praerien-racing.com", true },
@@ -31449,10 +34496,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "praguepsychology.cz", true },
{ "pragueswim.cz", true },
{ "praha-9.eu", true },
+ { "prajwal-koirala.com", true },
{ "prakhar.uk", true },
{ "prakharprasad.com", true },
{ "praktijkdevecht.nl", true },
{ "praktijkpassepartout.nl", true },
+ { "praktiker.hu", true },
+ { "praleria.com", true },
+ { "pranaprinciple.com", true },
{ "prashchar.uk", true },
{ "prateep.io", true },
{ "pratopronto.org", true },
@@ -31461,19 +34512,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "praxis-dingeldey.de", true },
{ "praxis-familienglueck.de", true },
{ "praxis-odermath.de", true },
+ { "praxistipp24.com", true },
{ "prayerrequest.com", true },
+ { "prayum.com", true },
{ "prc.gov", true },
- { "pre-lean-consulting.de", true },
{ "precept.uk.com", true },
- { "preciosde.es", true },
{ "preciouslife.fr", true },
{ "preciscx.com", true },
{ "preciseassemblies.com", true },
- { "precision.st", true },
+ { "precision-tops.com", true },
{ "precisiondigital-llc.com", true },
{ "precisionmachineservice.com", true },
{ "precisionventures.com", true },
{ "precode.eu", true },
+ { "predkosci.pl", true },
{ "predoiu.ro", true },
{ "preferredreverse.com", true },
{ "prefix.eu", true },
@@ -31486,7 +34538,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "preissler.co.uk", true },
{ "preload.link", true },
{ "preloaded-hsts.badssl.com", true },
- { "prelogica.com.br", true },
{ "preludes.org", true },
{ "prelved.com", true },
{ "prelved.es", true },
@@ -31496,29 +34547,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "prelved.nl", true },
{ "prelved.pl", true },
{ "prelved.se", true },
- { "prematureacceleration.club", true },
{ "preme.name", true },
- { "premieravenue.net", true },
{ "premierbouncycastles.co.uk", true },
+ { "premierdisco.co.uk", true },
{ "premieresloges.ca", false },
{ "premierevents.ie", true },
{ "premierheart.com", true },
{ "premierjewelersjax.com", true },
+ { "premiermaldives.com", true },
+ { "premiermortgageservices.com", true },
{ "premiership-predictors.co.uk", true },
+ { "premioambiente.it", true },
{ "premiumcredit.am", true },
- { "premiumwebdesign.it", true },
+ { "premiumweb.co.id", true },
+ { "premsarswat.me", true },
{ "premtech.nl", true },
{ "prenatalgeboortekaartjes.nl", true },
{ "prepadefi.fr", true },
+ { "prepagosyescortforyou.com", true },
{ "prepaid-cards.xyz", true },
{ "prepaid-voip.nl", true },
+ { "prepaidgirl.com", true },
{ "prepaidkredietkaart.be", true },
{ "prepare-job-hunting.com", true },
{ "prepavesale.fr", true },
+ { "prepedia.org", true },
{ "presbee.com", true },
{ "presbvm.org", true },
{ "presbyterian-colleges.com", true },
{ "prescotonline.co.uk", true },
+ { "presdesdunes.com", true },
{ "present-m.com", true },
{ "presentationmedia.com", true },
{ "preserveourhillcountry.org", true },
@@ -31528,6 +34586,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pressakey.com", true },
{ "presscenter.jp", true },
{ "presscuozzo.com", true },
+ { "pressento.com", true },
{ "pressertech.com", true },
{ "presses.ch", true },
{ "presskr.com", true },
@@ -31539,8 +34598,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
@@ -31548,21 +34607,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pretor.eu", true },
{ "pretor.pl", true },
{ "pretorcup.pl", true },
- { "pretrialservices.gov", true },
{ "pretty.hu", true },
{ "prettygirlcheats.com", true },
- { "prettynode.com", false },
- { "pretwolk.nl", true },
{ "pretzelx.com", true },
{ "prevenir.ch", true },
- { "preventshare.com", true },
{ "preview-it-now.com", true },
+ { "pricegg.com", true },
{ "priceremoval.net", true },
{ "pricesniffer.co", true },
- { "pridetechdesign.com", false },
+ { "prideindomination.com", true },
{ "prielwurmjaeger.de", true },
{ "prihatno.my.id", true },
{ "primaconsulting.net", true },
+ { "primaflorafloristaccrington.co.uk", true },
{ "primalbase.com", true },
{ "primalinea.pro", true },
{ "primalshop.dk", true },
@@ -31571,11 +34628,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "primeequityproperties.com", true },
{ "primoloyalty.com", true },
{ "primorus.lt", true },
- { "princeofwhales.com", true },
+ { "primos-tech.com", true },
+ { "princefamilylaw.co.uk", true },
{ "princessefoulard.com", true },
+ { "princetonnassaupediatrics.com", true },
{ "principalsexam.com", true },
{ "principalstest.com", true },
- { "principalstest.ph", true },
{ "principaltoolbox.com", true },
{ "principia-journal.de", true },
{ "principia-magazin.de", true },
@@ -31586,12 +34644,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "printerinktoutlet.nl", true },
{ "printerleasing.be", true },
{ "printertonerkopen.nl", true },
- { "printf.de", true },
{ "printfn.com", false },
{ "printler.com", true },
{ "printmet.com", true },
{ "printus.de", true },
- { "prior-it.be", true },
{ "priorite-education.com", true },
{ "priorityelectric-agourahills.com", true },
{ "priorityelectric-calabasas.com", true },
@@ -31615,11 +34671,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "prioritynissannewportnewsparts.com", true },
{ "prismacloud.com", true },
{ "prismacloud.green", true },
- { "prismacloud.xyz", true },
{ "prismapayments.com", true },
{ "pristal.eu", true },
{ "pristinegreenlandscaping.com", true },
- { "pritalk.com", true },
{ "priv.im", true },
{ "privacy-week-vienna.at", true },
{ "privacy-week.at", true },
@@ -31631,6 +34685,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "privacyinternational.org", true },
{ "privacynow.eu", true },
{ "privacyscore.org", true },
+ { "privacytools.io", true },
{ "privacyweek.at", true },
{ "privacyweek.de", true },
{ "privacyweek.eu", true },
@@ -31645,23 +34700,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "privateimarketing.com", true },
{ "privatepokertour.com", true },
{ "privatepropertymallorca.com", true },
+ { "privateservice.cz", true },
{ "privatestatic.com", false },
{ "privatevoid.net", true },
- { "privatewolke.com", true },
{ "privatfrei.de", true },
+ { "privatislauga.lt", true },
{ "privatpatient-krankenhaus.de", true },
+ { "privc.io", true },
{ "privea.fr", true },
{ "privelust.nl", true },
{ "priverify.com", true },
{ "privy-staging.com", true },
{ "privy.com", true },
+ { "prizehometickets.com.au", true },
+ { "prizelink.com.au", true },
{ "prjktruby.com", false },
{ "prknje.co", true },
{ "prlved.co.uk", true },
{ "prnav.com", true },
- { "pro-ben.sk", true },
{ "pro-bike.ro", true },
- { "pro-link.eu", true },
{ "pro-mile.pl", true },
{ "pro-netz.de", false },
{ "pro-taucher.com", true },
@@ -31677,6 +34734,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "probiv.cc", true },
{ "procar-rheinland.de", true },
{ "procarservices.com", true },
+ { "procarswoking.com", true },
{ "procensus.com", true },
{ "procert.ch", true },
{ "processesinmotion.com", true },
@@ -31689,7 +34747,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "procreditbank.com.al", true },
{ "proctorio.com", true },
{ "prodct.info", true },
- { "prodegree.com", true },
{ "prodietix.cz", true },
{ "prodigia.com", false },
{ "prodinger.com", true },
@@ -31714,17 +34771,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "proemployeeprotection.net", true },
{ "prof.ch", true },
{ "profection.biz", true },
- { "professional.cleaning", true },
- { "professionalboundaries.com", true },
+ { "professionalbeautyshop.it", true },
{ "professors.ee", true },
- { "profhome-shop.com", true },
{ "profidea.cz", true },
{ "profile.tf", true },
{ "profiles.google.com", true },
+ { "profilib.top", true },
{ "profitablewebprojects.com", true },
{ "profitopia.de", true },
{ "profloorstl.com", true },
+ { "profmetod.com", true },
+ { "proformer.io", true },
{ "proft.eu", true },
+ { "profumeria.roma.it", true },
{ "progarm.org", true },
{ "progenda.be", true },
{ "progenitor.space", true },
@@ -31734,8 +34793,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "proggersession.com", true },
{ "proggersession.de", true },
{ "progiscad.com", true },
+ { "programarya.com", true },
{ "programistka.com", true },
- { "programlama.tk", true },
{ "programmaticmagic.com", true },
{ "programsareproofs.com", true },
{ "programsupport300procent.com", true },
@@ -31752,6 +34811,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "project86fashion.com", true },
{ "projectarmy.net", false },
{ "projectborealisgitlab.site", true },
+ { "projectbotticelli.com", true },
{ "projectforge.org", true },
{ "projectlinuseasttn.org", true },
{ "projectmakeit.com", true },
@@ -31759,14 +34819,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "projectsafechildhood.gov", true },
{ "projectsecretidentity.com", true },
{ "projectsecretidentity.org", true },
- { "projectunity.io", true },
+ { "projectvault.ovh", true },
{ "projectxyz.eu", true },
{ "projektarbeit-projektplanung.de", true },
{ "projektzentrisch.de", true },
{ "projest.ch", true },
{ "projet-fly.ch", true },
+ { "projet-saara.com", true },
{ "prolan.pw", true },
{ "prolearningcentre.com", true },
+ { "proledwall.nl", true },
{ "prolinos.de", true },
{ "promedyczny.pl", true },
{ "prometheanfire.net", true },
@@ -31789,9 +34851,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "promoteiq.com", true },
{ "promoterms.com.au", true },
{ "promotioncentre.co.uk", true },
+ { "promovite.com.mx", true },
{ "promozione.info", true },
{ "promuovi.tv", true },
{ "pronto-intervento.net", true },
+ { "prontocleaners.co.uk", true },
+ { "prontointerventofognature.roma.it", true },
{ "prontointerventoimmediato.it", true },
{ "prontossl.com", true },
{ "proofwiki.org", true },
@@ -31799,6 +34864,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "proovn.com", true },
{ "propagandablog.de", true },
{ "propagationtools.com", true },
+ { "propelgrowth.com", true },
{ "propermatches.com", true },
{ "properticons.com", true },
{ "property-catalogue.eu", true },
@@ -31807,12 +34873,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "propertyinside.id", true },
{ "propertyone.mk", true },
{ "propertysales-almeria.com", true },
- { "prophiler.de", true },
{ "propipesystem.com", true },
{ "proposalonline.com", true },
{ "propr.no", true },
{ "proprietairesmaisons.fr", true },
{ "propseller.com", true },
+ { "propshub.com", true },
+ { "prosafilosofica.com.br", true },
{ "proseandleprechauns.com", true },
{ "proservices.vip", true },
{ "prospanek.cz", true },
@@ -31821,24 +34888,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "prospecto.hr", true },
{ "prospecto.lt", true },
{ "prosperfit.com", true },
+ { "prosperident.com", true },
+ { "prosperity-textile.com", true },
{ "prosperontheweb.com", true },
+ { "prosperops.com", true },
{ "prospo.co", true },
- { "prostecheat.xyz", true },
{ "prostohobby.ru", true },
- { "prostoporno.vip", true },
{ "prostye-recepty.com", true },
{ "prosurveillancegear.com", true },
{ "prot.ch", true },
- { "protech.ge", true },
+ { "proteco.sk", true },
{ "protectedreport.com", true },
{ "protectem.de", true },
{ "protectoraanimalesalicante.org", true },
+ { "protectorlando.com", true },
{ "protectr.de", true },
{ "protege.moi", true },
{ "protegetudescanso.com", true },
{ "protein-riegel-test.de", true },
- { "proteinnuts.cz", false },
- { "proteinnuts.sk", false },
{ "protempore.fr", true },
{ "proteogenix-products.com", true },
{ "proteogenix.science", true },
@@ -31854,12 +34921,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "proust.media", false },
{ "proustmedia.de", false },
{ "prove.no", true },
- { "provectus.de", true },
{ "proveits.me", false },
{ "provence-appartements.com", true },
- { "providencecmc.com", true },
+ { "provent.io", true },
{ "providerlijst.com", true },
{ "providerlijst.nl", true },
+ { "provinciaotlavoro.it", true },
{ "provision-isr.nl", true },
{ "provitec.com", true },
{ "provitec.de", true },
@@ -31871,23 +34938,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "proxirealtime.com", true },
{ "proxybay.bet", true },
{ "proxybay.bz", true },
+ { "proxybay.cc", true },
{ "proxybay.co", true },
{ "proxybay.eu.org", true },
+ { "proxybay.ist", true },
{ "proxybay.la", true },
{ "proxybay.one", true },
{ "proxybay.tv", true },
{ "proxyportal.eu", true },
+ { "proxyportal.org", true },
{ "proyectafengshui.com", true },
+ { "proyecto13.com", true },
{ "prpferrara.it", true },
- { "prplz.io", true },
- { "prpr.cloud", true },
+ { "prsnlafk.com", true },
{ "prt.in.th", true },
{ "prtimes.com", true },
{ "prtpe.com", true },
+ { "prtscloud.ddns.net", true },
{ "pru.com.hk", true },
{ "pru.hk", true },
- { "pruma.com.br", true },
{ "prvikvadrat.hr", true },
+ { "prvnirodinna.cz", true },
{ "prylarprylar.se", true },
{ "prynhawn.com", true },
{ "prynhawn.net", true },
@@ -31895,13 +34966,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pryspry.com", true },
{ "prytkov.com", true },
{ "przemas.pl", true },
+ { "przerabianiezdjec.pl", true },
{ "ps-provider.co.jp", true },
{ "ps-sale.ru", true },
- { "ps4all.nl", true },
- { "psa.gov", true },
+ { "ps2911.com", true },
{ "psabrowse.com", true },
+ { "psasines.pt", true },
{ "psauxit.com", true },
- { "psb.cloud", true },
{ "psb1.org", true },
{ "psb1911.com", true },
{ "psb4ukr.org", true },
@@ -31913,14 +34984,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "psdreams.com", true },
{ "psdsfn.com", true },
{ "psdsuc.com", true },
+ { "pseek.com", true },
{ "pself.net", true },
{ "pseric.site", true },
{ "pseta.ru", true },
+ { "pseudo.coffee", true },
{ "psg-calw.de", true },
{ "psg.bg", true },
{ "pshostpk.com", true },
{ "psici.eu", true },
- { "psicoexpansao.com.br", true },
{ "psicologajanainapresotto.com.br", true },
{ "psicologasandrabernal.es", true },
{ "psicologo-especialista-barcelona.com", true },
@@ -31932,7 +35004,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "psoriasischecker.com", true },
{ "pssgcsim.org", true },
{ "pst.moe", true },
- { "pste.pw", true },
{ "psu.je", true },
{ "psw-consulting.de", true },
{ "psw-group.de", true },
@@ -31944,7 +35015,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "psychintervention.com", true },
{ "psychiq.com", true },
{ "psycho-lobby.com", true },
- { "psycho.space", true },
{ "psychoactive.com", true },
{ "psychoco.net", false },
{ "psychotechnique.be", true },
@@ -31952,34 +35022,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "psychotechniquetest.fr", true },
{ "psychotherapie-kp.de", true },
{ "psycolleges.com", true },
- { "psydix.org", true },
- { "psylab.cc", true },
- { "psylab.re", true },
- { "psylab.vip", true },
{ "psytrance-pro.com", true },
{ "pt-d.ru", true },
{ "pt-server.de", true },
{ "pt.im", true },
+ { "ptab2pt.ga", true },
{ "ptal.eu", true },
{ "ptasiepodroze.eu", true },
{ "ptbi.org.pl", true },
{ "ptbx.co", true },
+ { "pteceng.com", true },
{ "pterodactylus.cz", true },
{ "ptfiber.com", true },
{ "ptfiber.ru", true },
{ "ptfiber.spb.ru", true },
{ "ptgoldensun.com", true },
- { "ptm.ro", false },
+ { "ptm.ro", true },
{ "ptmarquees.ie", true },
- { "ptr.kr", true },
{ "ptrbrs.nl", true },
{ "ptrl.ws", true },
{ "ptron.org", true },
+ { "ptrt.xyz", true },
{ "pty.gg", true },
{ "puac.de", true },
{ "pubclub.com", true },
{ "pubean.com", true },
- { "pubi.me", false },
+ { "pubi.me", true },
{ "pubkit.io", true },
{ "publanda.nl", true },
{ "publi-all.be", true },
@@ -31987,60 +35055,70 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "public-projects.com", true },
{ "public-projects.de", true },
{ "public-vocals.de", true },
+ { "publications.qld.gov.au", false },
{ "publiccarauctionscalifornia.com", true },
+ { "publicholidays.im", true },
{ "publicintegrity.org", true },
{ "publicintelligence.net", true },
- { "publicrea.com", true },
{ "publicsuffix.org", true },
- { "publiq.space", true },
+ { "publisherservices.co", true },
{ "pubmire.com", false },
{ "pubreview.com.au", true },
{ "pubreviews.com", true },
{ "pucchi.net", true },
{ "pucssa.org", true },
{ "puddis.de", true },
+ { "pudro.com", true },
+ { "puestifiestas.mx", true },
+ { "puestosdeferia.mx", true },
{ "puggan.se", true },
{ "pugovka72.ru", true },
{ "puissancemac.ch", true },
{ "pukfalkenberg.dk", true },
+ { "pukkapilatesandpt.com", true },
+ { "pulizia.milano.it", true },
+ { "pulizia.roma.it", true },
{ "pulizieuffici.milano.it", true },
+ { "pulizievap.it", true },
{ "pulpproject.org", true },
{ "pulsarsecurity.com", true },
{ "pulser.stream", true },
+ { "pulseroot.ga", true },
{ "pulsnitzer-lebkuchen-shop.de", true },
{ "pulsnitzer-lebkuchen.de", true },
{ "pulsnitzer-lebkuchen.shop", true },
{ "pulsnitzer-pfefferkuchen-shop.de", true },
{ "pulsnitzer-pfefferkuchen.shop", true },
+ { "pulsr.ml", true },
{ "pumpandcash.com", true },
{ "pumperszene.com", true },
{ "punchlinetheatre.co.uk", true },
{ "punchlinetheatre.com", true },
{ "punchunique.com", true },
{ "puneflowermall.com", true },
- { "punematka.com", true },
+ { "punematka.com", false },
{ "punikonta.de", true },
{ "punitsheth.com", true },
{ "punkapoule.fr", true },
{ "punknews.org", true },
+ { "puntacananetwork.com", true },
{ "puntcunts.com", true },
{ "punte-juwelier.nl", true },
{ "puntonium.hu", true },
{ "pupboss.com", true },
{ "puppet.pl", true },
{ "puppo.space", true },
- { "puq.moe", true },
{ "puralps.ch", true },
{ "puravida-estate.com", true },
{ "pure-gmbh.com", true },
{ "purecabo.com", true },
- { "purefkh.xyz", true },
+ { "purefkh.xyz", false },
{ "purefreefrom.co.uk", true },
{ "pureitsolutionsllp.com", true },
{ "purejewels.com", true },
- { "purelunch.co.uk", true },
{ "purenvi.ca", true },
{ "purevapeofficial.com", true },
+ { "purexis.ch", true },
{ "purityclothing.co.uk", true },
{ "purplebooth.co.uk", false },
{ "purplebricks.co.uk", true },
@@ -32057,17 +35135,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "purplestar.com", true },
{ "purplestar.mobi", true },
{ "purplewindows.net", true },
- { "purplez.pw", true },
- { "purrfect-box.co.uk", true },
+ { "purplscientific.com", true },
{ "purrfectboudoir.com", true },
+ { "purrfectcams.com", true },
{ "purrfectmembersclub.com", true },
{ "purrfectswingers.com", true },
{ "pursuedtirol.com", true },
{ "puryearlaw.com", true },
- { "pusatinkubatorbayi.com", true },
+ { "pushers.com.mx", true },
{ "pushoflove.com", true },
+ { "pushpanel.io", true },
{ "pushrax.com", true },
- { "pussr.com", true },
+ { "pussylickingnow.com", true },
{ "put.moe", true },
{ "put.re", true },
{ "putatara.net", true },
@@ -32080,7 +35159,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "puxlit.net", true },
{ "puyallupnissanparts.com", true },
{ "puyblanc.info", true },
- { "puzz.me", true },
{ "puzzlage.com", true },
{ "puzzle-welt.ch", true },
{ "puzzlepoint.ch", true },
@@ -32096,9 +35174,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pwaresume.com", true },
{ "pwdsafe.com", false },
{ "pwe.vision", true },
- { "pwnedpass.tk", true },
{ "pwnies.dk", true },
{ "pwolk.com", true },
+ { "pwoss.xyz", true },
{ "pxetech.com", true },
{ "pxgamer.xyz", true },
{ "pxl-mailtracker.com", true },
@@ -32109,8 +35187,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pycoder.org", true },
{ "pycrc.org", true },
{ "pycrypto.org", true },
- { "pycycle.info", true },
{ "pygarage.com", false },
+ { "pymesvalencia.es", true },
{ "pyopenssl.org", true },
{ "pypa.io", true },
{ "pypi.io", true },
@@ -32119,24 +35197,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pyramidsofchi.com", false },
{ "pyrenees.io", true },
{ "pyrios.pro", true },
+ { "pyroballpcbs.com", true },
{ "pyrotechnologie.de", true },
{ "pysays.net", true },
{ "pyspace.org", true },
{ "python-hyper.org", true },
{ "python.org", false },
- { "pyxo.net", true },
+ { "pyxo.net", false },
{ "pyzlnar.com", true },
{ "pzpittsburgh.com", true },
{ "pzsearch.nl", true },
{ "q-inn.com", true },
{ "q-inn.nl", true },
{ "q-technologies.com.au", true },
- { "q1q2q3.tk", true },
+ { "q01.us", true },
+ { "q1000.nl", true },
+ { "q5197.co", true },
+ { "q6729.co", true },
+ { "q6729.com", true },
+ { "q6957.co", true },
+ { "q9297.co", true },
+ { "q9397.com", true },
+ { "q9721.com", true },
+ { "q9728.co", true },
{ "qa-brandywineglobal.com", true },
{ "qa-team.xyz", true },
{ "qa.fedoraproject.org", true },
{ "qa.stg.fedoraproject.org", true },
- { "qabalah.jp", true },
+ { "qabel.de", true },
+ { "qacademy.com.au", true },
{ "qaconstrucciones.com", true },
{ "qadmium.com", true },
{ "qambarraza.com", true },
@@ -32144,8 +35233,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qaq.cloud", true },
{ "qaq.sh", true },
{ "qarea.com", true },
+ { "qarto.com", true },
{ "qaz.cloud", true },
- { "qbeing.info", true },
{ "qbiju.com.br", true },
{ "qbiltrade.com", true },
{ "qbus.pl", true },
@@ -32162,6 +35251,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qctravelschool.com", true },
{ "qdabogados.com", true },
{ "qdon.space", false },
+ { "qdqlh.cn", true },
{ "qe-lab.at", true },
{ "qedcon.org", false },
{ "qelectrotech.org", true },
@@ -32175,8 +35265,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qianmo.com", true },
{ "qianqiao.me", true },
{ "qiaohong.org", true },
- { "qicomidadeverdade.com.br", true },
{ "qifu.me", true },
+ { "qihl.gg", true },
{ "qiliang.wang", true },
{ "qingly.me", true },
{ "qingpei.me", true },
@@ -32184,22 +35274,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qipl.org", true },
{ "qis.fr", true },
{ "qitarabutrans.com", true },
- { "qiukong.com", true },
+ { "qiuby.de", true },
{ "qiuri.org", false },
{ "qivonline.pt", true },
- { "qiwi.be", true },
{ "qixi.biz", true },
{ "qkka.org", true },
- { "qklshequ.com", true },
{ "qkmortgage.com", true },
+ { "ql.tc", true },
+ { "qlarititech.io", true },
{ "qlcvea.com", true },
{ "qldconservation.org.au", true },
{ "qldformulaford.org", true },
- { "qledtech.com", false },
{ "qlix.pl", true },
{ "qlrace.com", false },
{ "qm-marzahnnordwest.de", true },
- { "qnq.moe", true },
+ { "qmee.com", true },
+ { "qoacher.com", true },
{ "qochealth.com", true },
{ "qoml.net", true },
{ "qonto.eu", true },
@@ -32207,19 +35297,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qotw.net", true },
{ "qpcna.org", true },
{ "qponverzum.hu", true },
+ { "qpresentes.com.br", true },
{ "qq-navi.com", true },
- { "qq885.com", true },
+ { "qq5197.co", true },
+ { "qq52o.me", true },
+ { "qq6729.co", true },
+ { "qq6729.com", true },
+ { "qq6957.co", true },
+ { "qq9297.co", true },
+ { "qq9397.com", true },
+ { "qq9721.com", true },
+ { "qq9728.co", true },
+ { "qqiao.me", true },
{ "qqrss.com", true },
{ "qr-city.org", true },
{ "qr.cl", true },
+ { "qrara.net", true },
{ "qrbird.com", true },
{ "qrcontagion.com", true },
+ { "qristianuliarkhi.ge", true },
{ "qrpatrol.com", true },
{ "qrpth.eu", true },
{ "qruiser.com", true },
{ "qscloud.de", true },
- { "qtacairsoft.com", true },
- { "qtap.me", false },
{ "qtl.me", true },
{ "qtmsheep.com", true },
{ "qtn.net", true },
@@ -32234,21 +35334,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "quackerswaterproofing.com", true },
{ "quadra.srl", true },
{ "quaedam.org", true },
+ { "quafe.tech", true },
+ { "quagga.me", true },
{ "quaggan.co", true },
{ "quai10.org", false },
+ { "qualitation.co.uk", true },
{ "qualite-ecole-et-formation.ch", true },
{ "quality-life.gr", true },
- { "qualityedgarsolutions.com", true },
{ "qualityhomesystems.com", true },
{ "qualityhvacservices.com", true },
+ { "qualitylogoproducts.com", true },
{ "qualityofcourse.com", true },
{ "qualitypropertycare.co.uk", true },
+ { "qualitywaterproofing.com", true },
{ "quallo.com", true },
{ "qualpay.biz", true },
+ { "qualpay.com", true },
{ "qualtrics.com", true },
{ "quant-labs.de", true },
- { "quantaloupe.tech", true },
{ "quanterra.ch", true },
+ { "quantifiedcommerce.com", true },
{ "quantolytic.de", true },
{ "quantoras.com", true },
{ "quantum-mechanics.com", true },
@@ -32259,19 +35364,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "quareal.ru", true },
{ "quarkdose.de", true },
{ "quarterfull.com", true },
+ { "quarticon.com", true },
{ "quartix.com", true },
{ "quartzclinical.com", true },
{ "quasarelectronics.co.uk", true },
{ "quasiproxy.com", true },
{ "quasseldroid.info", true },
{ "quatrefoiscent.fr", true },
+ { "quaxio.com", true },
{ "quay.net", true },
{ "qubes-os.org", true },
{ "qubyte.codes", true },
{ "quchao.com", true },
+ { "quebajelagasolina.com", true },
+ { "quebec.casa", true },
+ { "quedos.com.au", true },
{ "queencomplex.net", true },
{ "queene.eu", true },
- { "queens.lgbt", true },
{ "queensrdapartments.com.au", true },
{ "queer.party", true },
{ "queercoders.com", false },
@@ -32281,29 +35390,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "quelle.ch", true },
{ "quelle.de", true },
{ "quelleformation.net", true },
- { "quemeloquitan.com", true },
- { "queminventou.com.br", true },
{ "quemmeliga.com", true },
+ { "quenecesitopara.com", true },
{ "quenotejodan.cl", true },
+ { "quentin-sauvetre.fr", true },
{ "quentinchevre.ch", true },
{ "queo.com.co", true },
{ "quera.ir", true },
{ "quermail.com", true },
+ { "queropescar.net", true },
{ "query-massage.com", true },
{ "question.com", true },
+ { "questionscafe.org", true },
+ { "questionyu.com", true },
{ "questsocial.it", true },
{ "quevisiongrafica.com", true },
+ { "quic.network", true },
{ "quic.stream", true },
- { "quickboysvrouwen2.nl", true },
+ { "quickassortments.com", true },
{ "quickinfosystem.com", true },
- { "quickrelations.de", true },
+ { "quicksell.store", true },
+ { "quicksupplies.us", true },
{ "quieroserbombero.org", true },
+ { "quieroserdoula.com", true },
+ { "quieroserdoula.es", true },
+ { "quieroserdoula.org", true },
{ "quiet-waters.org", true },
{ "quietapple.org", true },
{ "quietboy.net", true },
{ "quikchange.net", true },
{ "quikpay.com.au", true },
- { "quilmo.com", true },
{ "quimatic.com.br", true },
{ "quinnlabs.com", true },
{ "quinoa24.com", true },
@@ -32314,27 +35430,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "quiq.us", true },
{ "quire.io", true },
{ "quirkytravelguy.com", 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 },
- { "qunzi.org", true },
{ "quote.gq", true },
+ { "quotedtale.com", true },
{ "quoteidiot.com", true },
{ "quotev.com", true },
{ "quovadisaustria.com", true },
{ "quppa.net", true },
+ { "quranliveonline.com", true },
{ "quuz.org", true },
{ "qvg.company", true },
{ "qvggroup.com", true },
{ "qvi.st", true },
{ "qvitoo.com", true },
+ { "qvq.cloud", true },
{ "qwans.nl", true },
{ "qwant.com", true },
{ "qwant.fr", true },
+ { "qwaser.fr", true },
{ "qwdqwd.de", true },
{ "qwe7002.com", true },
{ "qweepi.de", false },
@@ -32344,57 +35461,63 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qwq.moe", true },
{ "qx.fi", true },
{ "qx.se", true },
- { "qxy.ch", true },
{ "qxzg.xyz", true },
{ "qxzgssr.xyz", true },
{ "r-ay.cn", true },
{ "r-rwebdesign.com", true },
{ "r-t-b.fr", true },
- { "r0uzic.net", true },
+ { "r102.ch", true },
{ "r1a.eu", true },
{ "r1ch.net", true },
{ "r2d2pc.com", true },
{ "r33.space", true },
{ "r3bl.blog", true },
{ "r3bl.me", true },
- { "r3nt3r.com", true },
{ "r3s1stanc3.me", true },
{ "r40.us", true },
+ { "r5197.co", true },
{ "r6-team.ru", true },
+ { "r6729.co", true },
+ { "r6729.com", true },
+ { "r6957.co", true },
{ "r7.com.au", true },
{ "r7h.at", true },
- { "r811.de", true },
+ { "r9297.co", true },
+ { "r9397.com", true },
+ { "r9721.com", true },
+ { "r9728.co", true },
{ "ra-joergensen.de", true },
{ "ra-micro-koeln.de", true },
- { "ra-schaal.de", false },
+ { "ra-schaal.de", true },
{ "ra.co.ke", true },
{ "ra.vc", true },
{ "ra4wvpn.com", true },
+ { "raadgiverborsen.com", true },
{ "raah.co", true },
+ { "raailto.com", true },
+ { "raaynk.com", true },
{ "rabbitfinance.com", true },
{ "rabbitinternet.com", true },
{ "rabica.de", true },
{ "rabotaescort.com", true },
- { "rabynska.eu", true },
{ "raccoltarifiuti.com", true },
- { "racdek.net", true },
- { "racdek.nl", true },
+ { "raccoon-music.com", true },
+ { "raccoon.fun", true },
{ "racermaster.xyz", true },
{ "raceviewcycles.com", true },
{ "raceviewequestrian.com", true },
- { "rachelchen.me", true },
{ "racheldiensthuette.de", true },
{ "rachelmoorelaw.com", true },
{ "rachelreagan.com", true },
{ "rachelsbouncycastles.co.uk", true },
{ "rachida-dati.eu", true },
{ "rachurch.net", true },
+ { "racing-planet.cz", true },
{ "racius.com", true },
{ "rackerlab.com", true },
{ "raclet.co.uk", true },
{ "raconconsulting.co.uk", true },
{ "racoo.net", true },
- { "racozo.com", true },
{ "racunovodstvo-prina.si", true },
{ "radar.sx", true },
{ "radaravia.ru", true },
@@ -32409,9 +35532,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "radicalsub.com.br", true },
{ "radins.com", true },
{ "radio-pulsar.eu", true },
- { "radio-utopie.de", true },
+ { "radio-utopie.de", false },
{ "radio1.ie", true },
{ "radiobox.net", true },
+ { "radiocommande-industrielle.fr", true },
{ "radiocommg.com.br", true },
{ "radiocomsaocarlos.com.br", true },
{ "radiofmimagen.net", true },
@@ -32423,20 +35547,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "radiomontebianco.it", true },
{ "radionicabg.com", true },
{ "radiopleer.net", true },
- { "radiopolarniki.spb.ru", true },
- { "radiormi.com", true },
+ { "radioradicchio.it", true },
{ "radiorsvp.com", false },
{ "radiosendungen.com", true },
{ "radis-adopt.com", true },
{ "radiumcode.com", true },
{ "radiumone.io", true },
+ { "radiumtree.com", true },
+ { "radomir-online.ru", true },
{ "radondetectionandcontrol.com", true },
{ "radreisetraumtreibstoff.de", true },
{ "radyabkhodro.net", true },
{ "radyn.com", true },
+ { "radzikow.ski", true },
+ { "raeder-test.azurewebsites.net", true },
+ { "raelto.com", true },
{ "raeu.me", true },
{ "raeven.nl", true },
{ "raevinnd.com", true },
+ { "raewardfresh.co.nz", true },
{ "rafaelmagalhaesweb.com", true },
{ "rafas.com.tr", true },
{ "rafey.xyz", true },
@@ -32450,36 +35579,64 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rage.rip", true },
{ "rage4.com", true },
{ "ragingserenity.com", true },
+ { "ragu.co.uk", true },
{ "rahulpnath.com", true },
{ "raid-runners.fr", true },
+ { "raidemeraude.com", true },
{ "raidensnakesden.co.uk", true },
{ "raidensnakesden.com", true },
{ "raidensnakesden.net", true },
{ "raidstone.net", true },
{ "raiffeisen-kosovo.com", true },
{ "raiffeisenzeitung.at", true },
+ { "raiilto.com", true },
+ { "raiito.com", true },
{ "rail-o-rama.nl", true },
+ { "rail-to.com", true },
{ "rail24.nl", true },
{ "rail360.nl", true },
{ "railbird.nl", true },
{ "railduction.eu", true },
{ "railgun.ac", true },
{ "railgun.com.cn", true },
+ { "raillto.com", true },
{ "railorama.nl", true },
+ { "railot.com", true },
{ "railpassie.nl", true },
+ { "railto-sucks.com", true },
+ { "railto.cm", true },
+ { "railto.co", true },
+ { "railto.com.de", true },
+ { "railto.com.se", true },
+ { "railto.exchange", true },
+ { "railto.llc", true },
+ { "railto.net", true },
+ { "railto.org", true },
+ { "railtocom.com", true },
+ { "railtoe.com", true },
+ { "railtoexchange.com", true },
+ { "railtoh.com", true },
+ { "railtollc.com", true },
{ "railtoo.com", true },
+ { "railtosucks.com", true },
+ { "railtow.com", true },
+ { "railtp.com", true },
+ { "railtto.com", true },
{ "railvideo.co.uk", true },
{ "railvideo.net", true },
{ "railvideo.nl", true },
{ "railwaytech.net", true },
{ "raimondos.com", true },
{ "rain.bz", true },
+ { "rainbow.pizza", true },
{ "rainbowbay.org", true },
{ "rainbowinflatables.co.uk", true },
{ "rainbowstore.com.au", true },
{ "rainbowstore.com.ua", true },
+ { "raincoat.systems", true },
{ "rainel.at", true },
{ "rainforest.engineering", true },
+ { "raingoc.com", true },
{ "rainiv.com", true },
{ "rainpaper.com", true },
{ "rainstormsinjuly.co", true },
@@ -32490,16 +35647,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "raisecorp.com", true },
{ "raiseyourflag.com", true },
{ "raissarobles.com", true },
- { "raito.ooo", true },
+ { "raitlo.com", true },
+ { "rajastore.ma", true },
{ "rajivshah.co.uk", true },
- { "rajkapoordas.com", true },
{ "rajyogarishikesh.com", true },
{ "rak-business-service.com", true },
+ { "raketaro.de", true },
{ "raku.bzh", true },
{ "rakugokai.net", true },
+ { "raleto.com", true },
{ "ralf-huebscher.de", true },
{ "ralfs-zusizone.de", true },
{ "ralimtek.com", false },
+ { "rallto.com", true },
{ "rally-base.com", true },
{ "rally-base.cz", true },
{ "rally-base.eu", true },
@@ -32507,16 +35667,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rally-vysledky.cz", true },
{ "rallybase.cz", true },
{ "rallybase.eu", true },
- { "rallycycling.com", true },
{ "rallypodium.be", true },
{ "raltha.com", true },
+ { "ralvke.rocks", true },
{ "ram-it.nl", true },
{ "ram.nl", true },
{ "ramarka.de", true },
+ { "rambii.de", true },
{ "rambo.codes", true },
{ "rammstein-portugal.com", true },
+ { "rampestyuma.com", true },
{ "ramrecha.com", false },
+ { "ramsdensforcash.co.uk", true },
+ { "ramsdensplc.com", true },
{ "ramsor-gaming.de", true },
+ { "ranasinha.com", true },
+ { "rancowar.com", true },
{ "randc.org", true },
{ "randewoo.ru", true },
{ "randolf.ca", true },
@@ -32540,35 +35706,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ranktopay.com", true },
{ "ranos.org", true },
{ "ranson.com.au", true },
- { "rante.com", true },
- { "ranyeh.com", true },
+ { "ranyeh.com", false },
{ "ranzbak.nl", true },
{ "raoul-kieffer.net", true },
+ { "rap4ever.org", true },
{ "rapenroer.com", true },
{ "rapenroer.nl", true },
{ "raphael.li", true },
{ "raphaeladdile.com", true },
{ "raphaelcasazza.ch", true },
- { "raphaelschmid.eu", true },
{ "raphrfg.com", true },
{ "rapidapp.io", true },
{ "rapidoo.com.br", true },
+ { "rapidplumbingpenrith.com.au", true },
{ "rapidshit.net", true },
{ "rapidstone.com", true },
{ "raptorsrapture.com", true },
{ "raraflora.com.au", true },
- { "rareative.com", true },
{ "raryosu.info", true },
{ "rasagiline.com", true },
+ { "rascahan.org", true },
{ "rascals-castles.co.uk", true },
{ "rascalscastles.co.uk", true },
{ "rascalscastlesdoncaster.co.uk", true },
{ "rasebo.ro", true },
+ { "raspberrypi.tv", true },
{ "raspii.tech", true },
+ { "rassro.sk", true },
{ "rasty.cz", true },
{ "ratd.net", true },
{ "ratebridge.com", true },
- { "ratelsec.com", true },
+ { "ratelimited.me", true },
{ "rathbonesonline.com", true },
{ "rathgeb.org", true },
{ "ratinq.co", true },
@@ -32576,42 +35744,50 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rationalism.com", true },
{ "rationalops.com", true },
{ "rattenkot.io", true },
+ { "raucris.ro", true },
{ "raulrivero.es", true },
- { "rault.io", true },
{ "rauros.net", true },
{ "rauschenbach.de", true },
{ "rautelow.de", true },
- { "ravada-vdi.com", true },
{ "ravanalk.com", true },
{ "ravchat.com", true },
{ "raven.dog", true },
+ { "ravencoin.com", true },
+ { "ravencoin.org", true },
+ { "ravenger.net", true },
+ { "ravenrockrp.com", true },
{ "ravensbuch.de", true },
{ "ravhaaglanden.org", true },
{ "ravindran.me", true },
{ "ravis.org", true },
{ "ravkr.duckdns.org", true },
+ { "rawcode.xyz", true },
{ "rawdutch.nl", true },
{ "rawinfosec.com", true },
+ { "rawpearls.com", true },
{ "rawsec.net", true },
- { "raxion.cf", true },
- { "raxion.tk", true },
+ { "ray-home.de", true },
+ { "ray-works.de", true },
{ "rayan-it.ir", true },
{ "rayiris.com", true },
{ "raykitchenware.com", true },
{ "raymcbride.com", true },
+ { "raymd.de", true },
+ { "raysei.com", true },
{ "raystark.com", true },
- { "razberry.kr", true },
- { "razeen.me", true },
+ { "rayworks.de", true },
{ "razeencheng.com", true },
{ "raziskovalec-resnice.com", true },
{ "razrsec.uk", true },
{ "razvanburz.net", true },
{ "rbensch.com", true },
{ "rbflote.lv", true },
+ { "rbin.nl", true },
{ "rbltracker.com", true },
{ "rbmland.com", true },
{ "rbnet.xyz", true },
{ "rbran.com", true },
+ { "rbs.com", true },
{ "rbuddenhagen.com", true },
{ "rbx-talk.xyz", true },
{ "rbx.com", true },
@@ -32623,11 +35799,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rcd.cz", true },
{ "rcdocuments.com", true },
{ "rcgoncalves.pt", true },
- { "rchrdsn.uk", true },
{ "rcifsgapinsurance.co.uk", true },
- { "rclsm.net", true },
- { "rcmlinx.com", true },
- { "rcmpsplib.com", true },
+ { "rclaywilliamsdo.com", true },
+ { "rcmstream.com", true },
{ "rcmurphy.com", true },
{ "rcnitrotalk.com", true },
{ "rcraigmurphy.com", true },
@@ -32635,17 +35809,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rct.sk", true },
{ "rct.uk", true },
{ "rctalk.com", true },
+ { "rcvd.io", true },
+ { "rdactive.de", true },
+ { "rdactive.net", true },
+ { "rdap.co.il", true },
+ { "rdcdesign.com", true },
+ { "rdfencingandgates.co.uk", true },
{ "rdfproject.it", true },
{ "rdh.asia", true },
{ "rdjb2b.com", true },
- { "rdl.at", false },
+ { "rdl.at", true },
{ "rdmc.fr", true },
{ "rdmrotterdam.nl", true },
{ "rdmtaxservice.com", true },
{ "rdns.cc", true },
{ "rdv-cni.fr", true },
{ "rdv-prefecture.com", true },
- { "rdwh.tech", false },
+ { "rdwh.tech", true },
{ "re-curi.com", true },
{ "re-engines.com", true },
{ "reach-on.de", true },
@@ -32655,19 +35835,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reaconverter.com", true },
{ "react-db.com", true },
{ "reactions.ai", true },
- { "reactions.studio", true },
- { "reactivarte.es", true },
{ "reactive-press.com", true },
+ { "reactivemarkets.com", true },
{ "reactpwa.com", true },
{ "read.sc", true },
{ "readabilitychecker.com", true },
{ "reades.co.uk", true },
{ "reades.uk", true },
+ { "readify.net", true },
{ "readingrats.de", true },
{ "readitify.com", true },
+ { "readityourself.net", true },
{ "readmusiccoleman.com", true },
{ "readonly.de", true },
{ "readouble.com", false },
+ { "reads.wang", true },
+ { "ready4bf.tk", true },
{ "readybetwin.com", true },
{ "readyrowan.com", true },
{ "readyrowan.org", true },
@@ -32680,22 +35863,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "real-digital.co.uk", true },
{ "real-it.nl", true },
{ "realcapoeira.ru", true },
+ { "realcolors.net", true },
{ "realestate-in-uruguay.com", true },
{ "realestatecentralcoast.info", true },
{ "realestatemarketingblog.org", true },
{ "realestateonehowell.com", true },
- { "realestateradioshow.com", true },
+ { "realfamilyincest.com", true },
{ "realfood.space", true },
- { "realfreedom.city", false },
- { "realhorsegirls.net", true },
+ { "realgear.net", true },
{ "realhypnosistraining.com.au", true },
- { "realitea.co.uk", true },
{ "reality.news", true },
{ "reality0ne.com", false },
{ "realitycrazy.com", true },
+ { "reall.uk", true },
{ "reallifeforums.com", true },
{ "realloc.me", true },
- { "really-simple-plugins.com", true },
+ { "really-simple-plugins.com", false },
{ "really-simple-ssl.com", true },
{ "really.ai", true },
{ "reallytrusted.com", true },
@@ -32703,7 +35886,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "realmofespionage.xyz", true },
{ "realoteam.ddns.net", true },
{ "realpropertyprofile.gov", true },
- { "realtoraidan.com", true },
{ "realtygroup-virginia.com", true },
{ "realtyink.net", true },
{ "realum.com", true },
@@ -32714,6 +35896,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "realwaycome.com", true },
{ "realwildart.com", true },
{ "realworldholidays.co.uk", true },
+ { "ream.lu", true },
{ "reancos.report", true },
{ "reanimated.eu", true },
{ "reath.me", true },
@@ -32722,7 +35905,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reaven.nl", true },
{ "rebane2001.com", true },
{ "rebeagle.com", true },
+ { "rebeccawendlandt.com", true },
{ "rebelessex.com", true },
+ { "rebelko.de", true },
{ "rebelonline.nl", true },
{ "rebelrebel.com.au", true },
{ "rebelz.se", true },
@@ -32735,17 +35920,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "recantoshop.com", true },
{ "recantoshop.com.br", true },
{ "recaptcha-demo.appspot.com", true },
+ { "recebersms.com", true },
{ "receiliart.com", true },
{ "receptionpoint.com", true },
{ "recepty.eu", true },
{ "recetasdecocinaideal.com", true },
{ "recetin.com", true },
- { "recettecookeo.net", true },
- { "rechenknaecht.de", true },
+ { "recettemedievale.fr", true },
{ "rechtsanwaeltin-vollmer.de", true },
{ "rechtsanwalt-koeppen-feucht.de", true },
{ "rechtschreibpruefung24.de", true },
{ "recipea.com", true },
+ { "recipeapproved.ca", true },
+ { "recipesmadeeasy.co.uk", true },
{ "recipex.ru", true },
{ "recipeyak.com", true },
{ "reckontalk.com", true },
@@ -32755,10 +35942,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reco-studio.de", true },
{ "recolic.net", true },
{ "recommended.reviews", true },
- { "recompiled.org", true },
+ { "recompiled.org", false },
{ "recon-networks.com", true },
{ "reconexion.life", true },
- { "recordeuropa.com", false },
{ "recoveringspirit.com", true },
{ "recoveryonline.org", true },
{ "recreation.gov", true },
@@ -32768,6 +35954,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "recurly.com", true },
{ "recurrentmeningitis.org", true },
{ "recursosdeautoayuda.com", true },
+ { "recyclebin.email", true },
{ "recyclingpromotions.us", true },
{ "red-button.hu", true },
{ "red-t-shirt.ru", true },
@@ -32777,14 +35964,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "redactieco.nl", true },
{ "redb.cz", true },
{ "redballoonsecurity.com", true },
+ { "redcarpetmonday.com", true },
+ { "redcarpets.in", true },
{ "redcatrampageforum.com", true },
{ "redchat.cz", true },
+ { "redchip.com.au", true },
{ "redcoded.com", true },
- { "redcone.net", true },
{ "redcorus.com", true },
{ "redd.it", true },
{ "reddepsicologosdecr.com", true },
- { "reddingo.at", true },
{ "reddingo.be", true },
{ "reddingo.ch", true },
{ "reddingo.com", true },
@@ -32799,28 +35987,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reddingo.nz", true },
{ "reddingsbrigade-zwolle.nl", true },
{ "reddingsbrigadeveghel.nl", true },
+ { "reddit.com", true },
{ "reddit2kindle.com", true },
{ "reddraggone9.com", true },
{ "reddyai.com", true },
{ "rede-reim.de", true },
{ "rede-t.com", true },
{ "redecsirt.pt", true },
- { "redelectrical.co.uk", true },
- { "redessantaluzia.com.br", true },
+ { "redespaulista.com", true },
{ "redflare.com.au", true },
{ "redfox-infosec.de", true },
{ "redfoxmarketiing.com", true },
{ "redgatesoftware.co.uk", true },
{ "redgoose.ca", true },
+ { "redgravity.net", true },
{ "redhandedsecurity.com.au", true },
- { "redicals.com", true },
+ { "redheadfuck.com", true },
{ "redir.me", true },
{ "redirect.fedoraproject.org", true },
{ "redirect.stg.fedoraproject.org", true },
{ "rediske.me", true },
{ "redit.com", true },
- { "rediverge.com", true },
{ "redivis.com", true },
+ { "redjuice.co.uk", true },
{ "redleslie.com", true },
{ "redlinelap.com", true },
{ "redlink.de", true },
@@ -32831,44 +36020,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "redneragenturen.org", true },
{ "rednsx.org", true },
{ "redpact.com", true },
+ { "redphi.dedyn.io", true },
+ { "redporno.cz", true },
+ { "redrowcareers.co.uk", true },
{ "redscan.com", true },
- { "redshell.pw", true },
{ "redshiftlabs.com.au", true },
{ "redshoeswalking.net", true },
{ "redsicom.com", true },
- { "redsquarelasvegas.com", true },
- { "redstoner.com", true },
{ "redteam-pentesting.de", true },
{ "redwaterhost.com", true },
{ "redweek.com", true },
- { "redwhey.com", true },
- { "redwoodpaddle.es", true },
- { "redwoodpaddle.pt", true },
- { "redzonedaily.com", true },
{ "redzurl.com", false },
{ "reed-sensor.com", true },
{ "reedloden.com", true },
{ "reedyforkfarm.com", true },
+ { "reeftrip.com", true },
{ "reegle.com", true },
{ "reening.net", true },
- { "reensshop.com", true },
+ { "reepay.com", true },
{ "rees-carter.net", true },
{ "reesmichael1.com", true },
{ "reevaappliances.co.uk", true },
{ "reezer.org", true },
+ { "ref1oct.nl", true },
{ "refactor.zone", false },
{ "refer.codes", true },
{ "referdell.com", true },
{ "refficience.com", true },
{ "refinansiering.no", true },
{ "reflectivity.io", true },
+ { "reflectores.net", true },
{ "refletindosaude.com.br", true },
{ "reflets.info", true },
{ "reflexions.co", true },
- { "reflexive-engineering.com", true },
{ "reflexive.xyz", true },
{ "refood-cascaiscpr.eu", true },
- { "reforesttheplanet.com", true },
+ { "reformation.financial", true },
{ "refresh-media.nl", true },
{ "refreshliving.us", true },
{ "refrigeracionpeinado.com.mx", true },
@@ -32877,17 +36064,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "refuelcreative.com.au", true },
{ "refundo.cz", true },
{ "refundo.sk", true },
- { "regain.us", true },
{ "regalcapitalwi.com", true },
{ "regalosymuestrasgratis.com", true },
{ "reganclassics.co.uk", true },
{ "reganclassics.com", true },
{ "reganparty.com", true },
{ "regar42.fr", false },
- { "regasportshop.it", true },
{ "regeneo.cz", true },
+ { "regeneracjalamp.eu", true },
{ "regenerapoint.it", true },
{ "regenerescence.com", true },
+ { "regenpod.com", true },
{ "regensburg-repariert.de", true },
{ "regily.com", true },
{ "regime-anticellulite.com", true },
@@ -32921,8 +36108,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "regulations.gov", true },
{ "reha-honpo.jp", true },
{ "rehabili-shigoto.com", true },
- { "rehabilitation.network", true },
- { "rehabphilippines.com", true },
{ "rehabreviews.com", true },
{ "rehabthailand.com", true },
{ "rehabthailand.org", true },
@@ -32931,7 +36116,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reichel-steinmetz.de", true },
{ "reichelt-cloud.de", true },
{ "reichl-online.net", true },
+ { "reiciunas.lt", true },
{ "reidasbombas.com", true },
+ { "reidsupply.com", true },
{ "reifr.net", true },
{ "reiki-france.fr", true },
{ "reilly.io", true },
@@ -32948,24 +36135,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reinhard.codes", true },
{ "reinhardtsgermanautorepair.com", true },
{ "reinhardtsgrimma.de", true },
- { "reinierjonker.nl", true },
{ "reinout.nu", true },
{ "reinouthoornweg.nl", true },
{ "reinventetoi.com", false },
- { "reisekosten-gorilla.com", true },
{ "reisenbauer.ee", true },
{ "reiseversicherung-werner-hahn.de", true },
{ "reishunger.de", true },
- { "reisslittle.com", true },
+ { "reissnehme.com", true },
+ { "reitoracle.com", true },
+ { "reitstall-goettingen.de", true },
{ "reittherapie-tschoepke.de", true },
{ "rejahrehim.com", true },
{ "rejects.email", true },
+ { "rejoice1009.com", true },
{ "rejsehuskelisten.dk", true },
{ "rekisuta.com", true },
{ "reklamjog.hu", true },
- { "rekonstrukcestatu.cz", true },
{ "rekorsanat.com.tr", true },
{ "rekyou.com", false },
+ { "relaispourlavie.net", true },
{ "relates.link", true },
{ "relax.hn", true },
{ "relaxdom.net", true },
@@ -32973,12 +36161,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "relaxpointhyncice.cz", true },
{ "relaybox.io", true },
{ "release-monitoring.org", true },
- { "releasetimes.io", true },
+ { "reliableremovals-blackpool.co.uk", true },
{ "reliancebank.bank", true },
- { "relocatefeds.gov", false },
{ "relojeriajoyeria.com", true },
{ "relojes-online.com", true },
- { "relojesseiko.es", true },
{ "relsak.cz", true },
{ "relvan.com", true },
{ "rem0te.net", true },
@@ -32986,11 +36172,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "remambo.jp", true },
{ "remarketable.org", true },
{ "remax.at", true },
+ { "remeb.de", true },
{ "remedi.tokyo", true },
{ "remedionaturales.com", true },
{ "remedioparaherpes.com", true },
- { "remedios-caserospara.com", true },
- { "remembermidi.sytes.net", true },
+ { "remedyrecoverymat.com", true },
{ "rememberthemilk.com", false },
{ "remi-saurel.com", true },
{ "remiafon.com", true },
@@ -32999,39 +36185,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "remirampin.com", true },
{ "remissan.com", true },
{ "remitatm.com", false },
+ { "remmik.com", true },
{ "remonti.info", true },
- { "remote.so", true },
+ { "remotedesktop.corp.google.com", true },
+ { "remoteham.com", true },
{ "remoteutilities.com", true },
{ "removalcellulite.com", true },
{ "removedrepo.com", true },
{ "remptmotors.com", true },
{ "remrol.ru", true },
- { "remszeitung.de", true },
{ "rena.cloud", true },
{ "renaissanceplasticsurgery.net", true },
{ "renascentia.asia", true },
{ "renaultclubticino.ch", true },
{ "rendall.tv", true },
+ { "render.com", true },
{ "renderloop.com", true },
{ "rendre-service.ch", true },
+ { "rene-eizenhoefer.de", true },
{ "rene-schwarz.com", true },
{ "rene-stolp.de", true },
{ "renearends.nl", true },
- { "renedekoeijer.com", true },
- { "renedekoeijer.nl", true },
- { "renee.today", true },
+ { "renefloresphotography.com", true },
{ "reneleu.ch", true },
{ "renem.net", false },
{ "renemayrhofer.com", false },
{ "reneschmidt.de", true },
{ "renewablefreedom.org", true },
{ "renewablemaine.org", true },
- { "renewgsa.com", true },
{ "renewmedispa.com", true },
{ "renewpfc.com", true },
{ "renezuo.com", true },
{ "renkenlaw.com", true },
{ "renlen.nl", true },
+ { "renoovodesign.ltd", true },
{ "renov8sa.co.za", true },
{ "renovablesverdes.com", true },
{ "renovum.es", true },
@@ -33043,21 +36230,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rentacaramerica.com", true },
{ "rentandgo.it", true },
{ "rentasweb.gob.ar", true },
+ { "rentaways.com", true },
{ "rentayventadecarpas.com", true },
{ "renthelper.us", true },
{ "rentinsingapore.com.sg", true },
{ "rentourhomeinprovence.com", true },
+ { "rentsbg.com", true },
+ { "rentta.fashion", true },
{ "renuo.ch", true },
- { "renxinge.cn", false },
- { "reorz.com", true },
+ { "reorz.com", false },
{ "reox.at", false },
- { "repaik.com", false },
{ "repair.by", true },
{ "repaper.org", true },
+ { "reparacionesdecalefones.com", true },
+ { "reparizy.com", true },
{ "repaxan.com", true },
- { "repkord.com", true },
{ "replace.ninja", true },
- { "replicaswiss.nl", true },
+ { "replenology.com", true },
{ "repology.org", true },
{ "report-uri.com", true },
{ "report2psb.online", true },
@@ -33069,8 +36258,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reprogramming-predators.com", true },
{ "reprogrammingpredators.com", true },
{ "reprozip.org", true },
+ { "repsltd.co.uk", true },
{ "repsomelt.com", true },
{ "reptrax.com", true },
+ { "reptv.online", true },
{ "republic.gr", true },
{ "republictelecom.net", true },
{ "republique.org", true },
@@ -33087,8 +36278,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "researchgate.net", true },
{ "researchstory.com", true },
{ "reseausyndic.ca", true },
+ { "resepi.my", true },
+ { "resepimok.com", true },
{ "reservar-un-hotel.com", true },
- { "resfriatech.com.br", true },
+ { "residence-donatello.be", true },
{ "residence-simoncelli.com", true },
{ "residentiallocksmithsanantoniotx.com", true },
{ "resine.roma.it", true },
@@ -33112,7 +36305,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "respectmyprivacy.nl", true },
{ "respecttheflame.com", true },
{ "respiranto.de", true },
- { "respon.jp", true },
+ { "respon.jp", false },
{ "responer.com", true },
{ "respons.je", true },
{ "respons.me", true },
@@ -33138,6 +36331,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "restaurantguru.com", true },
{ "restaurantmaan.nl", true },
{ "restauranttester.at", true },
+ { "restauriedili.roma.it", true },
{ "restoran-radovce.me", true },
{ "restorethegulf.gov", true },
{ "restoruns.com", true },
@@ -33145,16 +36339,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "restrealitaet.de", true },
{ "restrito.org", true },
{ "resultsatretail.com", true },
+ { "resumelab.com", true },
{ "resursedigitale.ro", true },
{ "retailcybersolutions.com", true },
- { "retcor.net", true },
{ "retefarmaciecostadamalfi.it", true },
{ "retetenoi.net", true },
{ "reticket.me", true },
{ "reticon.de", true },
+ { "retidurc.fr", true },
+ { "retireearlyandtravel.com", true },
{ "retmig.dk", true },
{ "reto.ch", true },
- { "reto.com", true },
+ { "reto.com", false },
{ "reto.io", true },
{ "retokromer.ch", true },
{ "retornaz.com", true },
@@ -33174,78 +36370,87 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "retrotown.ws", true },
{ "retrotracks.net", true },
{ "retrovideospiele.com", true },
+ { "rettig.xyz", true },
{ "returnonerror.com", true },
{ "returnpath.com", true },
+ { "retzer.me", true },
{ "reucon.com", true },
{ "reulitz.de", true },
{ "reuna.me", true },
+ { "reupo.com", true },
{ "reussirsavie.info", true },
{ "reuter-profishop.de", true },
{ "reuter-shop.com", true },
{ "reuter.de", true },
+ { "reuzenplaneten.nl", true },
{ "revamed.com", false },
{ "revapost.fr", true },
{ "revayd.net", true },
+ { "revealdata.com", true },
{ "revensoftware.com", true },
{ "reverencestudios.com", true },
{ "reverseaustralia.com", true },
{ "reversecanada.com", true },
{ "reverseloansolutions.com", true },
+ { "reverselookupphone.us", true },
{ "reversesouthafrica.com", true },
{ "reviderm-skinmedics-rheinbach.de", true },
{ "review.jp", true },
+ { "reviewbestseller.com", true },
{ "reviewninja.net", true },
{ "reviews.anime.my", false },
+ { "reviewu.ca", true },
{ "revirt.global", true },
- { "revision.co.zw", true },
{ "revisionnotes.xyz", true },
- { "revisit.date", true },
{ "revista-programar.info", true },
+ { "revistabifrontal.com", true },
{ "revivalinhisword.com", true },
{ "revivalprayerfellowship.com", true },
- { "revivalsstores.com", true },
{ "revivingtheredeemed.org", true },
{ "revlect.com", true },
{ "revolt.tv", true },
- { "revthefox.co.uk", true },
{ "revuestarlight.me", true },
- { "rewardingexcellence.com", true },
- { "rewrite3.com", true },
{ "rewtherealtor.com", true },
{ "rex.tc", true },
{ "rexdf.net", true },
{ "rexskz.info", true },
+ { "rexxworld.com", true },
{ "reyna.cc", true },
+ { "rezenfitness.com", true },
{ "rezept-planer.de", true },
- { "rezexpert.com", true },
- { "rezosup.net", true },
- { "rezosup.org", true },
{ "rezultant.ru", true },
- { "rfitness.dk", true },
+ { "rezun.cloud", true },
{ "rftoon.com", true },
{ "rfxanalyst.com", true },
{ "rga.sh", true },
{ "rgbinnovation.com", true },
+ { "rgbpty.com", true },
{ "rgcomportement.fr", true },
{ "rgraph.net", true },
+ { "rgz.ee", true },
{ "rhaegal.me", true },
+ { "rhamzeh.com", true },
{ "rhd-instruments.com", true },
{ "rhd-instruments.de", true },
{ "rhees.nl", true },
- { "rhein-liebe.de", true },
{ "rheinneckarmetal.com", true },
- { "rheocube.com", true },
{ "rhese.net", true },
{ "rhetorical.ml", true },
+ { "rhetthenckel.com", true },
{ "rhevelo.com", true },
+ { "rhhfoamsystems.com", true },
{ "rhinelander.ca", true },
- { "rhinobase.net", true },
+ { "rhinobase.net", false },
{ "rhinoceroses.org", true },
+ { "rhiskiapril.com", true },
{ "rhodenmanorcattery.co.uk", true },
{ "rhodri.io", true },
{ "rhondanp.com", true },
{ "rhowell.io", true },
{ "rhumblineadvisers.com", true },
+ { "rhycloud.com", true },
+ { "rhymc.com", true },
+ { "rhyme.com", true },
{ "rhymeswithmogul.com", true },
{ "rhymix.org", true },
{ "rhynl.io", true },
@@ -33253,6 +36458,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "riaki.net", true },
{ "rial.space", true },
{ "riaucybersolution.net", false },
+ { "ribtours.co", true },
{ "ricardo.nu", true },
{ "ricardobalk.nl", true },
{ "ricardopq.com", true },
@@ -33263,11 +36469,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "riceadvice.info", true },
{ "richadams.me", true },
{ "richardbloomfield.blog", true },
+ { "richardcrosby.co.uk", true },
{ "richardfeinbergdds.com", true },
{ "richardharpur.com", true },
{ "richardhering.de", true },
{ "richardhicks.us", true },
{ "richardjgreen.net", true },
+ { "richardlangham.plumbing", true },
{ "richardlangworth.com", true },
{ "richardlevinmd.com", true },
{ "richardlugten.nl", true },
@@ -33283,52 +36491,60 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "richardstonerealestate.com", true },
{ "richardwarrender.com", true },
{ "richbutler.co.uk", true },
+ { "richcat.tw", true },
+ { "richecommecresus.com", true },
+ { "richelelahaise.nl", true },
{ "richeyweb.com", true },
{ "richie.fi", true },
+ { "richie.one", true },
+ { "richlj.net", true },
{ "ricketyspace.net", true },
{ "ricki-z.com", true },
+ { "rickmakes.com", true },
{ "rickrongen.nl", true },
{ "rickscastles.co.uk", true },
{ "ricksfamilycarpetcleaning.com", true },
{ "rickvanderzwet.nl", true },
{ "rickweijers.nl", true },
{ "rickyromero.com", true },
- { "rico.ovh", true },
{ "ricobaldegger.ch", true },
{ "ricochet.im", true },
{ "ricoydesign.com", true },
{ "ricozienke.de", true },
- { "riddims.co", true },
+ { "riddimsworld.com", true },
{ "riddler.com.ar", true },
+ { "rideapart.com", true },
{ "rideintaxi.com", true },
+ { "rident-estetic.ro", true },
+ { "rides-japan.jp", true },
{ "rideways.com", true },
{ "rideyourdamn.bike", true },
- { "ridgelandchurch.org", true },
{ "ridhaan.co", true },
{ "ridingboutique.de", true },
{ "riederle.com", true },
- { "riemer.ml", true },
+ { "riemzac.com", true },
{ "riesenweber.id.au", true },
{ "riesheating.com", true },
{ "rievo.net", true },
+ { "riffelhaus.ch", 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 },
+ { "rightlaw.nz", true },
{ "rightmovecanada.com", true },
{ "rightnetworks.com", true },
+ { "rightsolutionplumbing.com.au", true },
{ "rightstuff.link", false },
{ "righttobuy.gov.uk", true },
- { "rigolitch.fr", true },
- { "rigsalesaustralia.com", true },
+ { "riight.online", true },
{ "rijk-catering.nl", false },
{ "rijschoolrichardschut.nl", true },
{ "rijschoolsafetyfirst.nl", true },
- { "rijsinkunst.nl", false },
+ { "rijsinkunst.nl", true },
{ "rik.onl", true },
{ "riku.pw", true },
{ "rile5.com", true },
@@ -33340,18 +36556,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rimo.site", true },
{ "rimorrecherche.nl", true },
{ "rincondenoticas.com", true },
- { "ring.com", true },
{ "ringingliberty.com", true },
{ "ringjewellery.co.uk", true },
- { "rinvex.com", true },
{ "rio-weimar.de", true },
{ "rioshop.com.br", true },
{ "rioxmarketing.com", true },
+ { "rioxmarketing.us", true },
{ "rip-sport.cz", true },
{ "ripaton.fr", true },
{ "ripcorddesign.com", true },
{ "ripcordsandbox.com", true },
{ "ripmixmake.org", true },
+ { "riproduzionichiavi.it", true },
+ { "riptoforex.com", true },
{ "riqy86.nl", true },
{ "ris.fi", true },
{ "risada.nl", true },
@@ -33363,14 +36580,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "riseup.net", true },
{ "rishikeshyoga.in", true },
{ "risiinfo.com", true },
- { "riskmitigation.ch", true },
{ "risparmiare.info", true },
{ "ristioja.ee", true },
{ "ristisanat.fi", true },
{ "ristoarea.it", true },
{ "ristorantefattoamano.it", true },
{ "ristorantelittleitaly.com", true },
+ { "ristorantesamarkand.it", true },
{ "ristoviitanen.fi", true },
+ { "ristrutturazioneappartamenti.milano.it", true },
{ "ristrutturazioneappartamento.roma.it", true },
{ "ristrutturazioniappartamentinapoli.it", true },
{ "rit.space", false },
@@ -33382,7 +36600,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rivalsa.cn", true },
{ "rivastation.de", true },
{ "riverbanktearooms.co.uk", true },
- { "riverbendessentialoil.com", true },
{ "riverbendroofingnd.com", true },
{ "riverford.co.uk", true },
{ "rivermist.com.au", true },
@@ -33395,20 +36612,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rivoflor.it", true },
{ "rivus.net", true },
{ "rivy.org", true },
- { "riwick.com", false },
+ { "riwick.com", true },
{ "rix.ninja", true },
{ "rixter.com", true },
{ "riyono.com", true },
{ "rizalpalawan.gov.ph", true },
+ { "rizonrice.club", true },
{ "rizospastis.gr", true },
{ "rj-onderneemt.nl", true },
+ { "rjan.nl", true },
+ { "rk.mk", true },
{ "rkfp.cz", true },
- { "rkkhok.hu", false },
{ "rkmns.edu.in", true },
+ { "rlahaise.nl", true },
{ "rlalique.com", true },
{ "rld.org", true },
{ "rlds.ch", true },
- { "rle.me", true },
{ "rleeden.servehttp.com", true },
{ "rleh.de", true },
{ "rlnunez.com", true },
@@ -33420,19 +36639,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rmi.com.ar", true },
{ "rmm-i.com", true },
{ "rmmanfredi.com", true },
- { "rmpsolution.de", true },
{ "rmrig.org", true },
{ "rms.sexy", true },
{ "rmstudio.tw", true },
{ "rmsupply.nl", true },
{ "rnag.ie", true },
+ { "rnbjunk.com", true },
{ "rngmeme.com", true },
{ "rnt.cl", true },
{ "ro.search.yahoo.com", false },
+ { "roach.nz", true },
{ "roaddoc.de", true },
{ "roadguard.nl", false },
- { "roadtopgm.com", true },
{ "roams.es", true },
+ { "roams.mx", true },
{ "rob006.net", true },
{ "robandjanine.com", true },
{ "robbiecrash.me", true },
@@ -33440,28 +36660,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "robert-flynn.de", true },
{ "robert-wiek-transporte.de", true },
{ "robertattfield.com", true },
- { "robertayamashita.com", true },
- { "robertayamashita.com.br", true },
{ "robertbln.com", true },
+ { "robertcrain.com.au", true },
+ { "robertg.me", true },
{ "roberthurlbut.com", true },
{ "robertkotlermd.com", true },
{ "robertkrueger.de", true },
{ "robertlysik.com", true },
{ "robertnemec.com", true },
- { "robertoentringer.com", true },
+ { "robertoentringer.com", false },
{ "robertof.ovh", true },
{ "robertopazeller.ch", true },
{ "robertreiser.photography", true },
{ "robertrijnders.nl", true },
{ "robertses.org", true },
{ "robertsmits.be", false },
+ { "robertsonsalts.info", true },
{ "robgorman.ie", true },
{ "robhorstmanshof.nl", true },
- { "robicue.com", true },
{ "robigalia.org", false },
{ "robin.co.kr", true },
{ "robin.info", true },
- { "robinevandenbos.nl", true },
+ { "robin.io", true },
+ { "robinflikkema.nl", true },
{ "robinfrancq.ml", true },
{ "robinhoodbingo.com", true },
{ "robinlinden.eu", true },
@@ -33469,10 +36690,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "robinvdmarkt.nl", true },
{ "robinwill.de", true },
{ "robinwinslow.uk", true },
+ { "robison.pro", true },
+ { "robisonweb.net", true },
{ "robjager-fotografie.nl", true },
{ "robocop.no", true },
{ "robodeidentidad.gov", true },
- { "roboex.net", true },
{ "robohash.org", true },
{ "robokits.co.in", true },
{ "robot.car", true },
@@ -33482,8 +36704,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "robotkvarnen.se", true },
{ "robototes.com", true },
{ "robots-ju.ch", true },
+ { "robotsbigdata.com", true },
{ "robottip.com", true },
{ "robpol86.com", true },
+ { "robsalmon.me.uk", true },
{ "robspc.repair", true },
{ "robspeed.rocks", true },
{ "robsutter.com", true },
@@ -33493,6 +36717,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "robud.info", true },
{ "robustac.com", true },
{ "rochakhand-knitcraft.com.np", true },
+ { "rochesterglobal.com", true },
{ "rocis.gov", true },
{ "rocka.me", true },
{ "rockagogo.com", true },
@@ -33500,17 +36725,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rockcanyonbank.com", true },
{ "rockenfuerlachenhelfen.de", true },
{ "rockerchyc.com", true },
- { "rocket-wars.de", true },
+ { "rocket-resume.com", true },
{ "rocketevents.com.au", true },
+ { "rocketmill.co.uk", true },
{ "rocketr.net", true },
{ "rocketsandtutus.com", true },
{ "rockfax.com", true },
- { "rockhounds.co.za", true },
{ "rockinronniescastles.co.uk", true },
{ "rockitinflatables.co.uk", true },
+ { "rockmyshoes.co.uk", true },
+ { "rocknwater.com", true },
{ "rockpesado.com.br", true },
{ "rockthebabybump.com", true },
- { "rockuse.com.br", true },
{ "rockymountainspice.com", true },
{ "rocssti.net", true },
{ "rodab.party", true },
@@ -33518,6 +36744,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "roddis.net", true },
{ "rodeobull.biz", true },
{ "rodeohire.com", true },
+ { "rodeoimport.com", true },
{ "rodeosales.co.uk", true },
{ "rodest.net", true },
{ "rodevlaggen.nl", true },
@@ -33541,6 +36768,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "roerstaafjes.nl", true },
{ "rofl.com.ua", true },
{ "rogagym.com", true },
+ { "rogerbertrand.com", true },
{ "rogerhub.com", true },
{ "rogerriendeau.ca", true },
{ "rogersaam.ch", true },
@@ -33551,9 +36779,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "roguefinancial.com", true },
{ "roguefortgame.com", true },
{ "roguenation.space", true },
- { "roguenetworks.me", true },
+ { "roguerocket.com", true },
{ "roguesignal.net", true },
- { "roguetechhub.org", true },
{ "rohedaten.de", true },
{ "rohitagr.com", true },
{ "rointe.online", true },
@@ -33564,23 +36791,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rokort.dk", true },
{ "rokudenashi.de", true },
{ "roland.io", true },
- { "rolandinsh.com", true },
- { "rolandlips.com", true },
{ "rolandlips.nl", true },
{ "rolandreed.cn", true },
{ "rolandszabo.com", true },
- { "rolfsbuss.se", true },
+ { "rolandvanipenburg.com", true },
+ { "rolecontj.com", true },
{ "roligprylar.se", true },
- { "rollatorweb.nl", true },
{ "rolleyes.org", true },
+ { "rollforadventure.com.au", true },
{ "rollingbarge.com", true },
{ "rolliwelt.de", true },
+ { "rolob.io", true },
+ { "rolobio.com", true },
{ "rolodato.com", true },
{ "roma-servizi.it", true },
{ "romab.com", true },
+ { "romail.ml", true },
{ "romain-arias.fr", true },
+ { "romaindepeigne.fr", true },
+ { "romainlapoux.com", true },
+ { "romainlapoux.fr", true },
{ "roman-pavlik.cz", true },
- { "romancloud.com", true },
+ { "roman.systems", true },
+ { "romancoinsforsale.org", false },
{ "romande-entretien.ch", true },
{ "romanmichel.de", true },
{ "romano.guru", true },
@@ -33591,15 +36824,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "romanticschemer.com", true },
{ "romanticsexshopguatemala.com", true },
{ "romanticvillas.com.au", false },
- { "romapa.com", true },
{ "romarin.es", true },
{ "romaservicegroup.it", true },
+ { "romastantra.com", true },
{ "romatrip.it", true },
{ "rome.dating", true },
{ "rommelwood.de", true },
{ "romtex.co.uk", true },
{ "romun.net", true },
{ "romy.tw", true },
+ { "roncallijets.net", true },
{ "rondommen.nl", true },
{ "rondouin.fr", true },
{ "rondreis-amerika.be", true },
@@ -33610,17 +36844,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ronniegane.kiwi", true },
{ "ronnylindner.de", true },
{ "ronomon.com", true },
+ { "ronsguideservice.com", true },
+ { "roo.ie", true },
{ "roodfruit.studio", true },
{ "roodhealth.co.uk", true },
{ "roof.ai", false },
+ { "roofconsultants-inc.com", true },
{ "roofingandconstructionllc.com", true },
{ "roofingomaha.com", true },
{ "roofsandbasements.com", true },
+ { "roohanionlinespiritualhelp.co.uk", true },
{ "rook-playz.net", true },
{ "rookvrij.nl", true },
{ "room-composite.com", true },
{ "room208.org", true },
- { "room2d.com", true },
{ "room3b.eu", true },
{ "roombase.nl", true },
{ "roomguide.info", true },
@@ -33629,6 +36866,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rooneytours.nl", true },
{ "roopakv.com", true },
{ "roosabels.nl", false },
+ { "roosta.xyz", true },
{ "roosteroriginals.com", false },
{ "root-space.eu", true },
{ "root.bg", true },
@@ -33650,6 +36888,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rootsbar.fr", true },
{ "rootscope.co.uk", false },
{ "rootspersona.com", true },
+ { "rootstation.de", true },
{ "rootswitch.com", false },
{ "rootusers.com", true },
{ "ropd.info", true },
@@ -33664,20 +36903,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "roseliere.ch", true },
{ "roseliere.com", true },
{ "roseluna.com", true },
- { "rosemariefloydballet.com", true },
- { "rosenheimsingles.de", true },
+ { "rosenheim-wladiwostok.de", true },
{ "rosenkeller.org", true },
- { "roseofyorkbooking.com", true },
{ "roseon.net", true },
{ "roseparkhouse.com", true },
{ "rosesciences.com", true },
{ "rosevillefacialplasticsurgery.com", true },
{ "roshhashanahfun.com", true },
+ { "rosi-royal.com", true },
+ { "rosimms.com", true },
{ "roslynpad.net", true },
{ "rosnertexte.at", true },
{ "rosset.me", true },
{ "rosset.net", true },
+ { "rossfrance.com", true },
+ { "rossiworld.com", true },
+ { "rosslug.org.uk", true },
{ "rossmacphee.com", true },
+ { "rosswilson.co.uk", true },
{ "rostclub.ro", true },
{ "rostov-avia.ru", true },
{ "rostros.eu", true },
@@ -33691,7 +36934,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rothwellgornthomes.com", true },
{ "rotkreuzshop.de", true },
{ "rotol.me", true },
- { "rottipowah.com", true },
{ "rottweil-hilft.de", true },
{ "rotunneling.net", true },
{ "rougechocolat.fr", true },
@@ -33706,11 +36948,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "roundtheme.com", false },
{ "roundtoprealestate.com", true },
{ "roussos.cc", true },
+ { "roussosmanos.gr", true },
{ "rout0r.org", true },
{ "route-wird-berechnet.de", true },
{ "routeragency.com", true },
{ "routerclub.ru", true },
- { "routercncperu.com", true },
{ "routetracker.co", true },
{ "rowancasting.com", true },
{ "rowancasting.ie", true },
@@ -33727,58 +36969,83 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rowlog.com", true },
{ "roxiesbouncycastlehire.co.uk", true },
{ "roxtri.cz", true },
+ { "roya-holding.com", true },
{ "royal-rangers.de", true },
- { "royal813.com", true },
+ { "royal856.com", true },
{ "royal88.com", true },
{ "royalacademy.org.uk", true },
{ "royalasianescorts.co.uk", true },
{ "royalbeautyclinic.ir", true },
{ "royalbluewa3.cc", true },
+ { "royalbuffetdijon.fr", true },
{ "royalcitytaxi.ca", true },
- { "royalfoxrealtor.com", true },
+ { "royalfitnesschennai.in", true },
{ "royalmarinesassociation.org.uk", true },
{ "royalnissanparts.com", true },
- { "royalpalacenogent.fr", true },
+ { "royalpainters.co", true },
{ "royalpub.net", false },
{ "royalrangers.fi", true },
+ { "royalstylefit.com", true },
+ { "royaltube.net", true },
+ { "royalvortex.co", true },
{ "royceandsteph.com", true },
{ "roycewilliams.net", true },
{ "roygerritse.nl", true },
+ { "royjr.com", true },
+ { "royveenendaal.com", true },
{ "rozalynne-dawn.ga", true },
{ "rozar.eu", true },
{ "rozhodce.cz", true },
{ "rpadonline.com", true },
- { "rpadovani.com", true },
+ { "rpadovani.com", false },
{ "rpauto.ru", true },
{ "rpgcampaign.website", true },
- { "rpgchan.cf", true },
{ "rpgmaker.es", true },
{ "rpherbig.com", true },
{ "rphl.net", true },
{ "rpine.net", true },
{ "rpmdrivingschool.com.au", true },
+ { "rpoplus.nl", true },
+ { "rprevost.fr", true },
{ "rpus.co", true },
{ "rpy.xyz", true },
{ "rq-labo.jp", true },
+ { "rr5197.co", true },
+ { "rr6729.co", true },
+ { "rr6729.com", true },
+ { "rr6957.co", true },
+ { "rr9297.co", true },
+ { "rr9397.com", true },
+ { "rr9721.com", true },
+ { "rr9728.co", true },
{ "rraesthetics.com", true },
+ { "rrailto.com", true },
{ "rrbts.com", true },
{ "rrdesignsuisse.com", true },
{ "rrg-partner.ch", true },
+ { "rrssww.space", true },
{ "rrudnik.com", true },
{ "rrwolfe.com", true },
{ "rs-cloud.ddns.net", true },
{ "rs-maschinenverleih.de", true },
+ { "rs-solution.ch", true },
{ "rsanahuano.com", true },
{ "rsap.ca", true },
+ { "rsarchive.net", true },
+ { "rsarchive.org", true },
{ "rsblake.net", true },
- { "rsgcard.com", true },
+ { "rsdisedezzari.it", true },
+ { "rsearch.co", true },
{ "rsingermd.com", true },
{ "rsl.gd", true },
+ { "rslnd.com", true },
{ "rsm-liga.de", true },
{ "rsmith.io", true },
{ "rsp-blogs.de", true },
{ "rsridentassist.com", true },
{ "rss.sh", false },
+ { "rssl.me", true },
+ { "rssnews.world", true },
{ "rssr.se", true },
{ "rsttraining.co.uk", true },
{ "rsync.eu", false },
@@ -33794,21 +37061,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rteguide.ie", true },
{ "rteinternational.ie", true },
{ "rtejr.ie", true },
- { "rtek.se", true },
- { "rtenews.eu", true },
{ "rteone.ie", true },
{ "rteplayer.com", true },
- { "rtesport.eu", true },
{ "rteworld.com", true },
{ "rthsoftware.cn", true },
- { "rthsoftware.net", true },
+ { "rtmoran.org", true },
{ "rtrappman.com", true },
- { "rtrinflatables.co.uk", true },
{ "rtsak.com", true },
{ "rtsr.ch", true },
{ "rttvvip.com", true },
- { "rtwcourse.com", true },
- { "rtzoeller.com", true },
+ { "rtwcourse.com", false },
{ "ru-sprachstudio.ch", true },
{ "ru.search.yahoo.com", false },
{ "ruaneattorneys.com", true },
@@ -33816,10 +37078,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rubberfurs.org", true },
{ "rubberlegscastles.co.uk", true },
{ "rubbermaidoutlet.com", true },
+ { "rubbleremovalhillcrest.co.za", true },
{ "rubbleremovalsbenoni.co.za", true },
{ "ruben.am", false },
+ { "rubenbaer.ch", true },
{ "rubenbarbero.com", true },
{ "rubenkruisselbrink.nl", true },
+ { "rubenruiz.org", true },
{ "rubens.cloud", true },
{ "rubixstudios.com.au", true },
{ "rublacklist.net", true },
@@ -33836,9 +37101,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ruconsole.com", true },
{ "rud.is", true },
{ "rudd-o.com", true },
- { "rudel-wot.de", true },
+ { "ruddick.org.uk", true },
{ "rudewiki.com", true },
- { "rudhaulidirectory.com", true },
{ "rudloff.pro", true },
{ "rudnikas.com", true },
{ "rudolph.life", true },
@@ -33847,13 +37111,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ruediger-voigt.eu", true },
{ "ruedigervoigt.de", true },
{ "ruedirrenggli.ch", true },
+ { "rueduparticulier.com", true },
{ "rueduparticulier.tk", false },
+ { "rueduverre.com", true },
{ "rueegger.me", true },
{ "rueg.eu", true },
- { "ruequincampoix.com", true },
{ "ruerte.net", true },
{ "rufabula-com.appspot.com", true },
{ "ruffbeatz.com", true },
+ { "ruffinstorage.com", true },
{ "rugk.dedyn.io", true },
{ "ruh-veit.de", true },
{ "ruha.co.in", true },
@@ -33864,7 +37130,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ruicore.cn", true },
{ "ruiming.me", true },
{ "ruin.one", true },
- { "ruiruigeblog.com", true },
{ "ruitershoponline.nl", true },
{ "ruitersportbak.nl", true },
{ "ruk.ca", true },
@@ -33874,29 +37139,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rumartinez.es", true },
{ "rumlager.de", true },
{ "rummage4property.co.uk", true },
+ { "rummel-platz.de", true },
{ "rumplesinflatables.co.uk", true },
{ "rumtaste.com", true },
{ "rumtaste.de", true },
{ "run-it-direct.co.uk", true },
{ "runagain.ch", true },
+ { "rundesign.it", true },
{ "runebet.com", true },
{ "runefake.com", true },
{ "runfitcoaching.com", true },
{ "runklesecurity.com", true },
+ { "runner.az", true },
{ "runnergrapher.com", true },
+ { "runningrabb.it", true },
{ "runreport.fr", true },
{ "runschrauger.com", true },
{ "runtimepanic.xyz", true },
{ "runvs.io", true },
+ { "ruobiyi.com", true },
{ "ruobr.ru", true },
{ "rupeevest.com", true },
{ "ruquay.com", true },
{ "ruralink.com.ar", true },
+ { "ruralsoba.com", true },
{ "ruralsuppliesdirect.co.uk", true },
{ "ruri.io", false },
{ "rusempire.ru", true },
{ "rushball.net", true },
{ "rushiiworks.com", true },
+ { "rushmix.com", true },
{ "rushpoppershop.co.uk", true },
{ "rushter.com", true },
{ "rushyo.com", true },
@@ -33905,19 +37177,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ruskamodra.cz", true },
{ "ruskod.net", true },
{ "rusmolotok.ru", true },
+ { "russelljohn.net", true },
{ "russellupevents.co.uk", true },
{ "russia.dating", true },
{ "russiaeconomy.org", true },
{ "russianorthodoxchurch.co.uk", true },
{ "russpuss.ru", true },
{ "russt.me", true },
- { "rust.mn", true },
{ "rustable.com", true },
{ "rustikalwallis.ch", true },
+ { "rustpedia.net", true },
{ "rustyrambles.com", true },
{ "rusxakep.com", true },
{ "rutgerschimmel.nl", true },
- { "ruthmontenegro.com", false },
+ { "ruthbarrettmusic.com", true },
{ "rutiger.com", true },
{ "rutika.ru", true },
{ "rutten.me", false },
@@ -33929,22 +37202,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ruzzll.com", true },
{ "rv-jpshop.com", true },
{ "rva-asbestgroep.nl", true },
- { "rvc-france.com", true },
{ "rvfit.dk", true },
- { "rvfu98.com", true },
{ "rvnoel.net", true },
+ { "rvoigt.eu", true },
{ "rvsa2bevestigingen.nl", true },
{ "rvsa4bevestigingen.nl", true },
{ "rvsbevestigingen.nl", true },
{ "rvsuitlaatdelen.nl", true },
+ { "rw-invest.com", true },
{ "rw.search.yahoo.com", false },
{ "rwky.net", true },
- { "rws-cc.com", true },
{ "rws-vertriebsportal.de", true },
{ "rwx.ovh", true },
{ "rxbn.de", true },
{ "rxbusiness.com", true },
- { "rxcheck.com", true },
{ "rxgroup.io", true },
{ "rxguide.nl", true },
{ "rxight.com", true },
@@ -33955,10 +37226,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ryanhowell.io", false },
{ "ryankearney.com", false },
{ "ryanmcdonough.co.uk", false },
- { "ryansmithphotography.com", true },
+ { "ryanparman.com", true },
+ { "ryansmithphotography.com", false },
+ { "ryanstreur.com", true },
{ "ryazan-region.ru", true },
- { "rychlikoderi.cz", true },
- { "rydermais.tk", true },
+ { "rylandgoldman.com", true },
{ "rynekpierwotny.pl", true },
{ "rynkebo.dk", true },
{ "ryois.me", true },
@@ -33966,22 +37238,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ryu22e.org", true },
{ "ryuanerin.kr", true },
{ "ryuu.es", true },
+ { "ryzex.de", true },
{ "ryzhov.me", true },
+ { "rzegocki.pl", true },
{ "rzentarzewski.net", true },
- { "s-a.xyz", true },
{ "s-c.se", true },
{ "s-cubed.net", true },
+ { "s-gong.com", true },
{ "s-huset.dk", true },
{ "s-ip-media.de", true },
+ { "s-kanbanya.com", true },
{ "s-mainte.com", true },
- { "s-n-unso.com", true },
{ "s-pegasus.com", true },
{ "s-s-paint.com", true },
+ { "s-yuz.com", true },
{ "s007.co", true },
{ "s0laris.co.uk", true },
+ { "s1-llc.com", true },
{ "s10y.eu", true },
+ { "s1128.com", true },
{ "s13d.fr", true },
{ "s16e.no", true },
+ { "s1ris.org", true },
{ "s2member.com", true },
{ "s2t.net", true },
{ "s3cur3.it", true },
@@ -33993,9 +37271,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "s4q.me", true },
{ "s4tips.com", true },
{ "s4ur0n.com", true },
+ { "s5197.co", true },
{ "s64.cz", true },
+ { "s6729.co", true },
+ { "s6729.com", true },
+ { "s6957.co", true },
{ "s8a.us", true },
+ { "s92.cloud", true },
+ { "s92.io", true },
+ { "s92.me", true },
+ { "s9297.co", true },
+ { "s9397.com", true },
{ "s95.de", true },
+ { "s9721.com", true },
+ { "s9728.co", true },
{ "sa-mp.ro", true },
{ "sa.net", true },
{ "saabpartsdistribution.com", true },
@@ -34007,12 +37296,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sabahattin-gucukoglu.com", true },
{ "sabbottlabs.com", true },
{ "sabe.cz", true },
+ { "saberhortifruti.com.br", true },
{ "sabine-forschbach.de", true },
{ "sablyrics.com", true },
{ "sabrinajoias.com.br", true },
{ "sabrinajoiasprontaentrega.com.br", true },
+ { "sac.moe", true },
{ "sacaentradas.com", true },
{ "saccani.net", true },
+ { "sachk.com", true },
{ "sackmesser.ch", true },
{ "saclier.at", true },
{ "sacprincesse.com", true },
@@ -34029,22 +37321,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sadiejewellery.co.uk", true },
{ "sadmansh.com", true },
{ "sadou.kyoto.jp", true },
- { "sadsu.com", true },
{ "saechsischer-christstollen.shop", true },
{ "saengsook.com", true },
{ "saengsuk.com", true },
{ "saf.earth", true },
{ "safar.sk", true },
+ { "safara.host", true },
{ "safaritenten.nl", true },
{ "safcstore.com", true },
- { "safe.moe", true },
+ { "safeacs.com", true },
+ { "safearth.training", 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 },
@@ -34055,27 +37346,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "safematix.com", true },
{ "safeocs.gov", true },
{ "safer-networking.org", true },
+ { "safercar.gov", true },
{ "saferproduct.gov", true },
{ "saferproducts.gov", true },
{ "safersurfing.eu", false },
+ { "safertruck.gov", true },
{ "safescan.com", true },
{ "safestore.io", true },
- { "safetext.me", true },
{ "safetycloud.me", true },
{ "safetynames.com", true },
+ { "safetyrange.com", true },
{ "safetyrisk.net", true },
{ "safetyworkkits.co.nz", true },
- { "safeui.com", true },
+ { "safeui.com", false },
+ { "safewaysecurityscreens.com.au", true },
{ "safire.ac.za", true },
{ "safungerar.se", true },
{ "saga-umzuege.de", true },
{ "sagaenterprizes.com", true },
- { "sagargandecha.com.au", true },
+ { "sagargandecha.com.au", false },
{ "sagedocumentmanager.com", true },
{ "sagerus.com", true },
{ "saggiocc.com", true },
+ { "sagitta.hr", true },
{ "sagracefarms.com", true },
- { "sagsmarseille.com", true },
{ "sahajbooks.com", true },
{ "sahar.io", true },
{ "saharmassachi.com", true },
@@ -34083,6 +37377,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sahibinden.com", true },
{ "sahkotyot.eu", true },
{ "said.id", true },
+ { "said.it", true },
{ "said.my.id", true },
{ "saidelbakkali.com", true },
{ "saidtezel.com", true },
@@ -34093,6 +37388,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "saikarra.com", true },
{ "saikou.moe", true },
{ "saikouji.tokushima.jp", true },
+ { "sailbookers.com", true },
{ "sailingonward.com", true },
{ "sailormoonevents.org", true },
{ "sailormoonlibrary.org", true },
@@ -34100,6 +37396,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "saimoe.moe", true },
{ "saimoe.org", true },
{ "sainetworks.net", true },
+ { "sainformatica.com.es", true },
{ "saint-bernard-gouesch.fr", true },
{ "saint-cyril.com", true },
{ "saintaardvarkthecarpeted.com", true },
@@ -34125,25 +37422,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "saintphilipneri.org", true },
{ "saintpius.net", true },
{ "saintpolycarp.org", true },
- { "saintsrobotics.com", true },
- { "saintw.com", true },
{ "saipariwar.com", true },
{ "saiputra.com", true },
+ { "saitapovan.com", true },
{ "saitrance.com", true },
{ "saitv.org", true },
{ "sajamstudija.info", true },
{ "sajdowski.de", true },
+ { "sajjadzaidi.com", true },
{ "sajtoskal.hu", true },
{ "sakaki.anime.my", false },
- { "sakamichi.moe", true },
{ "sakerhetskopiering.nu", true },
{ "sakostacloud.de", true },
+ { "saksonski-szlak-parowozow.pl", true },
{ "sakura-paris.org", true },
{ "sakura.zone", true },
- { "sakuracdn.com", true },
{ "sakuracommunity.com", true },
{ "sakuraflores.com.br", true },
{ "sakuraplay.com", true },
+ { "sakuraz.net", true },
+ { "salaire-minimum.com", true },
{ "salamon-it.de", false },
{ "salandalairconditioning.com", true },
{ "salde.net", true },
@@ -34161,6 +37459,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "saleduck.se", true },
{ "salemedia.pro", true },
{ "salensmotors-usedcars.be", true },
+ { "salentocab.com", true },
{ "salesflare.com", true },
{ "salesmachine.io", true },
{ "salexy.kz", true },
@@ -34168,11 +37467,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "salland1.nl", true },
{ "salle-quali.fr", true },
{ "sallydowns.name", true },
+ { "salmanravoof.com", true },
{ "salmododia.net", true },
{ "salmonella.co.uk", true },
{ "salmonrecovery.gov", true },
{ "salmonvision.com.tw", true },
{ "salmotierra-salvatierra.com", true },
+ { "salon-claudia.ch", true },
{ "salon-hinata.biz", true },
{ "salon-minipli.de", true },
{ "salon.io", false },
@@ -34182,14 +37483,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "salonsantebienetre.ch", true },
{ "salrosadohimalaia.com", true },
{ "salsa-straubing.de", true },
+ { "salt-documentary.blog", true },
{ "saltbythesea.com", true },
{ "saltercane.com", false },
- { "saltireconservation.com", true },
{ "saltstack.cz", true },
{ "salud.top", false },
{ "saludmas.site", true },
- { "saludsis.mil.co", true },
- { "saludyvida.site", true },
{ "saluels.servemp3.com", true },
{ "salutethefish.com", true },
{ "salutethegrains.com", true },
@@ -34197,18 +37496,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "salva.re", true },
{ "salvagedfurnitureparlour.com", true },
{ "sam-football.fr", true },
+ { "samalderson.co.uk", true },
{ "samanacafe.com", true },
{ "samanthasgeckos.com", true },
{ "samappleton.com", true },
{ "samara-avia.ru", true },
- { "samariafar.com", true },
{ "samaritainsmeyrin.ch", true },
{ "samatva-yogalaya.com", true },
{ "samba.org", true },
{ "sambaash.com", true },
{ "sambeso.net", true },
{ "samdev.io", true },
- { "samdrewtakeson.com", false },
+ { "samdrewtakeson.com", true },
{ "samegoal.com", true },
{ "samegoal.org", true },
{ "samel.de", true },
@@ -34220,6 +37519,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "samifar.in", true },
{ "samizdat.cz", true },
{ "samkelleher.com", true },
+ { "samkoandmikotoywarehouse.com", true },
{ "saml-gateway.org", true },
{ "samlaw.co.nz", true },
{ "samlivogarv.dk", true },
@@ -34229,24 +37529,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sammyservers.net", true },
{ "samnya.cn", true },
{ "samorazvitie.ru", true },
+ { "sampaguide.com", true },
+ { "sample-site.click", true },
{ "samplefashion.nl", true },
{ "samri.pt", true },
- { "samrobertson.co.uk", true },
+ { "sams.wtf", true },
{ "samshouseofspaghetti.net", true },
- { "samsungmobile.it", true },
- { "samsungphonegenerator.xyz", true },
{ "samtalen.nl", true },
{ "samuelkeeley.com", true },
- { "samuellaulhau.fr", true },
+ { "samuellaulhau.fr", false },
{ "samui-samui.de", false },
- { "samuirehabcenter.com", true },
+ { "samvanderkris.xyz", true },
{ "samwilberforce.com", true },
{ "samwrigley.co.uk", true },
- { "samwu.tw", true },
{ "san.ac.th", true },
{ "sana-store.com", true },
{ "sana-store.cz", true },
{ "sana-store.sk", true },
+ { "sanael.net", true },
{ "sanantoniolocksmithinc.com", true },
{ "sanantoniolocksmithtx.com", true },
{ "sanasport.cz", true },
@@ -34254,60 +37554,59 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sanatorii-sverdlovskoy-oblasti.ru", true },
{ "sanatorionosti.com.ar", true },
{ "sanbornteam.com", true },
+ { "sancdz.com", true },
{ "sand-islets.de", true },
{ "sandalj.com", true },
{ "sandbagexpress.com", true },
{ "sandbox.mydigipass.com", false },
{ "sandboxfp.com", true },
- { "sandburner.net", true },
{ "sander.sh", true },
{ "sanderdorigo.nl", true },
{ "sanderkoenders.eu", true },
{ "sanderkoenders.nl", true },
{ "sandervanderstap.nl", true },
{ "sandervankasteel.nl", false },
- { "sandhaufen.tk", true },
+ { "sandiegoluxuryhomes.org", true },
{ "sandiegotown.com", true },
{ "sandmanintel.com", true },
{ "sandmarc.cz", true },
{ "sandor.wtf", true },
+ { "sandrabernardo.com", true },
{ "sandrainden.nl", true },
{ "sandraindenfotografie.nl", true },
{ "sandrocorapi.com", true },
{ "sandrolittke.de", true },
{ "sandrproperty.com", true },
+ { "sandstroh.network", true },
{ "sandtears.com", true },
+ { "sandtohand.com", true },
{ "sandtonescorts.com", true },
{ "sandtonplumber24-7.co.za", true },
{ "sandyrobsonhypnotherapy.co.uk", true },
{ "sanemind.de", true },
{ "sanemind.eu", true },
{ "sanepsychologen.nl", true },
- { "sanex.ca", false },
+ { "sanex.ca", true },
{ "sanglierhurlant.fr", true },
{ "sangwon.io", true },
{ "sangyoui.health", true },
- { "sanilodge.com", true },
+ { "sanikapandit.com", true },
{ "sanipousse.com", true },
{ "sanissimo.com.mx", false },
{ "sanitairwinkel.be", true },
{ "sanitairwinkel.com", true },
{ "sanitairwinkel.nl", true },
- { "sanitrak.cz", true },
{ "sanjotech.space", true },
- { "sanmuding.com", true },
+ { "sannefoltz.com", true },
{ "sanovnik.at", true },
+ { "sanovnikat.com", 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 },
{ "santiagogarza.co", true },
- { "santojuken.co.jp", true },
{ "santoshpandit.com", true },
{ "sanvitolocapobus.com", true },
{ "sanych-msk.ru", true },
@@ -34322,19 +37621,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "saorviewconnected.ie", true },
{ "sap-inc.co.jp", true },
{ "sapac.es", true },
+ { "sapancavillalari.com", true },
{ "sapien-ci.com", true },
{ "sapience.com", true },
{ "sapindus.pl", true },
{ "sapk.fr", true },
+ { "saplumbers.com.au", true },
{ "saposute-s.jp", true },
{ "sapphirepearl.com.sg", true },
+ { "sapporobeer.com", true },
{ "sapprendre.ch", true },
{ "saprima.de", true },
{ "saputra.org", true },
- { "sarabara.com", true },
+ { "saq.com", true },
{ "sarahbeckettharpist.com", true },
{ "sarahboydrealty.com", true },
- { "sarahcorliss.com", true },
{ "sarahlicity.co.uk", true },
{ "sarahlicity.me.uk", true },
{ "sarahplusdrei.de", true },
@@ -34344,18 +37645,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sarahwikeley.co.uk", true },
{ "saraleebread.com", false },
{ "sarariman.com", true },
+ { "sarasotadentistry.com", true },
{ "sarasotaroboticurology.com", true },
{ "sarasturdivant.com", true },
+ { "sarbash.ee", true },
{ "sardacompost.it", true },
{ "sardegnatirocini.it", true },
+ { "sardinianvillas.com", true },
+ { "sarella.org", true },
{ "sarink.eu", true },
{ "sarkisianbuilders.com", true },
{ "sarkoziadam.hu", true },
+ { "sarny.at", true },
{ "saro.me", true },
+ { "saronikos.city", true },
+ { "saropa.com", true },
{ "sarpsb.org", true },
+ { "sartoria.roma.it", true },
{ "sarumtechnologies.com", true },
{ "sas-snowboarding.sk", true },
- { "sasanika.org", true },
{ "sascha.io", true },
{ "sascha.is", true },
{ "saschaeggenberger.ch", true },
@@ -34365,6 +37673,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sashascollections.com", true },
{ "sasioglu.co.uk", true },
{ "saskpension.com", true },
+ { "sasrobotics.xyz", true },
{ "sassandbelle.co.uk", true },
{ "sassandbelle.com", true },
{ "sassandbelletrade.co.uk", true },
@@ -34372,44 +37681,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sastd.com", true },
{ "sasyabapi.com", true },
{ "sat4all.com", true },
- { "sat7a-riyadh.com", false },
{ "satai.dk", true },
{ "satal.in", true },
{ "satellites.hopto.me", true },
{ "saterdalen.net", true },
{ "satimagingcorp.com", true },
{ "satinn.pl", true },
- { "satisperfectacollections.com", true },
{ "satmd.de", true },
{ "satoshinumbers.com", true },
{ "satplay.host", true },
+ { "satserwis.xyz", true },
{ "satsukii.moe", true },
- { "sattamatka.market", true },
- { "sattamatkachart.in", true },
- { "sattamatkamobi.mobi", true },
+ { "sattamatka.market", false },
+ { "sattamatkachart.in", false },
+ { "sattamatkamobi.mobi", false },
+ { "sattaresult.net", true },
{ "saturn.pl", true },
{ "saturngames.co.uk", true },
{ "satyanarayana.xyz", true },
- { "saudavel.com.vc", true },
+ { "saucelabs.com", true },
{ "saudeealimentos.com", true },
- { "saudeintimadamulher.com.br", true },
{ "saudenoclique.com.br", true },
{ "saudiarabiaevisa.co.uk", true },
- { "sauer-systems.net", true },
{ "sauerbrey.eu", true },
{ "sauerland-schnittgruen.de", true },
{ "saulchristie.com", true },
{ "saultdefencelaw.ca", true },
- { "saumon-de-france.com", true },
- { "saumon-france.com", true },
- { "saumondefrance.fr", true },
- { "saumonfrance.fr", true },
- { "saunahats.eu", true },
+ { "saumon-de-france.com", false },
+ { "saumon-france.com", false },
+ { "saumonfrance.fr", false },
+ { "saunafahrten.ch", true },
{ "saunas.fr", true },
{ "saunatime.jp", true },
{ "sauvagebridge.nl", true },
{ "savaari.com", true },
{ "savageorgiev.com", true },
+ { "savanna.io", true },
{ "savbus.com", true },
{ "savbus.net", true },
{ "savbus.ws", true },
@@ -34417,6 +37724,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "savecrypto.org", true },
{ "savenet.org", true },
{ "saveoney.ca", true },
+ { "saveonkitchens.com", true },
{ "saveora.com", true },
{ "savetheinternet.eu", true },
{ "saveya.com", true },
@@ -34426,20 +37734,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "savingrecipe.com", true },
{ "savingsoftheyear.com", true },
{ "savingsomegreen.com", true },
- { "savisasolutions.co.za", true },
- { "savvytime.com", true },
{ "sawyerroofing.com", true },
{ "saxeandthecity.com", true },
{ "saxojoe.co.uk", true },
{ "saxojoe.de", true },
{ "saxoncreative.com", true },
{ "saxotex.de", true },
+ { "saxowert.de", true },
{ "saxwereld.nl", true },
- { "sayori.pw", true },
{ "sayprepay.com", true },
{ "sayrodigital.com", true },
+ { "saytu.co", true },
{ "sayura.net", true },
{ "saz.sh", true },
+ { "saz9001.com", true },
{ "sazavafest.cz", true },
{ "sazuz.cz", true },
{ "sb-group.dk", true },
@@ -34450,14 +37758,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sb.sb", true },
{ "sb0.io", true },
{ "sbanken.no", true },
+ { "sbblog.cn", true },
+ { "sbcargo.com", true },
{ "sber.us", true },
{ "sberbank.ch", true },
{ "sberna-fotofast.cz", true },
{ "sbf888.com", true },
- { "sbiewald.de", true },
{ "sbir.gov", true },
{ "sbirecruitment.co.in", true },
- { "sbit.com.br", true },
+ { "sbivc.jp", true },
+ { "sbl001.com", true },
{ "sbo-dresden.de", true },
{ "sbox-servers.com", true },
{ "sbr.red", true },
@@ -34473,30 +37783,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sc5.jp", true },
{ "scaarus.com", true },
{ "scaffalature.roma.it", true },
+ { "scaffoldhireeastrand.co.za", true },
+ { "scaffoldhirefourways.co.za", true },
+ { "scaffoldhiremidrand.co.za", true },
+ { "scaffoldhirerandburg.co.za", true },
+ { "scaffoldhiresandton.co.za", true },
{ "scalacollege.nl", true },
{ "scalaire.com", true },
{ "scalaire.fr", true },
+ { "scale.milano.it", true },
{ "scalesbiolab.com", true },
{ "scaling.solutions", true },
{ "scallywagsbouncycastles.co.uk", true },
{ "scallywagskids.co.uk", true },
+ { "scalpel.com", true },
{ "scamblockplus.org", true },
{ "scan.co.uk", true },
+ { "scan2key.com", true },
{ "scandicom.fi", true },
{ "scandinavia.dating", true },
{ "scangeo.net", true },
{ "scanleasing.net", true },
+ { "scanmailx.com", true },
{ "scanpay.dk", true },
{ "scarafaggio.it", true },
- { "scarvespalace.com", true },
{ "scatsbouncingcastles.ie", true },
{ "scbdh.org", true },
{ "scbreed.com", true },
+ { "sccwf.com", true },
+ { "scde.ventures", true },
{ "sceenfox.de", true },
{ "scelec.com.au", true },
{ "scenastu.pl", true },
{ "scene.mx", true },
- { "scenester.tv", true },
{ "scenicbyways.info", true },
{ "scepticism.com", true },
{ "scevity.com", true },
@@ -34504,6 +37823,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schaefer-reifen.de", true },
{ "schaffensdrang.at", true },
{ "schamlosharmlos.de", true },
+ { "scharoth.de", true },
{ "schatzibaers.de", true },
{ "schawe.me", true },
{ "schbebtv.fr", true },
@@ -34513,29 +37833,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schefczyk.de", true },
{ "schefczyk.eu", true },
{ "schefczyk.net", true },
- { "scheidtweiler.de", true },
{ "scheinlichter.de", true },
{ "schelberts.de", true },
- { "schellevis.net", true },
{ "schemingmind.com", true },
{ "schenkes.de", false },
{ "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 },
+ { "schimmelnagelspecialist.nl", true },
+ { "schipholwatch.nl", true },
{ "schippendale.de", 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.network", true },
{ "schlick.wedding", true },
{ "schlossereieder.at", true },
{ "schlossfuchs.de", true },
@@ -34552,18 +37872,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schmidtplasticsurgery.com", true },
{ "schmitt-etienne.fr", true },
{ "schmitt-max.com", true },
+ { "schmuggelware.de", true },
{ "schnapke.name", true },
{ "schneeketten-ratgeber.de", true },
{ "schnegg.name", true },
{ "schneidr.de", true },
{ "schneids.me", true },
{ "schnellno.de", true },
- { "schnellsuche.de", true },
{ "schnouki.net", true },
{ "schnuckenhof-wesseloh.de", true },
{ "schnyder-werbung.ch", true },
{ "schoeck-elektro.de", true },
{ "schoeller.click", true },
+ { "schoenstatt-fathers.link", true },
+ { "schoenstatt-fathers.us", true },
{ "schoenstatt.link", true },
{ "schoepski.de", true },
{ "schoknecht.net", true },
@@ -34572,27 +37894,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schokoferien.de", true },
{ "schokofoto.de", true },
{ "schokokeks.org", true },
+ { "schokoladensouffle.eu", true },
{ "scholar.group", true },
{ "scholar.site", true },
- { "scholarly.com.ph", true },
- { "scholarly.ph", true },
{ "scholarnet.cn", true },
{ "scholarshipplatform.com", true },
{ "scholarshipsplatform.com", true },
{ "scholarstyle.com", true },
{ "scholieren.com", true },
- { "scholierenvervoerzeeland.nl", true },
- { "scholledev.com", true },
{ "scholz-kallies.de", true },
{ "schonstedt.com", true },
{ "schont.org", true },
{ "school-b.us", true },
{ "school-register.co.za", true },
+ { "schoolarchive.net", true },
{ "schoolbus.at", true },
{ "schoolcafe.com", true },
+ { "schoolofphilosophy.org.au", true },
{ "schoolotzyv.ru", true },
- { "schoolsonice.nl", true },
- { "schopenhauer-institut.de", true },
{ "schorelweb.nl", true },
{ "schorers.org", true },
{ "schoring.com", true },
@@ -34606,17 +37925,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schreck-thomas.de", false },
{ "schreibers.ca", true },
{ "schreinerei-jahreis.de", true },
+ { "schreinerei-schweikl.de", true },
{ "schrenkinzl.at", true },
{ "schritt4fit.de", true },
+ { "schrodingersscat.com", true },
+ { "schrodingersscat.org", true },
{ "schroeder-immobilien-sundern.de", true },
{ "schroepfi.de", true },
{ "schrolm.de", true },
- { "schsrch.org", true },
{ "schsrch.xyz", true },
{ "schtiehve.duckdns.org", true },
{ "schubergphilis.com", true },
{ "schubertgmbh-ingelheim.de", true },
{ "schuelerzeitung-ideenlos.de", true },
+ { "schuetzen-ehrenbreitstein.de", true },
{ "schuhbeck.tk", true },
{ "schuhbedarf.de", true },
{ "schuhwerkstatt.at", true },
@@ -34644,11 +37966,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schwarzes-muenchen.de", true },
{ "schwarzhenri.ch", true },
{ "schwarztrade.cz", true },
- { "schwarzwald-flirt.de", true },
+ { "schweingehabt.expert", true },
+ { "schwerkraftlabor.de", true },
{ "schwinabart.com", true },
{ "schwinger.me", true },
{ "schwinnbike.ru", true },
- { "schwuppengrillen.de", true },
+ { "schwuppengrillen.de", false },
{ "scicomm.xyz", true },
{ "science-network.ch", true },
{ "science-questions.org", true },
@@ -34657,12 +37980,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "science360.gov", true },
{ "sciencebase.gov", true },
{ "scienceexploits.com", true },
- { "sciencehouse.jp", true },
{ "scienceminnesota.com", true },
+ { "scienceofpeople.com", true },
{ "sciencesolutions.eu", true },
{ "sciencex.com", true },
- { "scientific.boston", true },
- { "scifi.fyi", true },
{ "scigov.xyz", true },
{ "scijinks.gov", true },
{ "scilifebiosciences.com", true },
@@ -34670,18 +37991,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "scintilla.nl", true },
{ "scintillating.stream", true },
{ "scistarter.com", true },
+ { "scitheory.com", true },
{ "scitopia.net", true },
- { "sclns.co", true },
+ { "scity88.com", true },
{ "scohetal.de", true },
- { "scontogiusto.com", true },
- { "scoolcode.com", true },
{ "scoop6.co.uk", true },
{ "scootaloo.co.uk", true },
{ "scooterservis.com", true },
- { "scootfleet.com", true },
{ "scorerealtygroup.com", true },
{ "scorp13.com", true },
{ "scorpowines.com", true },
+ { "scottdunn.com", true },
{ "scottgalvin.com", true },
{ "scottgthomas.com", true },
{ "scotthelme.co.uk", true },
@@ -34691,25 +38011,30 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "scottlanderkingman.com", true },
{ "scottmay.id.au", true },
{ "scottseditaacting.com", true },
+ { "scottspainting.com", true },
+ { "scouting-wageningen.nl", true },
{ "scoutingridderkerk.nl", true },
{ "scoutingtungelroy.nl", true },
{ "scoutnet.de", true },
{ "scouttrails.com", true },
+ { "scp-079.org", true },
{ "scp-trens.notaires.fr", true },
{ "scp500.com", true },
{ "scpslgame.com", true },
+ { "scqpw.com", true },
{ "scra.gov", true },
{ "scrabble-solver.com", true },
+ { "scrabble123.co.uk", true },
+ { "scrabble123.com", true },
+ { "scrabble123.de", true },
+ { "scrabble123.fr", true },
+ { "scrabble123.pl", true },
{ "scrambox.com", true },
{ "scramget.com", true },
{ "scramsoft.com", true },
{ "scrap.tf", true },
{ "scrapdealers.eu", true },
- { "scratchandscuffs.co.uk", true },
- { "scratchandscuffs.com", true },
- { "scratchandscuffs.uk", true },
{ "scrayos.net", true },
- { "scredible.com", false },
{ "screefox.de", true },
{ "screen-fox.de", true },
{ "screen64.tk", true },
@@ -34721,6 +38046,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "screenmachine.com", true },
{ "screenparadigm.com", true },
{ "screenpublisher.com", true },
+ { "screentocloud.com", true },
{ "scripo-bay.com", true },
{ "script.google.com", true },
{ "scripter.co", true },
@@ -34731,12 +38057,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "scrod.me", true },
{ "scroll.in", true },
{ "scrtch.fr", true },
- { "scrumbleship.com", true },
{ "scrumplex.net", true },
{ "scrumpus.com", true },
- { "scrumstack.co.uk", true },
{ "scryfall.com", true },
- { "scs-simulatoren.de", true },
{ "scsd.si", true },
{ "scswam.com", true },
{ "sctiger.me", true },
@@ -34746,30 +38069,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "scubaland.hu", true },
{ "scul.net", true },
{ "sculpture.support", true },
+ { "sculpturos.com", true },
+ { "scungioborst.com", true },
{ "scuolaguidalame.ch", true },
+ { "scuolamazzini.livorno.it", true },
{ "sd.af", true },
{ "sdcardrecovery.de", true },
+ { "sdfleetmanagement.com", true },
{ "sdg-tracker.org", true },
{ "sdgllc.com", true },
{ "sdho.org", true },
{ "sdis-trib.fr", true },
{ "sdns.fr", true },
+ { "sdocast.com", true },
+ { "sds-marburg.de", true },
{ "sdsi.us", true },
{ "sdsk.one", true },
- { "sdsmanagement.me", true },
{ "sdsmt.engineering", true },
+ { "sduoxminty.cn", true },
{ "sdvigpress.org", true },
- { "sdvx.net", true },
{ "sdxcentral.com", true },
+ { "sdyzmun.club", true },
{ "se-booster.com", true },
{ "se-live.org", true },
{ "se-theories.org", true },
{ "se.com", true },
+ { "se.gg", true },
{ "se.search.yahoo.com", false },
+ { "seabooty.com", true },
{ "seac.me", true },
{ "seacam-store.com", true },
{ "seachef.it", true },
{ "seadus.ee", true },
+ { "seaelba.com", true },
{ "seafood.co.nz", true },
{ "seaholmwines.com", true },
{ "sealaw.com", true },
@@ -34781,8 +38113,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seamoo.se", true },
{ "sean-wright.com", true },
{ "seanholcroft.co.uk", true },
- { "seankilgarriff.com", true },
{ "seanrodda.com", true },
+ { "seanstaffiery.com", true },
{ "seaplayhomes.com", true },
{ "search-job-in.com", true },
{ "search-one.de", true },
@@ -34804,10 +38136,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "searchcandy.uk", true },
{ "searchdatalogy.com", true },
{ "searchfox.org", true },
+ { "searchmore.dk", true },
{ "searchpartners.dk", true },
- { "seareytraining.com", true },
+ { "searchshops.com", true },
{ "searsucker.com", true },
+ { "searx.be", true },
{ "searx.ru", true },
+ { "searx.run", true },
{ "searx.xyz", true },
{ "seasidestudios.co.uk", true },
{ "season.moe", true },
@@ -34818,19 +38153,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seattle-life.net", true },
{ "seattlefabrication.com", true },
{ "seattlemesh.net", true },
- { "seattleprivacy.org", true },
{ "seattlewalkinbathtubs.com", true },
{ "seb-mgl.de", true },
{ "seb-net.com", true },
{ "sebald.com", true },
{ "sebald.org", true },
+ { "sebandroid.com", true },
{ "sebascelis.com", true },
{ "sebastiaandouma.co.uk", true },
{ "sebastiaandouma.com", true },
{ "sebastiaanwijnimport.nl", true },
+ { "sebastian-haeutle.de", true },
{ "sebastian-janich.de", true },
{ "sebastian-kraus.me", true },
- { "sebastian-tobie.de", true },
+ { "sebastian-lutsch.de", true },
{ "sebastian.expert", true },
{ "sebastianblade.com", true },
{ "sebastianboegl.de", true },
@@ -34838,13 +38174,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sebastiensenechal.com", true },
{ "sebasveeke.nl", true },
{ "sebepoznani.eu", true },
+ { "seberova.cz", true },
{ "sebi.org", true },
{ "sebjacobs.com", true },
+ { "sebster.com", true },
{ "seby.io", true },
{ "sec-mails.de", true },
{ "sec-research.com", true },
{ "sec-wiki.com", true },
{ "sec.ec", true },
+ { "sec.fish", true },
{ "sec.gd", true },
{ "sec.gov", true },
{ "sec.red", true },
@@ -34854,33 +38193,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sec44.org", true },
{ "sec455.com", true },
{ "sec530.com", true },
- { "sec555.com", true },
+ { "secard.me", true },
{ "secbone.com", true },
{ "seccom.ch", true },
{ "secctexasgiving.org", false },
+ { "secfish.com", true },
+ { "secfish.net", true },
{ "secgui.de", true },
{ "sech.me", true },
- { "sechat.one", true },
{ "secinto.at", true },
{ "secnews.gr", true },
{ "secomo.org", true },
{ "secondchancejobsforfelons.com", true },
- { "secondnature.bio", true },
{ "seconfig.sytes.net", true },
{ "secpatrol.de", true },
- { "secretar.is", true },
{ "secretary-schools.com", true },
- { "secretpigeon.com", true },
+ { "secretpanties.com", true },
{ "secretsanta.fr", true },
{ "secretsdujeu.com", true },
{ "secretserveronline.com", true },
{ "secretum.tech", true },
+ { "secrium.io", true },
{ "secteer.com", true },
{ "sectelligence.nl", true },
{ "sectio-aurea.org", true },
{ "section-31.org", true },
{ "section.io", true },
{ "section77.de", true },
+ { "sector.zone", true },
{ "sector5.xyz", true },
{ "sectun.com", true },
{ "secumail.nl", true },
@@ -34893,27 +38233,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "secure.advancepayroll.com.au", true },
{ "secure.co.hu", true },
{ "secure.facebook.com", false },
+ { "securecloudplatform.nl", true },
{ "securecomms.cz", true },
{ "securedns.zone", true },
{ "securedrop.org", true },
{ "secureesolutions.com", true },
{ "securefiletransfer.nl", true },
{ "secureheaders.com", true },
- { "secureideas.com", true },
{ "secureim.de", true },
- { "securejabber.me", true },
{ "securelect-inspection.com", true },
{ "securemailbox.com", true },
+ { "securemantra.net", true },
{ "securemessage.nl", true },
- { "securemy.website", true },
+ { "securemind.ch", true },
{ "securenets.nl", true },
{ "secureobscure.com", true },
{ "secureonline.co", true },
+ { "secureprivacy101.org", true },
{ "securethe.news", true },
{ "securetheorem.com", true },
+ { "securetronic.ch", true },
{ "securetrustbank.com", true },
{ "securevideo.com", true },
- { "securi-tay.co.uk", true },
+ { "secureworks.com", true },
{ "securify.nl", true },
{ "securipy.com", true },
{ "securiscan.io", true },
@@ -34922,9 +38264,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "security-brokers.com", true },
{ "security.gives", true },
{ "security.google.com", true },
+ { "security.love", true },
{ "security201.co.uk", true },
{ "security201.com", true },
+ { "securitybsides.pl", false },
{ "securitycamerascincinnati.com", true },
+ { "securitydriver.com", true },
{ "securityescrownews.com", true },
{ "securityfest.com", true },
{ "securitygladiators.com", true },
@@ -34932,27 +38277,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "securityheaders.io", true },
{ "securityheaders.nl", true },
{ "securityindicators.com", true },
- { "securityinet.com", false },
{ "securitykey.co", true },
{ "securitymap.wiki", true },
{ "securitypluspro.com", true },
{ "securityprimes.in", true },
{ "securitypuppy.com", true },
{ "securityrussia.com", true },
+ { "securitysense.co.uk", true },
{ "securitysnobs.com", false },
- { "securitystrata.com", true },
+ { "securitystreak.com", true },
{ "securitytrails.com", true },
{ "securitywithnick.com", true },
{ "securitywithoutborders.org", true },
- { "securityzap.com", true },
- { "securocloud.com", true },
{ "secutrans.com", true },
{ "secuvera.de", false },
{ "secvault.io", true },
{ "secwall.me", true },
{ "secyourity.se", true },
{ "sedlakovalegal.com", true },
- { "sedmicka.sk", true },
+ { "sedmicka.sk", false },
{ "sedomicilier.fr", true },
{ "sedussa.ro", true },
{ "see.asso.fr", true },
@@ -34964,9 +38307,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seednode.co", true },
{ "seekers.ch", true },
{ "seekfirstthekingdom.ca", true },
- { "seeks.ru", true },
{ "seemeagain.com", true },
{ "seemomclick.com", true },
+ { "seerainer.com", true },
+ { "seewang.me", true },
{ "seewhatididhere.com", true },
{ "seeworkdone.com", true },
{ "seezeitlodge-bostalsee.de", true },
@@ -34974,8 +38318,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seg-leipzig.org", true },
{ "seg-sys.com", true },
{ "segaretro.org", true },
+ { "segenstore.com", true },
{ "segitz.de", true },
{ "segmetic.com", true },
+ { "segnalabullo.com", true },
+ { "segnalabullo.eu", true },
+ { "segnalabullo.it", true },
{ "segnidisegni.eu", true },
{ "segulink.com", true },
{ "seguridadconsumidor.gov", true },
@@ -34991,11 +38339,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seht.xyz", true },
{ "seibert.ninja", true },
{ "seibu-kikaku.co.jp", true },
+ { "seidel-immobilienberatung.de", true },
{ "seifried.org", true },
{ "seikatu-navi.com", true },
{ "seinfeldquote.com", true },
{ "seirei.ne.jp", true },
- { "seiryokuzai-ch.com", true },
{ "seitai-nabejun.jp", true },
{ "seitai-taiyou.com", true },
{ "seitenwaelzer.de", true },
@@ -35010,7 +38358,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "selbys.net.au", true },
{ "selcusters.nl", true },
{ "seldax.com", true },
- { "selea.se", true },
{ "selected-properties.com", true },
{ "selectel.com", false },
{ "selectel.ru", true },
@@ -35021,12 +38368,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "selectorders.com", true },
{ "selectsplat.com", true },
{ "selegiline.com", true },
+ { "selekzo.com", true },
{ "selent.me", true },
{ "seleondar.ru", true },
{ "self-evident.org", true },
- { "self-signed.com", true },
{ "self-xss.info", true },
- { "self.nu", true },
{ "selfassess.govt.nz", true },
{ "selfdestruct.net", true },
{ "selfici.com", true },
@@ -35034,21 +38380,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "selfishness.com", true },
{ "selfloath.in", true },
{ "selfmade4u.de", true },
+ { "selfycheck.it", true },
{ "selkiemckatrick.com", true },
{ "sellajoch.com", true },
+ { "sellcoins.top", true },
{ "selldorado.com", true },
{ "selldurango.com", true },
{ "sellguard.pl", true },
{ "sellme.biz", true },
- { "sellmoretires.com", true },
- { "sello.com", true },
{ "sellorbuy.uk", true },
{ "sellorbuy.us", true },
{ "seloc.org", true },
{ "semacode.com", true },
{ "semaf.at", true },
{ "semaflex.it", true },
- { "semantica.cz", true },
+ { "semakincantik.com", true },
+ { "semantica.cz", false },
+ { "semao.org", true },
{ "semaphore-studios.com", true },
{ "semdynamics.com", true },
{ "semenov.su", true },
@@ -35059,15 +38407,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "semiread.com", true },
{ "semjonov.de", true },
{ "semox.de", true },
+ { "semplicementelight.com", true },
{ "semps-2fa.de", true },
{ "semps-threema.de", true },
{ "semps.de", true },
- { "semrush.com", true },
{ "semsec.net", true },
- { "semyonov.su", true },
- { "semyonov.us", true },
{ "senarius.de", true },
- { "send4x.com", true },
{ "sendai-sisters.com", true },
{ "sendaiouji.com", true },
{ "sendbox.cz", true },
@@ -35083,28 +38428,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sendya.me", true },
{ "senego.com", true },
{ "senekalstorageman.co.za", true },
+ { "sengoku-okayama.net", true },
{ "sengokulife.com", true },
{ "seniorem.eu", true },
- { "seniorhomepurchaseprogram.com", true },
+ { "seniorhost.net", true },
{ "seniors.singles", true },
+ { "senjukannonreiki.com", true },
{ "senmendai-reform.com", true },
- { "senmonsyoku.top", true },
- { "sennase.net", true },
{ "senobio.com", true },
- { "senorcontento.com", true },
+ { "senorporno.com", true },
{ "sens2lavie.com", true },
- { "sensavi.ua", true },
{ "sense.hamburg", true },
- { "sensebridge.com", true },
{ "sensebridge.net", true },
- { "senseict.com.au", true },
{ "sensepixel.com", true },
{ "senshudo.tv", true },
- { "sensoft-int.com", true },
- { "sensoft-int.org", true },
+ { "sensor-dream.ru", true },
+ { "sensory-brands.com", true },
+ { "sensualism.com", true },
+ { "sensuality-models.com", true },
{ "sentandsecure.com", true },
{ "sentencing.net", true },
- { "sentic.info", true },
{ "sentidosdelatierra.org", true },
{ "sentiments.io", true },
{ "sentinel.gov", true },
@@ -35118,7 +38461,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seo-linz.at", true },
{ "seo-nerd.de", true },
{ "seo-portal.de", true },
+ { "seo-website.ru", true },
{ "seo.consulting", true },
+ { "seo.london", true },
{ "seo.tl", true },
{ "seoagentur2go.de", true },
{ "seoankara.name.tr", true },
@@ -35131,36 +38476,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seojames.com", true },
{ "seolotsen.de", true },
{ "seomarketing.bg", true },
+ { "seomaton.com", true },
+ { "seomaton.org", true },
{ "seomik.dk", true },
{ "seon.me", true },
- { "seoprovider.nl", true },
{ "seoquake.com", true },
{ "seosec.xyz", true },
{ "seosof.com", true },
{ "seotools.asia", true },
{ "seoul.dating", true },
- { "seouniversity.org", true },
{ "seovision.se", true },
{ "seowebexpert.co.uk", true },
{ "seowordpress.pl", 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 },
+ { "septs.blog", true },
{ "sequencing.com", true },
{ "sequiturs.com", true },
- { "ser-it.pl", true },
{ "sera.jp", true },
{ "seraph.tokyo", true },
+ { "serban.ro", true },
{ "serbanpaun.ro", true },
{ "serbianclimbing.com", true },
{ "sereema.com", true },
{ "serenaden.at", true },
+ { "serenavilage.net", true },
+ { "serenavillage.net", true },
{ "serendeputy.com", true },
{ "serf.io", true },
+ { "serfas.gr", true },
{ "serge-design.ch", true },
{ "sergeemond.ca", true },
{ "sergefonville.nl", true },
@@ -35168,8 +38517,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sergije-stanic.me", true },
{ "sergiosantoro.it", true },
{ "sergiozygmunt.com", true },
- { "sergivb01.me", false },
- { "sergos.de", true },
{ "serialexperiments.co.uk", true },
{ "serienstream.to", true },
{ "serigraphs.co.uk", true },
@@ -35180,7 +38527,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sernate.com", true },
{ "serotiuk.com", false },
{ "serpenteq.com", true },
+ { "serrande.roma.it", true },
{ "serrano-chris.ch", true },
+ { "serrature.roma.it", true },
+ { "seru.eu", true },
{ "serve-a.com.au", true },
{ "servea.com.au", true },
{ "serveatechnologies.com", true },
@@ -35188,7 +38538,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "servepublic.org", true },
{ "server-daten.de", true },
{ "server-datenrettung.de", true },
- { "server-essentials.com", false },
+ { "server-essentials.com", true },
{ "server-eye.com", true },
{ "server-eye.de", true },
{ "server92.eu", true },
@@ -35198,9 +38548,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "serverd.de", true },
{ "serverexpose.com", true },
{ "serverfrog.de", true },
+ { "serverhunter.com", true },
+ { "serverlog.net", true },
{ "serveroffline.net", false },
{ "serverpedia.de", true },
- { "serverping.io", true },
{ "servers4all.co.uk", true },
{ "serversfrom.space", true },
{ "serversftw.com", true },
@@ -35210,14 +38561,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "servethecity-karlsruhe.de", true },
{ "servetten-groothandel.nl", true },
{ "servettorna.com", true },
+ { "serveursminecraft.org", true },
{ "servgate.jp", true },
{ "service.gov.uk", true },
+ { "serviceair.com.ar", true },
{ "servicebeaute.fr", true },
{ "serviceboss.de", true },
{ "servicemembers.gov", true },
{ "servicerequesthub.io", true },
+ { "serviciales.com", true },
+ { "servicios-electricos.com", true },
{ "servida.ch", true },
- { "servidoresadmin.com", true },
{ "servietten-grosshandel.at", true },
{ "servietten-grosshandel.be", true },
{ "servietten-grosshandel.ch", true },
@@ -35230,6 +38584,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "servious.org", true },
{ "servitek.de", true },
{ "serviziourgente.it", true },
+ { "servmaslt.com", true },
{ "servo.org", true },
{ "servx.org", true },
{ "serw.org", true },
@@ -35238,7 +38593,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "serwusik.pl", true },
{ "seryox.com", true },
{ "sesam-biotech.com", true },
+ { "sesamecare.com", true },
{ "sesrdcem.cz", true },
+ { "sessile-oak.co.uk", true },
{ "session.bbc.co.uk", true },
{ "session.bbc.com", true },
{ "sessionslogning.dk", true },
@@ -35246,10 +38603,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sestra.in", true },
{ "setasgourmet.es", true },
{ "setenforce.one", true },
+ { "setesat.com.br", true },
{ "sethcaplan.com", true },
{ "sethjust.com", true },
+ { "sethriedel.com", true },
{ "sethvargo.com", true },
- { "setphaserstostun.org", true },
{ "setsailanddive.com", true },
{ "settberg.de", true },
{ "settimanadellascienza.it", true },
@@ -35257,43 +38615,56 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "setuid.io", true },
{ "setuid0.kr", true },
{ "setyoursite.nl", true },
+ { "seulean.gq", true },
+ { "seutens.be", true },
+ { "seutens.eu", true },
{ "seva.fashion", true },
+ { "sevathian.com", true },
{ "seven-purple.com", true },
{ "seven-shadows.de", true },
{ "sevencooks.com", true },
{ "sevenhillsapartments.com.au", true },
{ "sevenicealimentos.com.br", true },
- { "sevenmatches.com", true },
{ "seventwentynine.com", true },
- { "severine-trousselard.com", true },
{ "severntrentinsuranceportal.com", true },
- { "sevinci.ch", true },
+ { "sevocomm.com", true },
{ "sevsey.ru", true },
{ "sevwebdesign.com", true },
{ "sewa.nu", true },
{ "sewafineseam.com", true },
+ { "sewamobilperdana.com", true },
+ { "sewatec.com", true },
{ "sewinginsight.com", true },
{ "sewoo.co.uk", true },
+ { "sex-education.com", true },
+ { "sex5.com", true },
{ "sexar.info", true },
- { "sexara.co", true },
{ "sexdocka.nu", true },
+ { "sexedquickies.com", true },
+ { "sexedrescue.com", true },
{ "sexflare.net", true },
+ { "sexgarage.de", true },
{ "sexmobil.de", true },
+ { "sexocomgravidas.com", true },
+ { "sexoyrelax.com", true },
{ "sexplicit.co.uk", true },
{ "sexservice.io", true },
- { "sexshopnet.com.br", true },
- { "sextfriend.com", true },
+ { "sextop1.pro", true },
{ "sexy-store.nl", true },
+ { "sexyfotosvandep.nl", true },
+ { "sexymassageoil.com", true },
{ "seyfarth.de", true },
{ "seyr.me", true },
{ "sfa.sk", true },
{ "sfaparish.org", true },
+ { "sfaturiit.ro", true },
{ "sfdev.ovh", true },
{ "sfg-net.com", true },
{ "sfg-net.eu", true },
{ "sfg-net.net", true },
{ "sfg-net.org", true },
{ "sfg-nordholz.de", true },
+ { "sfi.sh", true },
{ "sfile.eu", true },
{ "sfirat-haomer.com", true },
{ "sfleisure.com", true },
@@ -35302,13 +38673,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sftool.gov", true },
{ "sg-elektro.de", true },
{ "sg.search.yahoo.com", false },
+ { "sg1.tech", true },
{ "sgb.co", true },
{ "sgcaccounts.co.uk", true },
+ { "sgdementia.ca", true },
{ "sgi.org", true },
{ "sgitc.de", true },
{ "sglibellen.de", true },
+ { "sglorch.me", true },
+ { "sgombero.it", true },
{ "sgroup-hitoduma.com", true },
{ "sgroup-rec.com", true },
+ { "sgrub.xyz", true },
{ "sgs-systems.de", true },
{ "sgs.camera", true },
{ "sgs.systems", true },
@@ -35318,19 +38694,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sgutranscripts.org", true },
{ "sh-heppelmann.de", true },
{ "sh-network.de", true },
+ { "sh0rt.zone", true },
{ "sh0shin.org", true },
+ { "sh11.pp.ua", true },
+ { "sha2017.org", true },
{ "shaadithailand.com", true },
{ "shabiwangyou.com", true },
+ { "shachang.com", true },
{ "shad.waw.pl", true },
+ { "shadedesign.cz", true },
{ "shadesofgrayadr.com", true },
{ "shadesofgraylaw.com", true },
{ "shadex.net", true },
{ "shadigee.org", true },
- { "shadowict.net", true },
{ "shadowict.tech", true },
{ "shadowkingdomrecords.com", true },
{ "shadowkitsune.net", true },
{ "shadowlurker.com.au", true },
+ { "shadowoftheoldgods.com", true },
{ "shadowsing.com", true },
{ "shadowsocks.com", true },
{ "shadowsocks.com.au", true },
@@ -35340,21 +38721,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shadowsocks.se", true },
{ "shadowsocks.to", true },
{ "shadowstack.de", true },
+ { "shadowvolt.net", true },
{ "shadwe.com", true },
{ "shadynook.net", true },
- { "shafou.com", true },
- { "shafou.net", true },
{ "shahar.cc", true },
{ "shaharyaranjum.com", true },
+ { "shahidhashmi.net", true },
{ "shaicoleman.com", true },
- { "shainessim.com", true },
{ "shakan.ch", true },
{ "shakebox.de", true },
{ "shaken-kyoto.jp", true },
{ "shaken110.com", true },
{ "shakepeers.org", false },
{ "shakerwebdesign.net", true },
- { "shakes4u.com", true },
{ "shakespearevet.com", true },
{ "shakingthehabitual.com", true },
{ "shalazine.com", true },
@@ -35368,14 +38747,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shan.si", true },
{ "shanahanstrategy.com", true },
{ "shanetully.com", true },
- { "shankangke.com", true },
+ { "shanevandermeer.com", true },
+ { "shanewadleigh.com", true },
{ "shansing.cn", true },
{ "shansing.com", true },
{ "shansing.net", true },
{ "shansing.space", true },
- { "shaobin.wang", true },
{ "shapediver.com", true },
{ "sharanyamunsi.net", true },
+ { "shard.vc", true },
{ "sharealo.org", true },
{ "sharedhost.de", true },
{ "shareeri.xyz", true },
@@ -35386,9 +38766,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sharelovenotsecrets.com", true },
{ "shareoffice.ch", true },
{ "sharepointdrive.com", true },
+ { "sharer.link", true },
+ { "sharerotic.com", true },
{ "sharescope.co.uk", false },
{ "shareselecttools.com", true },
- { "sharevari.com", true },
{ "shareworks.com", true },
{ "sharezen.de", true },
{ "sharing-kyoto.com", true },
@@ -35396,8 +38777,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shark.cat", true },
{ "shark5060.net", true },
{ "sharkcut.se", true },
- { "sharperedge.pw", true },
- { "sharperedgecomputers.com", true },
{ "sharu.me", true },
{ "sharvey.ca", true },
{ "shattered-souls.de", true },
@@ -35414,37 +38793,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shawnwilkerson.com", true },
{ "shazzlemd.com", true },
{ "shazzlepro.com", true },
+ { "shcode.de", true },
{ "shdsub.xyz", true },
{ "sheaf.site", true },
{ "shearcomfort.com", true },
- { "sheaspire.com.tw", true },
+ { "sheaspire.com", true },
{ "shee.org", true },
{ "sheehyinfinitioftysonsparts.com", true },
{ "sheekmedia.com", true },
{ "sheenveininstitutestl.com", true },
{ "sheepfriends.com", true },
+ { "sheepproductions.com", true },
{ "sheerchain.com", true },
{ "sheet.host", true },
{ "shehaal.com", true },
{ "shehata.com", true },
{ "sheilasdrivingschool.com", true },
{ "shek.zone", true },
+ { "shelbymunsch.com", true },
{ "shelfordsandstaplefordscouts.org.uk", true },
- { "shellday.cc", true },
+ { "shelike.me", true },
{ "shelleystoybox.com", true },
{ "shellfire.de", true },
{ "shellgame.io", true },
{ "shellj.me", true },
{ "shelljuggler.com", false },
{ "shellshock.eu", true },
+ { "shellta.com", true },
{ "shellvatore.us", true },
- { "shemissed.me", true },
- { "shengbao.org", true },
+ { "shengbao.org", false },
{ "shenghaiautoparts.com", true },
{ "shenghaiautoparts.net", true },
{ "shens.ai", true },
{ "shenyuqi.com", false },
{ "sherbers.de", true },
+ { "sherpa.blog", true },
{ "sherrikehoetherapy.com", true },
{ "sherut.net", true },
{ "shft.cl", true },
@@ -35454,35 +38837,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shh-listen.com", true },
{ "shh.sh", true },
{ "shiawasedo.co.jp", true },
+ { "shibbydex.com", true },
{ "shichibukai.net", true },
{ "shico.org", true },
+ { "shieldblaze.com", false },
{ "shielder.it", true },
{ "shift-record.com", true },
{ "shift-to.co.jp", true },
{ "shiftdevices.com", true },
{ "shiftj.is", true },
{ "shiftleft.org", true },
- { "shiftpsych.com", false },
{ "shiga1.jp", true },
{ "shihadwiki.com", true },
+ { "shiji.info", true },
{ "shijing.me", true },
{ "shikimori.one", true },
{ "shikimori.org", true },
+ { "shikiryu.com", true },
{ "shimi.blog", true },
{ "shimi.guru", true },
{ "shimi.net", true },
{ "shimmy1996.com", true },
{ "shimo.im", true },
+ { "shimonfly.com", true },
{ "shinghoi.com", true },
{ "shinglereplacementlv.com", true },
{ "shining.gifts", true },
{ "shinko-osaka.jp", true },
{ "shinnyosangha.org", false },
- { "shinonome-lab.eu.org", true },
+ { "shinomiya.group", true },
{ "shinsyo.com", true },
{ "shintoism.com", true },
{ "shinuytodaati.co.il", true },
- { "shiny.gift", true },
{ "shinyuu.net", true },
{ "shipard.com", true },
{ "shipard.cz", true },
@@ -35492,15 +38878,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shiqi.ca", true },
{ "shiqi.lol", true },
{ "shiqi.one", true },
+ { "shiqi.online", true },
{ "shiqi.se", true },
{ "shiqi.tv", true },
+ { "shiqi1.com", true },
+ { "shiqishidai.cc", true },
{ "shiqisifu.cc", true },
- { "shirakaba-cc.com", true },
{ "shirao.jp", true },
{ "shirt2go.shop", true },
{ "shirtsdelivered.com", true },
{ "shirtsofholland.com", true },
- { "shiseki.top", true },
{ "shishkin.us", true },
{ "shishlik.net", true },
{ "shitagi-shop.com", true },
@@ -35509,8 +38896,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shitposts.se", true },
{ "shitproductions.org", true },
{ "shitsta.in", true },
- { "shivamber.com", true },
- { "shivammaheshwari.com", true },
+ { "shivamber.com", false },
{ "shivammathur.com", true },
{ "shivatattvayoga.com", true },
{ "shlmail.info", true },
@@ -35519,13 +38905,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shockercityservices.com", true },
{ "shodan.io", true },
{ "shoeracks.uk", true },
+ { "shoes-mori.co.jp", true },
{ "shoestringeventing.co.uk", true },
{ "shokola.com", true },
{ "shooter.dog", true },
{ "shootingstarmedium.com", true },
{ "shop-hellsheadbangers.com", true },
{ "shop-s.net", true },
- { "shop4d.com", true },
{ "shopadvies.nl", true },
{ "shopalike.cz", true },
{ "shopalike.dk", true },
@@ -35541,42 +38927,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shopapi.cz", true },
{ "shopatkei.com", true },
{ "shopbakersnook.com", true },
- { "shopcord.co.uk", true },
{ "shopcoupon.co.za", true },
{ "shopcoupons.co.id", true },
{ "shopcoupons.my", true },
{ "shopcoupons.ph", true },
{ "shopcoupons.sg", true },
- { "shopdongho.com", true },
+ { "shopfazz.com", true },
{ "shopfinale.com", true },
{ "shopific.co", true },
{ "shopific.com", true },
- { "shopify.com", true },
{ "shopifycloud.com", true },
{ "shopkini.com", true },
{ "shoplandia.co", true },
+ { "shopminut.com", true },
{ "shopperexperts.com", true },
{ "shopperexpertss.com", true },
{ "shopping24.de", true },
+ { "shoppingandreviews.it", true },
{ "shoppr.dk", true },
{ "shopregional.com.br", true },
- { "shopsouthafrican.com", true },
{ "shopstart.dk", true },
{ "shopstasy.com", true },
{ "shoptec.sk", true },
+ { "shopunilever.com", true },
{ "shorebreaksecurity.com", true },
{ "shorehamfort.co.uk", true },
- { "short-biography.com", true },
+ { "short-biography.com", false },
{ "short-term-plans.com", true },
+ { "short.wtf", true },
{ "shortcut.pw", true },
{ "shortdiary.me", true },
{ "shorten.ninja", true },
{ "shoshin-aikido.de", true },
{ "shoshin.technology", true },
- { "shota.vip", true },
{ "shotbow.net", true },
{ "shotly.net", true },
- { "shotonwhat.com", true },
{ "shouldihookupwithmybarista.com", true },
{ "shouttag.com", true },
{ "shovonhasan.com", true },
@@ -35591,6 +38976,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "showroom.co.uk", true },
{ "showroom.uk", true },
{ "showsonar.com", true },
+ { "shred.ch", true },
+ { "shredoptics.ch", true },
{ "shredriteservices.com", true },
{ "shrike.me", false },
{ "shrimpcam.pw", true },
@@ -35599,6 +38986,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shrt.tv", true },
{ "shrub.ca", true },
{ "shrug.ml", true },
+ { "shsh.host", true },
+ { "sht.life", true },
{ "shtaketniki.kz", true },
{ "shtaketniki.ru", true },
{ "shteiman.net", true },
@@ -35609,13 +38998,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shuhacksoc.co.uk", true },
{ "shukatsu-support.jp", true },
{ "shulan.moe", true },
- { "shuletime.ml", true },
+ { "shunliandongli.com", true },
+ { "shuomingshu88.com", true },
{ "shura.eu.org", true },
{ "shuro.de", true },
{ "shuset.dk", true },
{ "shushu.media", true },
{ "shutter-shower.com", true },
- { "shuvodeep.de", true },
{ "shux.pro", true },
{ "shwrm.ch", true },
{ "shybynature.com", true },
@@ -35623,8 +39012,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "si-benelux.nl", true },
{ "si.to", true },
{ "si2b.fr", true },
+ { "sia.one", true },
{ "siaggiusta.com", true },
- { "siamdevsqua.re", true },
+ { "siamrehab.com", true },
{ "siamsnus.com", true },
{ "sianbryn.co.uk", true },
{ "siava.ru", true },
@@ -35634,6 +39024,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sibfk.org", true },
{ "sibiutourguide.com", true },
{ "sibrenvasse.nl", true },
+ { "sich-fight.club", true },
{ "siciliadisinfestazioni.it", true },
{ "siciliamconsulting.com", true },
{ "sicilianbalm.com", true },
@@ -35641,7 +39032,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sicilyalacarte.com", true },
{ "sicken.eu", true },
{ "sicurezzalavoro24.com", true },
- { "sicurled.com", false },
+ { "sicurled.com", true },
+ { "sicz.de", true },
{ "sidelka-tver.ru", true },
{ "sidema.be", true },
{ "sidemount-forum.com", true },
@@ -35650,11 +39042,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sidepodcastdaily.com", true },
{ "sidepodcastextra.com", true },
{ "sideshowbarker.net", true },
+ { "sidi-smotri.ru", true },
{ "sidium.de", true },
{ "sidnicio.us", true },
{ "sidonge.com", true },
{ "sidongkim.com", true },
- { "sidpod.ru", true },
+ { "siduga.com", true },
{ "siegemund-frankfurt.de", true },
{ "siel.nl", true },
{ "sielsystems.nl", true },
@@ -35662,11 +39055,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sierpinska.co", true },
{ "sierpinska.eu", true },
{ "sietejefes.com.ar", true },
- { "siewert-kau.de", true },
{ "sift-tool.org", true },
{ "sig6.org", true },
+ { "siga.com", true },
{ "sigabrt.org", true },
+ { "sigcafe.net", true },
{ "siggerudklatreklubb.no", true },
+ { "siggi.io", true },
{ "sight-sound.com", true },
{ "sightcure.jp", true },
{ "sighup.nz", true },
@@ -35678,6 +39073,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sigmapramuka.com", true },
{ "sigmaweb.co.uk", true },
{ "sign.io", true },
+ { "signaconsultoria.com.br", true },
{ "signage.red", true },
{ "signal.org", true },
{ "signalmaps.co.uk", true },
@@ -35687,13 +39083,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "significantbanter.com", true },
{ "signing-milter.org", true },
{ "signix.net", true },
+ { "signpath.io", true },
{ "signrightsigns.co.uk", true },
{ "signtul.com", false },
{ "sigsrv.net", true },
{ "sigterm.no", true },
{ "sigterm.sh", true },
{ "sigurnost.online", true },
+ { "siikaflix.tv", true },
{ "siirtutkusu.com", true },
+ { "sik-it.nl", true },
{ "sikayetvar.com", false },
{ "sikecikcomel.com", true },
{ "sikevux.se", true },
@@ -35704,32 +39103,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "silaslova-ekb.ru", true },
{ "silent-clean.de", true },
{ "silent-yachts.com", true },
- { "silent.live", false },
{ "silentexplosion.de", true },
{ "silentkernel.fr", false },
{ "silentundo.org", true },
{ "silerfamily.net", true },
+ { "silesianus.pl", true },
{ "silica-project.com", true },
{ "silica-project.jp", true },
{ "silicanetworks.com", true },
- { "silicon-north.com", true },
- { "silicon-vision.com", true },
- { "siliconchip.me", true },
{ "silkebaekken.no", true },
- { "silkebeckmann.de", true },
{ "silkon.net", true },
{ "sillisalaatti.fi", true },
+ { "sillypoohbear.gq", true },
{ "sillysnapz.co.uk", true },
{ "silo.org.br", true },
{ "siloportem.net", true },
{ "silsha.me", true },
{ "silv.me", true },
{ "silver-heart.co.uk", true },
+ { "silverblog.org", true },
{ "silverbowflyshop.com", true },
{ "silverdragonart.com", true },
{ "silverfirsdental.com", true },
{ "silvergoldbull.be", true },
- { "silvergoldbull.bj", true },
{ "silvergoldbull.by", true },
{ "silvergoldbull.ca", true },
{ "silvergoldbull.cl", true },
@@ -35762,17 +39158,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "silvergoldbull.hk", true },
{ "silvergoldbull.hn", true },
{ "silvergoldbull.hu", true },
- { "silvergoldbull.id", true },
{ "silvergoldbull.in", true },
{ "silvergoldbull.is", true },
{ "silvergoldbull.it", true },
{ "silvergoldbull.kr", true },
{ "silvergoldbull.li", true },
- { "silvergoldbull.lt", true },
{ "silvergoldbull.lv", true },
{ "silvergoldbull.ma", true },
{ "silvergoldbull.mw", true },
- { "silvergoldbull.my", true },
{ "silvergoldbull.nz", true },
{ "silvergoldbull.pl", true },
{ "silvergoldbull.pt", true },
@@ -35781,10 +39174,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "silvergoldbull.ru", true },
{ "silvergoldbull.se", true },
{ "silvergoldbull.si", true },
- { "silvergoldbull.sn", true },
{ "silvergoldbull.sv", true },
- { "silvergoldbull.tg", true },
- { "silvergoldbull.tj", true },
{ "silvergoldbull.tn", true },
{ "silvergoldbull.tt", true },
{ "silvergoldbull.tw", true },
@@ -35793,6 +39183,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "silvergoldbull.ws", true },
{ "silverkingalaska.com", true },
{ "silverlinkz.net", true },
+ { "silvernight.social", true },
{ "silverseen.com", true },
{ "silvershadow.cc", true },
{ "silverswanrecruitment.com", true },
@@ -35809,6 +39200,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "simam.de", true },
{ "simark.ca", true },
{ "simbeton.nl", true },
+ { "simeon.us", false },
{ "simeonoff.ninja", true },
{ "simetal.ch", true },
{ "simfdr.com", true },
@@ -35819,12 +39211,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "simivalleylighting.com", true },
{ "simivalleyoutdoorlighting.com", true },
{ "simkova-reality.cz", true },
+ { "simlau.net", true },
{ "simmis.fr", true },
+ { "simnovo.net", true },
{ "simoesgoulart.com.br", true },
{ "simon-agozzino.fr", true },
+ { "simon-czech.de", true },
{ "simon-hofmann.org", true },
{ "simon-mueller.de", true },
- { "simon3k.moe", true },
{ "simonastallone.com", true },
{ "simonberard.garden", true },
{ "simonbondo.dk", true },
@@ -35833,8 +39227,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "simonfischer.info", true },
{ "simonhirscher.de", true },
{ "simonkjellberg.com", true },
+ { "simonkjellberg.se", true },
{ "simonlyabonnement.nl", true },
{ "simonmaddox.com", true },
+ { "simonmanuel.com", true },
{ "simonpaarlberg.com", true },
{ "simonpayne.cz", true },
{ "simonreich.de", true },
@@ -35845,21 +39241,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "simonweil.com", true },
{ "simonwessel.net", true },
{ "simonwoodside.com", true },
+ { "simotrescu.ro", true },
{ "simpbx.net", true },
{ "simpel.be", true },
+ { "simpele-recepten.nl", true },
+ { "simpeo.org", true },
{ "simphony.cz", true },
{ "simpip.com", true },
{ "simple.com", false },
{ "simplecmsdemo.com", true },
{ "simplecoding.click", true },
{ "simplecontacts.com", true },
- { "simplecrypt.io", true },
{ "simplednscrypt.org", true },
{ "simplefraud.com", true },
{ "simplegoodhealth.com", true },
{ "simpleindianrecipes.com", true },
{ "simpleinout.com", true },
{ "simpleinvoices.io", true },
+ { "simpleit.services", true },
{ "simplepress.uk", true },
{ "simpletax.ca", true },
{ "simplewire.de", true },
@@ -35870,43 +39269,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "simplidesigns.nl", true },
{ "simplifylivelove.com", true },
{ "simplithai.com", true },
+ { "simplosoft.co.uk", true },
+ { "simply.black", true },
{ "simply.scot", true },
{ "simplycharlottemason.com", true },
{ "simplycloud.de", true },
+ { "simplyenak.com", true },
{ "simplyfixit.co.uk", true },
{ "simplyhelen.de", true },
{ "simplylifetips.com", false },
{ "simplylovejesus.com", true },
{ "simplymozzo.se", true },
{ "simplyregister.net", true },
- { "simplystudio.com", true },
{ "simplytiles.com", true },
{ "simpte.com", true },
{ "simpul.nl", true },
{ "simrail.nl", true },
{ "simsnieuws.nl", true },
{ "simukti.net", true },
+ { "simulfund.com", true },
+ { "simulise.com", true },
{ "simulping.com", true },
- { "sin-nombre-alleria.de", true },
{ "sin.swiss", true },
{ "sinaryuda.web.id", true },
{ "sinatrafamily.com", true },
{ "sincemydivorce.com", true },
{ "sinclairinat0r.com", true },
+ { "sincordones.net", true },
{ "sinde.ru", true },
+ { "sindicatoburgos.org", true },
{ "sinergy.ch", true },
{ "sinfonietta-meridiana.de", true },
- { "sinfulforums.net", true },
{ "singaporemint.com", true },
{ "singapurfirma.com", true },
- { "singel.ch", true },
- { "single-in-stuttgart.de", true },
- { "singles-aus-hamburg.de", true },
{ "singleuse.link", true },
{ "singlu10.org", false },
{ "sinktank.de", true },
{ "sinnersprojects.ro", true },
- { "sinomod.com", true },
{ "sinonimos.com.br", true },
{ "sinonimosonline.com", true },
{ "sinonimosonline.com.br", true },
@@ -35920,6 +39319,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sinusitis-bronchitis.ch", true },
{ "sioeckes.hu", true },
{ "sion.info", true },
+ { "sipa.nc", true },
+ { "sipa.pf", true },
+ { "sipc.org", true },
+ { "sipyuru.com", true },
+ { "sipyuru.lk", true },
{ "siratalmustaqim.com", true },
{ "siraweb.org", true },
{ "sirbouncealotcastles.co.uk", true },
@@ -35933,27 +39337,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "siriuspup.com", true },
{ "sirtaptap.com", true },
{ "sirtuins.com", true },
+ { "sirvoy.ca", true },
+ { "sirvoy.co.nz", true },
+ { "sirvoy.co.uk", true },
+ { "sirvoy.co.za", true },
{ "sirvoy.com", true },
+ { "sirvoy.com.au", true },
+ { "sirvoy.de", true },
+ { "sirvoy.dk", true },
+ { "sirvoy.es", true },
+ { "sirvoy.fi", true },
+ { "sirvoy.fr", true },
+ { "sirvoy.ie", true },
+ { "sirvoy.jp", true },
+ { "sirvoy.nl", true },
+ { "sirvoy.no", true },
+ { "sirvoy.se", true },
+ { "sis.net.sa", true },
+ { "siselectrom.com", true },
{ "siseministeerium.ee", true },
- { "sisiengineers.gq", true },
+ { "sismit.com", true },
+ { "sismit.es", true },
+ { "sisseastumine.ee", true },
{ "sistel.es", true },
{ "sistem-maklumat.com", true },
{ "sistem-maklumat.com.my", true },
+ { "sistemhane.com", true },
{ "sistemy48.ru", false },
{ "sistimiki-anaparastasi.gr", true },
{ "sistov.it", true },
{ "sisv.eu", true },
- { "sisver.host", true },
- { "sisver.mx", true },
{ "sit-brn.ru", true },
{ "sit.ec", true },
+ { "sitanleta.de", true },
{ "sitc.sk", true },
{ "site-helper.com", true },
{ "site.pictures", true },
{ "sitebuilderreport.com", true },
+ { "sitecentre.com.au", true },
{ "sitedrive.fi", true },
{ "sitefactory.com.br", true },
- { "sitehoster.org", true },
{ "sitenv.org", true },
{ "siterencontre.me", true },
{ "sites.google.com", true },
@@ -35961,16 +39384,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sitevandaag.nl", true },
{ "sitischu.com", true },
{ "sitiweb.nl", true },
+ { "sito-online.ch", true },
+ { "sittogether.club", true },
{ "sitz.ch", true },
{ "sivale.mx", true },
{ "sivyerge.com", true },
{ "siw64.com", true },
+ { "siwyd.com", true },
{ "six-o-one.com", true },
{ "sixnines.net", true },
{ "sixpackholubice.cz", true },
- { "sizzle.co.uk", true },
+ { "sizuvip.com", true },
{ "sj-leisure.com", true },
{ "sjaakgilsingfashion.nl", true },
+ { "sjamaan.nl", true },
{ "sjatsh.com", true },
{ "sjbwoodstock.org", true },
{ "sjd.is", false },
@@ -35979,9 +39406,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sjleisure.co.uk", true },
{ "sjnp.org", true },
{ "sjoorm.com", true },
- { "sk-net.cz", true },
+ { "sjorsvanweert.nl", true },
+ { "sjp.co.uk", true },
{ "skala.io", true },
- { "skalarwelle.eu", true },
+ { "skalar.sk", true },
{ "skanvordoff.ru", true },
{ "skanword.info", true },
{ "skatclub-beratzhausen.de", true },
@@ -35996,8 +39424,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "skei.org", true },
{ "skepneklaw.com", true },
{ "skepticalsports.com", true },
+ { "sketch.jpn.com", true },
{ "sketchmyroom.com", true },
- { "sketchywebsite.net", true },
{ "skgzberichtenbox.nl", true },
{ "skhaz.io", true },
{ "skhire.co.uk", true },
@@ -36009,17 +39437,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "skiddle.com", true },
{ "skifairview.com", true },
{ "skifttiljutlanderbank.dk", true },
+ { "skigebied.nl", true },
{ "skigebiete-test.de", true },
+ { "skiinstructor.services", true },
+ { "skiley.net", true },
{ "skill.moe", true },
- { "skilletfood.com", true },
{ "skillled.com", true },
{ "skillmoe.at", true },
- { "skills2serve.org", true },
{ "skills2services.com", true },
- { "skillseo.com", true },
{ "skillside.net", true },
{ "skin-cosmetic.eu", true },
- { "skinandglamour.com", true },
{ "skincare-note.com", true },
{ "skincases.co", true },
{ "skincontracts.co", true },
@@ -36029,82 +39456,91 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "skinmodo.com", true },
{ "skinpwrd.com", true },
{ "skins.net", true },
- { "skinwhiteningoptions.com", true },
{ "skipfault.com", true },
{ "skippy.dog", true },
+ { "skipton.io", true },
{ "skischule-wildewiese.de", true },
{ "skizzen-zeichnungen.de", true },
{ "skk.moe", true },
- { "skks.cz", true },
{ "sklep-majster.pl", true },
- { "sklepsamsung.pl", true },
- { "sklepwielobranzowymd.com", true },
+ { "sklepvoip.tel", true },
{ "sklotechnik.cz", true },
{ "sknclinics.co.uk", true },
{ "skogsbruket.fi", true },
{ "skogskultur.fi", true },
- { "skoilly.cn", true },
{ "skol.bzh", true },
{ "skolagatt.is", true },
{ "skolakrizik.cz", true },
{ "skolem.de", true },
{ "skoleniphp.cz", true },
+ { "skolnilogin.cz", true },
+ { "skolniweby.cz", true },
{ "skommettiamo.it", true },
{ "skontakt.cz", true },
{ "skontorp-enterprise.no", true },
{ "skoolergraph.azurewebsites.net", true },
+ { "skorepova.info", true },
+ { "skorovsud.ru", true },
{ "skorpil.cz", true },
{ "skortekaas.nl", false },
{ "skory.us", true },
- { "skou.dk", false },
{ "skpk.de", true },
- { "skram.de", true },
+ { "skremovals.co.uk", true },
{ "skryptersi.pl", true },
{ "sksdrivingschool.com.au", true },
{ "sktan.com", true },
{ "skulblaka.ch", true },
+ { "skulblaka.cloud", true },
{ "skuldwyrm.no", true },
{ "skutry-levne.cz", true },
+ { "skutry.cz", true },
+ { "skux.ch", true },
{ "skwile-cafe.com", true },
{ "skwitko.com", true },
{ "sky-coach.com", true },
{ "sky-coach.nl", true },
{ "sky-live.fr", false },
+ { "skyanchor.com", true },
{ "skyautorental.com", true },
- { "skybloom.com", false },
+ { "skybloom.com", true },
+ { "skyblue.co.jp", true },
{ "skycmd.net", true },
{ "skyderby.ru", true },
{ "skydragoness.com", true },
{ "skydrive.live.com", false },
- { "skyeeverest.tk", true },
- { "skyem.co.uk", true },
+ { "skyem.co.uk", false },
{ "skyfone.cz", true },
{ "skyger.cz", true },
{ "skyingo.net", true },
+ { "skylarker.org", true },
{ "skylgenet.nl", true },
{ "skylightcreative.com.au", true },
{ "skylinertech.com", true },
{ "skylineservers.com", true },
{ "skyloisirs.ch", true },
- { "skyminds.net", true },
{ "skyn3t.in", true },
{ "skynet233.ch", true },
{ "skynethk.com", true },
{ "skynetnetwork.eu.org", true },
- { "skynetz.tk", true },
+ { "skyparlourfilms.com", true },
{ "skype.com", true },
+ { "skyportcloud.com", true },
{ "skyquid.co.uk", true },
{ "skys-entertainment.com", true },
+ { "skyscanner.com", true },
+ { "skyscanner.gg", true },
+ { "skyscanner.net", true },
+ { "skyscanner.pt", true },
+ { "skyscanner.ru", true },
{ "skyscapecanopies.com", true },
+ { "skyscnr.com", true },
{ "skysuite.nl", true },
- { "skywalkers.cz", true },
+ { "skytec.host", true },
{ "skyynet.de", true },
{ "skyzimba.com.br", true },
{ "sl-bildermacher.de", true },
- { "sl-informatique.ovh", true },
+ { "sl-informatique.fr", true },
{ "sl0.us", true },
- { "sl899.com", true },
- { "sl998.com", true },
{ "slab.com", false },
{ "slack-files.com", true },
{ "slack.com", true },
@@ -36119,11 +39555,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "slash32.co.uk", true },
{ "slashcrypto.org", true },
{ "slate.to", true },
- { "slatop.org", false },
+ { "slaughter.com", true },
{ "slaughterhouse.fr", true },
{ "slavasveta.info", true },
- { "slaws.io", true },
- { "sleeping.town", true },
+ { "sldlcdn.com", true },
+ { "sleepingbaghub.com", true },
{ "sleeplessbeastie.eu", true },
{ "sleepmap.de", true },
{ "sleeps.jp", true },
@@ -36132,6 +39568,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sleepstar.fr", true },
{ "sleestak.net", true },
{ "sleio.com", true },
+ { "slepsluzbabeograd.org", true },
{ "sletat.ru", true },
{ "slever.cz", true },
{ "slevermann.de", true },
@@ -36141,17 +39578,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "slik.ai", true },
{ "slim-slender.com", true },
{ "slimspots.com", true },
- { "slingo-sta.com", true },
{ "slingooriginals.com", true },
{ "slingoweb.com", true },
{ "slink.hr", true },
{ "slip-gaming.tk", true },
+ { "sliptrickrecords.com", true },
{ "slneighbors.org", true },
- { "slo-net.net", true },
{ "slo-tech.com", true },
{ "sloancom.com", true },
+ { "sloanrealtygroup.com", true },
+ { "slobrowink.com", true },
+ { "sloneczni.pl", true },
{ "slonep.net", true },
{ "slopeedge.com", true },
+ { "slopeedge.net", true },
{ "slotarazzi.com", true },
{ "slotcar.com", false },
{ "slotfara.com", true },
@@ -36162,12 +39602,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "slowb.ro", true },
{ "slowcookingperfected.com", true },
{ "slowgames.xyz", true },
+ { "slownik123.pl", true },
+ { "slpm.com", true },
{ "slpower.com", true },
{ "slrd-isperih.com", true },
+ { "slrpancreaticsurgery.org", true },
{ "slt24.de", true },
{ "sluciaconstruccion.com", true },
{ "sluhockey.com", true },
- { "sluimann.de", false },
+ { "sluimann.de", true },
{ "slunecnice.cz", true },
{ "sluo.org", true },
{ "slusham.com", true },
@@ -36177,18 +39620,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "slxh.eu", true },
{ "slxh.nl", true },
{ "slysend.com", true },
+ { "slytech.ch", true },
{ "sm-supplements.gr", true },
{ "sm.ms", true },
- { "sm2016.ch", true },
{ "sma-gift.com", true },
- { "smaaker.com", true },
- { "smablo.com", true },
{ "smackhappy.com", true },
{ "smakassen.no", true },
+ { "smallbytedesign.co", true },
+ { "smallcloudsolutions.co.za", true },
{ "smalldata.tech", true },
{ "smalldogbreeds.net", true },
{ "smalle-voet.de", true },
{ "smallhadroncollider.com", true },
+ { "smallpath.me", true },
{ "smalltalkconsulting.com", true },
{ "smaltimento-rifiuti.org", true },
{ "smaltimento.caserta.it", true },
@@ -36200,10 +39644,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smaltimentoamianto.latina.it", true },
{ "smaltimentorifiuti.firenze.it", true },
{ "smaltimentorifiuti.livorno.it", true },
+ { "smaltimentorifiuti.milano.it", true },
{ "smaltimentorifiuti.prato.it", true },
+ { "smaltimentorifiuti.roma.it", true },
{ "smaltimentorifiuti.veneto.it", true },
{ "smares.de", true },
- { "smarntrading.com", true },
+ { "smart-cloud.store", true },
{ "smart-cp.jp", true },
{ "smart-informatics.com", true },
{ "smart-media-gmbh.de", true },
@@ -36228,10 +39674,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smarthouse.de", true },
{ "smartime.com.ar", true },
{ "smartjoin.style", true },
+ { "smartlink.sk", true },
{ "smartlocksmith.com", true },
{ "smartlogreturns.com", true },
{ "smartlogstock.com", true },
{ "smartlogtower.com", true },
+ { "smartlybuy.com", true },
+ { "smartmachine.com", true },
{ "smartmarketingcoaching.com", true },
{ "smartmeal.ru", true },
{ "smartmessages.net", true },
@@ -36242,6 +39691,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smartphonechecker.co.uk", true },
{ "smartphones-baratos.com", true },
{ "smartpolicingplatform.com", true },
+ { "smartproductguide.com", true },
{ "smartpti.net", true },
{ "smartrecruit.ro", true },
{ "smartservices.nl", true },
@@ -36254,20 +39704,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smartwank.com", true },
{ "smartweb.ge", true },
{ "smartwoodczech.cz", true },
+ { "smartwritingservice.com", true },
{ "smartwurk.nl", false },
- { "smash-gg.club", true },
{ "smatch.com", true },
{ "smb445.com", true },
{ "smdavis.us", true },
{ "smdcn.net", true },
+ { "smdtk.com", true },
{ "sme-gmbh.net", true },
{ "smeetsengraas.com", true },
+ { "smelly.cloud", true },
+ { "smesitel-online.ru", true },
{ "smeso.it", true },
{ "smexpt.com", true },
{ "smiatek.name", true },
+ { "smicompact.com", true },
{ "smileandpay.com", true },
{ "smiledirectsales.com", true },
- { "smilenwa.com", true },
+ { "smilesatlakewood.com", true },
+ { "smileserver.com", true },
{ "smilessoftplay.co.uk", true },
{ "smileytechguy.com", true },
{ "smilingmiao.com", true },
@@ -36277,34 +39732,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smipty.com", true },
{ "smit.com.ua", true },
{ "smit.ee", true },
+ { "smith.bz", true },
{ "smith.co", false },
{ "smithandcanova.co.uk", false },
{ "smithchow.com", true },
{ "smithchung.eu", true },
- { "smithfieldbaptist.org", false },
+ { "smithf.red", true },
+ { "smits.frl", true },
{ "smkw.com", false },
{ "smm.im", true },
{ "smokeandmirrors.agency", true },
{ "smokefree.gov", true },
{ "smokefreerowan.org", true },
+ { "smokeping.pl", true },
{ "smokeus.dk", true },
{ "smokingblendoils.com", true },
- { "smol.cat", true },
+ { "smokinghunks.com", true },
{ "smoo.st", true },
{ "smoothcomp.com", true },
{ "smoothgesturesplus.com", true },
{ "smoothics.at", true },
{ "smoothics.com", true },
{ "smoothics.eu", true },
- { "smoothics.mobi", true },
{ "smoothics.net", true },
{ "smoothtalker.com", true },
{ "smorgasblog.ie", true },
- { "smow.com", true },
- { "smow.de", true },
+ { "smrtrpck.com", true },
{ "sms.storage", true },
{ "smsappointment.com", true },
- { "smsben.net", true },
{ "smsbrana.cz", true },
{ "smsg-dev.ch", true },
{ "smsinger.com", true },
@@ -36316,6 +39771,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smtp.in.th", true },
{ "smtparish.org", true },
{ "smuncensored.com", true },
+ { "smuns.ch", true },
{ "smutek.net", true },
{ "smvcm.com", true },
{ "smx.net.br", true },
@@ -36323,23 +39779,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "snabbare-dator.se", true },
{ "snabbit-support.nu", true },
{ "snabbit-support.se", true },
+ { "snabblim.tk", true },
{ "snackbesteld.nl", true },
{ "snafu.cz", true },
{ "snakafya.com", true },
{ "snap.com", true },
{ "snapappointments.com", true },
{ "snapchat.com", true },
- { "snapfinance.com", true },
{ "snapserv.ch", true },
{ "snapserv.net", true },
- { "snaptier.co", true },
{ "snaptools.io", true },
{ "snargol.com", true },
{ "snatch.com.ua", true },
+ { "snazel.co.uk", true },
{ "snazzie.nl", true },
{ "sncdn.com", true },
{ "sndbouncycastles.co.uk", true },
{ "sneak.berlin", true },
+ { "sneakers88.it", true },
{ "sneakpod.de", true },
{ "sneakycode.net", true },
{ "sneakynote.com", true },
@@ -36348,7 +39805,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sneed.it", true },
{ "sneedit.com", true },
{ "sneedit.de", true },
- { "sneeuwhoogtes.eu", true },
{ "snegozaderzhatel.ru", true },
{ "snel4u.nl", true },
{ "snelbv.nl", true },
@@ -36357,7 +39813,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "snelxboxlivegold.nl", true },
{ "snerith.com", true },
{ "snfdata.com", false },
- { "sngallery.co.uk", true },
{ "sngeo.com", true },
{ "snh48live.org", true },
{ "sniderman.eu.org", true },
@@ -36366,15 +39821,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sniep.net", true },
{ "snight.co", true },
{ "snille.com", true },
- { "snip.run", true },
- { "snippet.host", true },
{ "snippet.wiki", true },
{ "snl.no", true },
{ "sno-kingroofing-gutters.com", true },
{ "snoerendevelopment.nl", true },
{ "snohomishsepticservice.com", true },
{ "snoot.club", true },
- { "snopyta.com", true },
+ { "snopyta.org", true },
{ "snortfroken.net", true },
{ "snote.io", true },
{ "snoupon.com", true },
@@ -36389,9 +39842,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "snowhaze.com", true },
{ "snoworld.one", true },
{ "snowpak.com", true },
+ { "snowparties.com", true },
{ "snowpaws.de", true },
- { "snowplane.net", true },
+ { "snowplane.net", false },
{ "snowraven.de", true },
+ { "snowreport.io", true },
{ "snowy.land", true },
{ "snowyluma.com", true },
{ "snowyluma.me", true },
@@ -36402,6 +39857,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "snuff.porn", true },
{ "snughealth.org.uk", true },
{ "snus123.com", true },
+ { "snuverma.com", true },
{ "snwsjz.com", true },
{ "sny.no", true },
{ "so-comm.fr", true },
@@ -36411,7 +39867,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "soaringtoglory.com", true },
{ "sobaya-gohei.com", true },
{ "sobeau.com", true },
- { "sobelift.com", true },
+ { "sobeelectronics.com", true },
{ "sobersys.com", true },
{ "sobie.ch", true },
{ "sobieray.dyndns.org", true },
@@ -36419,7 +39875,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "soblaznenie2.ru", true },
{ "sobotkama.eu", true },
{ "sobreporcentagem.com", true },
+ { "socal-babes.com", true },
{ "soccorso-stradale.org", true },
+ { "socheat.net", true },
{ "sochi-sochno.ru", true },
{ "sochic.in", true },
{ "sociability.dk", true },
@@ -36427,6 +39885,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "social-media-strategies.it", true },
{ "social-work-colleges.com", true },
{ "socialhams.net", true },
+ { "socializam.com", true },
{ "socialmarketingday.nl", true },
{ "socialmedia-manager.gr", true },
{ "socialmedia.ro", true },
@@ -36435,7 +39894,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "socialrank.com", true },
{ "socialsecurity.gov", false },
{ "socialtrends.pl", true },
- { "socialweblearning.com", true },
{ "socialz.nl", true },
{ "societe-chablaisienne-de-revetements.com", true },
{ "societe-chablaisienne-de-revetements.fr", true },
@@ -36447,6 +39905,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sockeye.io", true },
{ "sockscap64.com", true },
{ "socoastal.com", true },
+ { "socost.net", true },
+ { "soczu.duckdns.org", true },
{ "sodadigital.com.au", true },
{ "sodafilm.de", true },
{ "sodexam.pro", true },
@@ -36456,10 +39916,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "soe-server.com", true },
{ "sofa-rockers.org", true },
{ "sofabedshop.de", true },
+ { "sofgen.com", true },
{ "sofiadaoutza.gr", true },
{ "sofiavanmoorsel.com", true },
{ "sofiesteinfeld.de", true },
- { "sofort.com", true },
+ { "sofoco.us", true },
{ "sofortimplantate-muenchen.de", true },
{ "sofortueberweisung.de", true },
{ "soft41.ru", true },
@@ -36485,18 +39946,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "softwarebetrieb.de", true },
{ "softwarebeveiligingtestdomein.be", true },
{ "softwaredesign.foundation", false },
- { "softwarehardenberg.nl", true },
{ "softwarevoortherapeuten.nl", true },
{ "softwaylancing.com", true },
{ "softwerk-edv.de", true },
+ { "softwoods.com.au", true },
{ "sogola.com", true },
{ "sogravatas.com.br", true },
{ "sogutma.com.tr", true },
{ "sohamroy.me", true },
{ "soia.ca", true },
+ { "sointelcom.com.co", true },
{ "soinvett.com", true },
{ "sokaissues.info", true },
- { "sokche.com", true },
{ "sokietech.com", true },
{ "sokkenhoek.nl", true },
{ "sokolkarvina.cz", true },
@@ -36507,11 +39968,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "solanum-games.com", true },
{ "solar-aydinlatma.com", true },
{ "solar-ec.com", true },
- { "solariiknight.org", true },
+ { "solar-floodlight.ca", true },
+ { "solar-systems.ca", true },
+ { "solar-window.ca", true },
{ "solariilacheie.ro", true },
+ { "solarloon.com", true },
{ "solarplan-berlin.de", true },
{ "solarstrom.net", true },
- { "soldecom.com", true },
{ "solden.be", true },
{ "soldesduck.be", true },
{ "soldesduck.ch", true },
@@ -36523,7 +39986,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "solemare-hotel.it", true },
{ "solentbasketball.co.uk", true },
{ "solentbubblesandbounce.co.uk", true },
- { "solepurposetest.com", true },
{ "soleria.eu", true },
{ "solesoftware.de", true },
{ "soleus.nu", false },
@@ -36535,37 +39997,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "solihullcarnival.co.uk", true },
{ "solihullinflatables.com", true },
{ "solihulllionsclub.org.uk", true },
+ { "solihullpcrepairs.co.uk", true },
{ "solipym.net", true },
{ "solit.systems", true },
{ "solitairenetwork.com", true },
+ { "solitaryride.com", true },
{ "solmek.co.uk", true },
{ "solmek.com", true },
{ "solomisael.com", true },
{ "solomo.pt", true },
+ { "solomonsklash.io", true },
{ "solonotizie24.it", true },
{ "solos.im", true },
{ "solsocog.de", false },
- { "soluphant.de", true },
+ { "solupredperu.com", true },
{ "solutionhoisthire.com.au", true },
+ { "solutions-marquagedelignes.com", true },
{ "solutions-teknik.com", true },
{ "solvation.de", true },
- { "solve-it.se", true },
- { "solve.co.uk", true },
- { "solved.tips", true },
{ "solvemethod.com", true },
{ "solvewebmedia.com", true },
{ "solvingproblems.com.au", true },
{ "solvops.com", true },
+ { "solxsys.com", true },
{ "somaini.li", true },
{ "somali-derp.com", true },
{ "somaliagenda.com", true },
{ "somaliaonline.com", true },
{ "somanao.com", true },
- { "somcase.com.br", true },
{ "somecrazy.com", true },
+ { "somepills.com", true },
+ { "somersetscr.nhs.uk", true },
{ "somersetwellbeing.nhs.uk", true },
{ "somethingsketchy.net", true },
+ { "somethingsomething.work", true },
{ "sommefeldt.com", true },
+ { "sommeilsante.com", true },
+ { "somnomedics.eu", true },
{ "somoshuemul.cl", true },
{ "sompani.com", true },
{ "somuchbetterwithage.com", true },
@@ -36575,13 +40043,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sonaraamat.com", true },
{ "sonarqube.com", false },
{ "sonavankova.cz", true },
+ { "sondebase.com", true },
{ "sondergaard.de", true },
{ "sondersobk.dk", true },
- { "songshuzuoxi.com", true },
{ "songsmp3.co", true },
{ "songsmp3.com", true },
+ { "songsmp3.cool", true },
{ "songsmp3.info", true },
- { "songsmp3.io", true },
{ "songsmp3.live", true },
{ "songsmp3.me", true },
{ "songsthatsavedyourlife.com", true },
@@ -36591,33 +40059,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "soniafauville.com", true },
{ "sonic.studio", true },
{ "sonicdoe.com", true },
+ { "sonix.dk", true },
{ "sonixonline.com", true },
+ { "sonofsunart.com", true },
{ "sonyunlock.nu", true },
{ "soohealthy.nl", true },
{ "soomee.be", true },
{ "soomee1.be", true },
- { "soontm.de", true },
{ "soontm.net", true },
{ "soopure.nl", true },
{ "sooscreekdental.com", true },
{ "soph.jp", true },
- { "soph.us", true },
+ { "sopher.io", true },
{ "sophiaandmatt.co.uk", true },
+ { "sophiahatstudio.com", true },
{ "sophiakligys.com", true },
- { "sophieandtrey.com", true },
{ "sopo.me", true },
+ { "sopra.tk", true },
{ "soprabalao.com.br", true },
- { "soquee.net", true },
{ "sor.so", true },
{ "soraharu.com", true },
- { "soraiaschneider.com.br", true },
{ "sorakumo.jp", true },
{ "sorcix.com", true },
{ "sorellecollection.com.au", true },
{ "soren.xyz", true },
{ "sorenstudios.com", true },
- { "sorincocorada.ro", true },
{ "sorrowfulunfounded.com", true },
+ { "sort.land", true },
{ "sortesim.com.br", true },
{ "soruly.com", true },
{ "sorz.org", true },
@@ -36626,49 +40094,56 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sos-falegname.it", true },
{ "sos-idraulico.it", true },
{ "sos-muratore.it", true },
+ { "sos.vg", true },
+ { "sos.yt", true },
+ { "sosko.in.rs", true },
{ "sosoftplay.co.uk", true },
+ { "sospeed.net", true },
{ "sostacancun.com", true },
{ "sosteam.jp", true },
{ "sosteric.si", true },
{ "sot.blue", true },
{ "sot.red", true },
{ "sotadb.info", true },
- { "sotai.tk", true },
{ "sotar.us", true },
- { "sotayhoctap.com", true },
{ "sotoasobi.net", true },
- { "sotthewes.nl", true },
{ "sou-co.jp", true },
{ "soubriquet.org", true },
{ "soufastnet.com.br", true },
- { "sougi-review.top", true },
{ "souked.com", true },
{ "souki.cz", true },
{ "soukodou.jp", true },
{ "soul-source.co.uk", true },
+ { "soulcasa.com.br", true },
{ "soulcrazy.org", true },
{ "soulike.tech", true },
{ "soulmate.dating", true },
{ "soulmating.de", true },
{ "soulogic.com", true },
- { "souly.cc", true },
{ "soumikghosh.com", true },
+ { "soumya.xyz", true },
{ "soumya92.me", true },
+ { "sound.as", true },
{ "soundabout.nl", true },
{ "soundbytemedia.com", true },
+ { "soundclick.com", true },
{ "soundeo.com", true },
{ "soundeo.net", true },
- { "soundhunter.xyz", false },
+ { "soundgasm.net", true },
{ "soundonsound.com", true },
{ "soundprotectionllc.com", true },
+ { "sounds-familiar.info", true },
{ "soundscrate.com", true },
{ "soundtruckandautorepair.com", true },
+ { "soungui.cm", true },
+ { "soungui.com", true },
+ { "soungui.net", true },
{ "soupcafe.org", true },
{ "sour.is", true },
- { "souravsaha.com", true },
- { "sourcebox.be", false },
+ { "sourcebox.be", true },
{ "sourcecode.tw", true },
{ "sourceway.de", true },
+ { "sourdough.vc", true },
{ "souris.ch", true },
{ "sous-surveillance.net", false },
{ "southafrican.dating", true },
@@ -36678,10 +40153,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "southbendflooring.com", true },
{ "southcountyplumbing.com", true },
{ "southdakotahealthnetwork.com", true },
+ { "southeastradiology.com", true },
{ "southeastvalleyurology.com", true },
{ "southernlights.gq", true },
{ "southernmost.us", true },
- { "southernstructuralsolutions.com", true },
{ "southernsurgicalga.com", true },
{ "southernutahinfluencers.com", true },
{ "southflanewsletter.com", true },
@@ -36691,17 +40166,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "southmorangtownhouses.com.au", true },
{ "southside-crew.com", true },
{ "southside-tuning-day.de", true },
- { "southsidebargaincenter.com", true },
{ "southwaymotors.com", true },
- { "southwesteventhire.co.uk", true },
{ "southwestrda.org.uk", true },
{ "souyidai.com", true },
{ "sovendus.com", true },
{ "sovendus.de", true },
- { "sovereignpcs.com", true },
+ { "soverin.net", true },
{ "sowlutions.com", true },
{ "soybase.org", true },
{ "soydemac.com", true },
+ { "soyfanonline.com", true },
+ { "soyvigilante.com", true },
{ "sozai-good.com", true },
{ "sozialstation-ritterhude.de", true },
{ "sozialy.com", true },
@@ -36709,6 +40184,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sp-sites.com.au", true },
{ "sp.com.pl", true },
{ "sp8ce.co", true },
+ { "space-inc.co.jp", true },
{ "space-it.de", true },
{ "space-y.cf", true },
{ "spacebaseapp.com", true },
@@ -36730,26 +40206,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spaldingwall.com", true },
{ "spalnobelyo.com", true },
{ "spamdrain.com", true },
+ { "spamwc.de", true },
{ "spanch.cf", true },
- { "spanda.io", true },
+ { "spanishfox.com", true },
{ "spanjeflydrive.nl", true },
{ "spanner.works", true },
{ "spanyolul.hu", true },
- { "spar-ni.co.uk", true },
{ "sparanoid.com", true },
{ "sparendirekt.at", true },
- { "sparkasse.de", true },
{ "sparkforautism.org", true },
- { "sparklatvia.lv", true },
{ "sparklebastard.com", true },
+ { "sparkresearch.net", true },
{ "sparkz.no", true },
{ "sparprofi.at", true },
{ "sparta-en.org", true },
- { "spartaconsulting.fi", true },
{ "spartacuslife.com", true },
{ "spartaermelo.nl", true },
{ "sparumzuege.de", true },
- { "sparxsolutions.be", true },
{ "spasicilia.it", true },
{ "spatzenwerkstatt.de", true },
{ "spaysy.com", true },
@@ -36762,16 +40235,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spdf.net", true },
{ "spdillini.com", true },
{ "speak-polish.com", true },
+ { "speakersbusiness.com", true },
{ "speakingdiligence.com", true },
{ "spearfishingmx.com", true },
{ "speargames.net", false },
{ "specdrones.us", true },
- { "specialized-hosting.eu", true },
{ "specialproperties.com", true },
{ "specialtyalloys.ca", true },
{ "speciesism.com", true },
{ "spectrum.gov", true },
+ { "spectrumelectrical-brisbane.com.au", true },
{ "spediscifiori.com", true },
+ { "spedizioni.roma.it", true },
{ "speech-balloon.com", true },
{ "speechdrop.net", true },
{ "speechmate.com", true },
@@ -36779,16 +40254,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "speechndraw.com", true },
{ "speeddate.it", false },
{ "speeder.im", true },
+ { "speeders.cf", true },
+ { "speeders.ga", true },
{ "speedof.me", true },
{ "speedracer.ca", true },
{ "speedsportofhull.co.uk", true },
{ "speedtailors.com", true },
{ "speedtest-russia.com", true },
{ "speedwaybusinesspark.com", true },
+ { "speedychat.it", true },
{ "speeltoneel.nl", true },
{ "speerpunt.info", true },
{ "speets.ca", true },
{ "speich.net", true },
+ { "speights-law.com", true },
{ "spek.tech", true },
{ "speletrodomesticos.com.br", true },
{ "spellcheck24.net", true },
@@ -36802,6 +40281,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sperrstun.de", true },
{ "spesys-services.fr", true },
{ "spewingmews.moe", true },
+ { "spha.info", true },
{ "sphere-realty.com", true },
{ "spherenix.org", true },
{ "sphido.org", false },
@@ -36815,14 +40295,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spiegel21.de", true },
{ "spielezar.ch", true },
{ "spielland.ch", true },
- { "spiellawine.de", true },
{ "spieltexte.de", true },
{ "spiet.nl", true },
{ "spiff.eu", true },
{ "spiga.ch", true },
+ { "spikar.gr", true },
{ "spikelands.com", true },
{ "spilled.ink", true },
{ "spillmaker.no", false },
+ { "spilnu.dk", true },
{ "spilogkoder.dk", true },
{ "spinalien.net", false },
{ "spinalo.se", true },
@@ -36831,10 +40312,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spingenie.com", true },
{ "spins.fedoraproject.org", true },
{ "spinspin.wtf", true },
- { "spira-group.eu", true },
{ "spira.kiev.ua", true },
{ "spirella-shop.ch", true },
{ "spirit-hunters-germany.de", false },
+ { "spirit-of-sahara.de", true },
{ "spirit55555.dk", true },
{ "spiritual.dating", true },
{ "spiritualife.net", true },
@@ -36845,6 +40326,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spittank.info", true },
{ "spittersberger.recipes", true },
{ "splarty.net", true },
+ { "splash.solar", true },
+ { "splendidspoon.com", true },
{ "splendorservizi.it", true },
{ "splikity.com", true },
{ "splintermail.com", true },
@@ -36853,11 +40336,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "splnk.net", true },
{ "splopp.com", true },
{ "splunk.net", true },
+ { "spmswiss.com", true },
{ "spnitalianfestival.com", true },
{ "spodelime.com", true },
+ { "spofia.nu", true },
{ "spokaneexteriors.com", true },
{ "spokanepolebuildings.com", true },
{ "spoluck.ca", true },
+ { "spolwind.de", true },
{ "spom.net", true },
{ "sponc.de", true },
{ "spongepowered.org", true },
@@ -36888,6 +40374,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sports.dating", true },
{ "sportsjaw.com", true },
{ "sportsmansblog.com", true },
+ { "sportsmole.co.uk", true },
{ "sportstraineradvisor.com", true },
{ "sportstreetstyle.com", true },
{ "sporttown.it", true },
@@ -36897,11 +40384,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sportwetten-anbieter.de", true },
{ "sportxt.ru", true },
{ "spot-lumiere-led.com", true },
+ { "spot.su", true },
{ "spotfake.news", true },
{ "spotrebitelskecentrum.sk", true },
+ { "spotsee.io", true },
{ "spotswoodvet.com", true },
{ "spottedpenguin.co.uk", true },
{ "spotterpix.de", true },
+ { "spotty.tech", true },
{ "spotupload.com", true },
{ "spotypal.com", true },
{ "sppin.fr", true },
@@ -36910,44 +40400,46 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sprayforce.com", true },
{ "spreadsheetgear.com", true },
{ "spreadsheets.google.com", true },
- { "spreadthenews.eu", true },
- { "spree.co.za", true },
{ "spreed.me", true },
{ "spricknet.de", true },
{ "springerundpartner.de", true },
- { "springfieldbricks.com", true },
{ "springhillmaine.com", true },
{ "springtxcarpetcleaning.com", true },
- { "sprinklermanohio.com", true },
{ "spritmonitor.de", true },
{ "spritsail.io", true },
- { "spro.in", true },
+ { "spro.in", false },
{ "sproktz.com", true },
{ "spron.in", true },
{ "sproutways.com", true },
{ "sprucecreekclubs.com", true },
{ "sprucecreekgcc.com", true },
{ "sps-lehrgang.de", true },
+ { "spsidahoinc.com", true },
{ "spslawoffice.com", true },
{ "spsnewengland.org", true },
{ "spt.re", true },
+ { "spt.tf", true },
{ "sptk.org", true },
{ "sptr.blog", true },
{ "spuffin.com", true },
{ "spufpowered.com", true },
- { "spunkt.fr", true },
+ { "spumanti.dk", true },
{ "spur.com.br", true },
+ { "spurghi.roma.it", true },
+ { "sputnik1net.org", true },
{ "spydar007.com", true },
{ "spydar007.net", true },
+ { "spydar007.wiki", true },
{ "spydersec.com", true },
{ "spyprofit.ru", true },
{ "spyroszarzonis.com", true },
+ { "sqdll.com", true },
{ "sqills.com", true },
{ "sql-und-xml.de", true },
{ "sql.bi", true },
{ "sqlapius.net", true },
{ "sqlbi.com", true },
- { "sqlfeatures.com", true },
+ { "sqlfeatures.com", false },
{ "sqprod.co", true },
{ "sqr-training.com", true },
{ "sqroot.eu", true },
@@ -36956,11 +40448,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "square-src.de", false },
{ "square.com", false },
{ "squareup.com", false },
- { "squawk.cc", true },
+ { "squeakie.club", true },
{ "squeezemetrics.com", true },
{ "squido.ch", true },
{ "squidparty.com", true },
{ "squirex2.com", true },
+ { "squirtingpussygirl.com", true },
{ "sr-33.com", true },
{ "sr33.com", true },
{ "srandom.com", true },
@@ -36969,26 +40462,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "src-el-main.com", true },
{ "src.fedoraproject.org", true },
{ "srchub.org", true },
+ { "srdmarketingservice.com", true },
{ "srife.net", true },
{ "srigc.com", true },
- { "srihash.org", true },
+ { "srihash.org", false },
{ "srinivasan.io", true },
{ "sro.center", true },
{ "srolim.com", true },
+ { "srpx.de", true },
{ "srrdb.com", true },
{ "srroddy.com", true },
- { "srun.in", true },
{ "srv.so", true },
- { "srv.solutions", true },
{ "srvc.io", true },
{ "ss.com", true },
{ "ss.lazio.it", true },
{ "ss.lt", true },
{ "ss.lv", true },
+ { "ss.systems", true },
{ "ss.ua", true },
+ { "ss5197.co", true },
{ "ss64.com", true },
{ "ss64.org", true },
+ { "ss6729.com", true },
+ { "ss6957.co", true },
{ "ss88.uk", true },
+ { "ss9297.co", true },
+ { "ss9397.com", true },
+ { "ss9721.com", true },
+ { "ss9728.co", true },
{ "ssa.gov", false },
{ "ssab.gov", true },
{ "ssbgportal.net", true },
@@ -36997,8 +40498,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sscd.no", true },
{ "ssdax.com", true },
{ "ssenberg.nl", true },
- { "ssh-keys.online", true },
{ "ssh-vault.com", true },
+ { "sshd.site", true },
{ "sshx.top", true },
{ "ssky.cn", true },
{ "ssl-zertifikate.de", true },
@@ -37016,24 +40517,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sslcertificaten.nl", true },
{ "sslcheck.nl", true },
{ "ssldecoder.org", true },
- { "ssldev.net", true },
{ "sslmate.com", true },
{ "sslok.com", false },
{ "sslping.com", true },
{ "sslpoint.com", true },
{ "ssls.cz", true },
{ "sslsurvey.de", true },
- { "ssmato.me", true },
{ "ssmca.com", true },
+ { "ssmic.com", true },
{ "ssnet.vip", true },
- { "sso.to", false },
+ { "sspanel.host", true },
{ "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 },
@@ -37047,34 +40546,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "staatschutz.at", true },
{ "staatsschutz.at", true },
{ "staatsschutzgesetz.at", true },
+ { "stable.network", 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 },
+ { "stadsbos013.nl", true },
{ "stadsbygd.info", true },
- { "stadt-apotheke-muensingen.de", true },
{ "stadtbauwerk.at", false },
{ "stadtbuecherei-bad-wurzach.de", true },
{ "stadterneuerung-hwb.de", true },
{ "stadtkapelle-oehringen.de", true },
- { "stadtpapa.de", true },
{ "stadtplan-ilmenau.de", true },
+ { "stadtundbaum.de", true },
{ "staer.ro", true },
{ "staff.direct", true },
{ "staffexcellence.com", true },
+ { "staffhunt.org.uk", true },
{ "staffordlabour.org.uk", true },
{ "stage.wepay.com", false },
{ "stage4.ch", true },
{ "stageirites.com", true },
{ "stageirites.fr", true },
{ "stageirites.org", true },
+ { "stagelectrical.com.au", true },
+ { "stagespediatrics.com", true },
{ "stahlfeuer-ofenwerkstatt.de", true },
{ "stainedglass.net.au", true },
{ "stainternational.com", true },
+ { "stair.ch", true },
{ "stairfallgames.com", true },
{ "stairlin.com", true },
{ "staklim-malang.info", true },
@@ -37086,11 +40589,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stalker-shop.com", true },
{ "stalkerteam.pl", true },
{ "stalkr.net", true },
- { "stameystreet.com", true },
{ "stamkassa.nl", true },
{ "stammtisch.domains", true },
{ "stamparmakarije.me", true },
- { "stampsbar.co.uk", true },
{ "standagainstspying.org", true },
{ "standard.co.uk", true },
{ "standardequipment.com", true },
@@ -37103,49 +40604,55 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stanthonymaryclaret.org", true },
{ "staparishgm.org", true },
{ "star-clean.it", true },
- { "star.garden", true },
+ { "star-darom.co.il", true },
+ { "star-killer.net", true },
{ "star.watch", true },
{ "starcoachservices.ca", true },
{ "starcomproj.com", true },
{ "stardanceacademy.net", true },
- { "starease.com", true },
- { "starease.net", true },
+ { "stardust-entertainments.co.uk", true },
{ "stareplanymiast.pl", true },
{ "starflix.uk", true },
{ "starfm.de", true },
{ "starfriend.ru", true },
- { "stargarder-jungs.de", true },
{ "stargate365.com", true },
{ "stargatelrp.co.uk", true },
{ "stargazer.de", true },
+ { "stariders.com", true },
{ "starina.ru", true },
{ "starka.st", true },
{ "starkbim.com", true },
{ "starlim.co.in", true },
{ "starlim.org", true },
+ { "starlux.cz", true },
{ "starmtech.fr", true },
{ "starpeak.org", true },
- { "starphotoboothsni.co.uk", true },
- { "starport.com.au", true },
+ { "starretest.nl", true },
+ { "starryvoid.com", true },
{ "starsam80.net", true },
{ "starsguru.com", true },
{ "starsing.bid", true },
{ "starstreak.net", false },
+ { "startablog.tv", true },
{ "startaninflatablebusiness.com", true },
{ "startanull.ru", true },
{ "startergen.com", true },
+ { "startersiteweb.com", true },
{ "startlab.sk", true },
{ "startle.cloud", true },
{ "startliste.info", true },
+ { "startloop.org", true },
+ { "startmail.com", true },
{ "startpage.com", true },
{ "startpage.info", true },
{ "startrek.in", true },
+ { "startstunter.com", true },
{ "starttls-everywhere.org", true },
{ "starttraffic.com", true },
{ "starttraffic.uk", true },
- { "startupgenius.org", true },
+ { "starvizyon.com", true },
{ "starwins.co.uk", true },
- { "stassi.ch", false },
+ { "stassi.ch", true },
{ "stastka.ch", true },
{ "stat.ink", true },
{ "statebuildinggroup.com", true },
@@ -37153,28 +40660,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "static-myfxee-808795.c.cdn77.org", true },
{ "static-myfxoau-808795.c.cdn77.org", true },
{ "static-myfxouk-808795.c.cdn77.org", true },
- { "static.today", true },
{ "static.wepay.com", false },
+ { "statically.io", true },
{ "staticline.de", true },
{ "stationa.ch", true },
- { "stationary-traveller.eu", true },
{ "stationatbuckscounty.com", true },
{ "stationatlyndhurst.com", true },
- { "stationatwillowgrove.com", true },
{ "stationcharlie.co.za", true },
+ { "statistician-online.com", true },
{ "statistik-seminare.de", true },
{ "statistikian.com", true },
{ "statofus.com", true },
{ "stats.g.doubleclick.net", true },
{ "statuscode.ch", true },
{ "stav.io", true },
+ { "stavnager.net", true },
{ "stavros.ovh", true },
{ "stay.black", true },
{ "stayme.cz", true },
+ { "stayokay.com", true },
{ "stayschemingco.com", true },
+ { "stb-lemke.de", true },
{ "stb-schefczyk.de", true },
{ "stb-strzyzewski.de", true },
{ "stb.gov", true },
+ { "stbarnabashospice.co.uk", true },
{ "stbartholomewmanchester.org", true },
{ "stbennett.org", true },
{ "stbl.org", true },
@@ -37184,20 +40694,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stclementmatawan.org", true },
{ "stclementreligioused.org", true },
{ "stcplasticsurgery.com", true },
- { "stcu.org", false },
{ "std-home-test.com", true },
{ "stderr.cc", true },
- { "stdev.top", true },
{ "stdrc.cc", false },
- { "steakhaus-zumdorfbrunnen.de", true },
{ "steakovercooked.com", true },
{ "stealingheather.com", true },
{ "stealsaga.net", true },
+ { "steam-route-saxony.com", true },
{ "steamdb.info", true },
{ "steamerrors.com", true },
{ "steamgifts.com", true },
+ { "steamold.com", false },
+ { "steamosaic.com", true },
{ "steampress.io", true },
- { "steamscore.info", true },
{ "steamstat.us", true },
{ "steamtrades.com", true },
{ "steamwhale.com", true },
@@ -37219,19 +40728,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stefan-schmid.com", true },
{ "stefanbayer.de", true },
{ "stefancosma.xyz", true },
+ { "stefanfriedli.ch", true },
{ "stefanorossi.it", true },
- { "stefanovski.io", true },
- { "stefanvanburen.xyz", true },
+ { "stefanvanburen.xyz", false },
{ "stefanvd.net", true },
{ "stefany.eu", true },
{ "steffenmeister.com", true },
{ "steffentreeservice.com", true },
{ "stefpastoor.nl", true },
{ "stegmaier-immobilien.de", true },
+ { "stehlik.co.uk", true },
{ "steidlewirt.de", true },
{ "steigerlegal.ch", true },
- { "steigerplank.com", false },
{ "steinbergmedia.de", true },
+ { "steiner.sh", true },
{ "steinibox.de", true },
{ "steklein.de", true },
{ "stekosouthamerica.com", true },
@@ -37243,8 +40753,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stelleninserate.de", true },
{ "stellenticket.de", true },
{ "stellmacher.name", true },
- { "stemapp.io", true },
{ "stembureauledenindenhaag.nl", true },
+ { "stemmayhem.com", true },
{ "stemsims.com", true },
{ "stening.co", true },
{ "stenzhorn-cloud.de", true },
@@ -37270,6 +40780,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stephensolis.com", true },
{ "stephsolis.net", true },
{ "stephspace.net", true },
+ { "stephycom.com", true },
{ "steponedanceclub.co.uk", true },
{ "steponedanceclub.uk", true },
{ "stepstone.dk", true },
@@ -37286,13 +40797,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sternenbund.info", true },
{ "sternplastic.com", true },
{ "sternsinus.com", true },
+ { "stesti.cz", true },
{ "stetson.edu", true },
- { "stetspa.it", true },
- { "steuer-voss.de", true },
- { "steuerberater-essen-steele.com", true },
{ "steuerkanzlei-edel.de", true },
{ "steuern-recht-wirtschaft.de", true },
- { "steuerseminare-graf.de", true },
{ "steuertipps-sonderausgaben.de", true },
{ "steveborba.com", true },
{ "stevecostar.com", true },
@@ -37300,17 +40808,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stevedoggett.com", true },
{ "stevegellerhomes.com", true },
{ "stevegrav.es", true },
- { "stevemonteyne.be", true },
+ { "stevehaid.com", true },
{ "steven-bennett.com", true },
{ "steven-klix.de", true },
{ "stevenbolgartersnakes.com", true },
- { "stevenhumphrey.uk", true },
+ { "stevengrech.com", true },
+ { "stevenpilger.com", 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 },
+ { "stevereedmp.co.uk", true },
{ "stevesdrivingschooltyneside.com", true },
{ "stevezheng.cf", true },
{ "stevezheng.tk", true },
@@ -37329,27 +40840,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stian.net", true },
{ "stichtingdemuziekkamer.nl", true },
{ "stichtingliab.nl", true },
- { "stichtingscholierenvervoerzeeland.nl", true },
{ "stichtingsticky.nl", true },
{ "stick2bike.de", true },
{ "stickandpoketattookit.com", true },
{ "stickeramoi.com", true },
{ "stickergiant.com", true },
- { "stickerparadise.me", true },
{ "stickertuningfetzt.de", true },
{ "stickies.io", true },
{ "stickmanventures.com", true },
{ "stickstueb.de", true },
+ { "sticky.ai", true },
{ "stiebel.co.nz", true },
{ "stiebel.com.au", true },
{ "stiebelmedia.co.nz", true },
{ "stiebelmedia.com.au", true },
- { "stiebelservice.com.au", true },
{ "stiebelstore.com.au", true },
{ "stift-kremsmuenster.at", true },
{ "stiftemaskinen.no", true },
{ "stigharder.com", true },
{ "stigviewer.com", true },
+ { "stijnbelmans.be", true },
{ "stijncrevits.be", true },
{ "stijnodink.nl", true },
{ "stikic.me", true },
@@ -37360,6 +40870,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stimmgabel.lu", true },
{ "stin.hr", true },
{ "stinaspiegelberg.com", true },
+ { "stinsky.com", true },
{ "stintup.com", true },
{ "stipsan.me", true },
{ "stirblaut.de", true },
@@ -37386,6 +40897,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stlukenh.org", true },
{ "stlukesbrandon.org", true },
{ "stm-net.de", true },
+ { "stm32f4.jp", true },
{ "stma.is", true },
{ "stmariagoretti.net", true },
{ "stmarkseagirt.com", true },
@@ -37401,6 +40913,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stmsolutions.pl", true },
{ "stneotsbouncycastlehire.co.uk", true },
{ "stnevis.ru", true },
+ { "stockholmpride.org", true },
{ "stockpile.com", true },
{ "stockportpyramid.co.uk", true },
{ "stockrow.com", true },
@@ -37410,37 +40923,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stocp.org", true },
{ "stodieck.com", true },
{ "stoebermehl.at", true },
+ { "stoeckidsign.de", true },
{ "stoerevrouwensporten.nl", true },
{ "stoffelnet.de", true },
+ { "stoicatedy.ovh", true },
+ { "stoinov.com", true },
{ "stokvistrading.nl", true },
{ "stolin.info", true },
{ "stolina.de", false },
{ "stolkpotplanten.nl", true },
{ "stollen-wurm.de", true },
{ "stollenwurm.de", true },
- { "stolpi.is", true },
+ { "stolpi.is", false },
{ "stomt.com", true },
{ "stoneagehealth.com.au", true },
{ "stonechatjewellers.ie", true },
- { "stonedworms.de", true },
+ { "stonedwarf5.net", true },
{ "stoneedgeconcrete.com", true },
{ "stonegateapartmentsstl.com", true },
{ "stonehammerhead.org", true },
{ "stonehurstcap.com", true },
+ { "stoneproperty.ie", true },
{ "stonewuu.com", true },
{ "stony.com", true },
{ "stonystratford.org", true },
{ "stopbullying.gov", true },
- { "stopfraud.gov", false },
+ { "stopfraud.gov", true },
{ "stopjunkmail.co.uk", true },
+ { "stopmodacruel.org", true },
+ { "stopoverconnections.com", true },
{ "stopthethyroidmadness.com", true },
+ { "stopthinkconnect.jp", true },
{ "storageideas.uk", true },
{ "stordbatlag.no", true },
{ "storedsafe.com", true },
{ "storeit.co.uk", true },
- { "storeprice.co.uk", true },
{ "storillo.com", true },
{ "storm-family.com", true },
+ { "storm-family.nl", true },
{ "stormi.io", true },
{ "storvann.net", true },
{ "storvann.no", true },
@@ -37448,8 +40968,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "storycollective.nl", true },
{ "storyland.ie", true },
{ "storysift.news", true },
- { "storytea.top", true },
{ "storytell.com", true },
+ { "storytellingforbusiness.com.au", true },
{ "storytime.hu", true },
{ "stouter.nl", true },
{ "stoxford.com", true },
@@ -37464,30 +40984,45 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "strafensau.de", true },
{ "strafvollzugsgesetze.de", true },
{ "strahlende-augen.info", true },
- { "strajnar.si", true },
{ "straka.name", true },
+ { "strandbyfysio.dk", true },
{ "strandedinotter.space", true },
{ "strandom.ru", true },
{ "strandschnuppern.de", true },
+ { "strange.ga", true },
+ { "strangelandrecording.com", true },
+ { "strangelandrecordingstudios.com", true },
+ { "strangelandsoundstage.com", true },
{ "strangelane.com", true },
+ { "strangelanerecords.com", true },
+ { "strangemusicbox.com", true },
+ { "strangemusichollywood.com", true },
+ { "strangemusicinc.com", true },
{ "strangemusicinc.net", true },
+ { "strangevip.com", true },
{ "strangeways.ca", false },
+ { "strangeworksinc.com", true },
+ { "strangeworldmerch.com", true },
+ { "strangeworldmerchandising.com", true },
{ "straphael-holyangels.com", true },
{ "strate.io", true },
{ "strategiccapital.com", true },
{ "strategiclivingblog.com", true },
{ "strategie-zone.de", true },
+ { "strategos.co", true },
{ "strathewerd.de", true },
{ "stratmann-b.de", true },
+ { "stratuscloud.co.za", true },
+ { "stratuscloudconsulting.net", true },
{ "straubis.org", true },
{ "strauser.com", true },
{ "stravers.shoes", true },
{ "strawberry-laser.gr", true },
- { "streamblur.net", true },
{ "streamchan.org", true },
{ "streamelements.com", true },
{ "streamkit.gg", true },
{ "streampleasure.xyz", true },
+ { "streathamfoodfestival.com", true },
{ "street-medics.fr", true },
{ "street-smart-home.de", true },
{ "street-tek.com", true },
@@ -37504,19 +41039,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "strengthroots.com", true },
{ "stretchmarkdestroyer.com", true },
{ "stretchmyan.us", true },
- { "stretchpc.com", true },
{ "striata.com", true },
{ "striatadev.com", true },
{ "stricted.net", true },
{ "strictlyguitar.de", true },
{ "strijkshop.be", true },
- { "stringbeanstudio.com", true },
{ "stringtoolbox.com", true },
{ "stringvox.com", true },
{ "stripe.com", true },
{ "striped.horse", true },
+ { "strippersondemand.com", true },
{ "strivephysmed.com", false },
{ "strm.hu", true },
+ { "strm.pl", true },
{ "strobeltobias.de", true },
{ "strobeto.de", true },
{ "strobotti.com", true },
@@ -37524,9 +41059,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stroeder.com", true },
{ "stroeerdigital.de", true },
{ "stroginohelp.ru", true },
- { "strom.family", true },
+ { "stroke-of-luck.com", true },
{ "stromaci.sk", true },
- { "stromberger.org", true },
+ { "stromak.cz", true },
{ "strommenhome.com", true },
{ "stromzivota.sk", true },
{ "strongpassword.club", true },
@@ -37535,17 +41070,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stroomacties.nl", true },
{ "strosemausoleum.com", true },
{ "stroseoflima.com", true },
+ { "strotmann.de", true },
{ "strozik.de", true },
{ "strrl.com", true },
{ "structurally.net", true },
{ "structure.systems", true },
{ "strugee.net", true },
- { "strutta.me", true },
{ "strydom.me.uk", true },
{ "stsolarenerji.com", true },
{ "ststanislaus.com", true },
{ "ststanstrans.org", true },
{ "stt.wiki", true },
+ { "sttammanyurology.com", true },
{ "sttg.com.au", true },
{ "stthomasbrigantine.org", true },
{ "stuartbell.co.uk", true },
@@ -37554,13 +41090,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stuartmorris.me", true },
{ "stuartmorris.name", true },
{ "stuartmorris.tel", true },
- { "stuarts.xyz", false },
{ "stuckateur-bruno.de", true },
+ { "stucki-bagger.ch", true },
{ "stuco.co", true },
{ "stucydee.nl", true },
{ "studenckiemetody.pl", true },
{ "student-eshop.cz", true },
{ "student-eshop.sk", true },
+ { "studenterguiden.dk", true },
{ "studentfinancecountdown.com", true },
{ "studentforums.biz", true },
{ "studentklinikk.no", true },
@@ -37570,17 +41107,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "studentse.fr", true },
{ "studenttenant.com", true },
{ "studiebegeleiding-haegeman.be", true },
- { "studienportal.eu", true },
{ "studio-637.com", true },
{ "studio-architetto.com", true },
{ "studio-fotografico.ru", true },
{ "studio-happyvalley.com", true },
{ "studio-n.pl", true },
- { "studio44.fit", true },
{ "studioadevents.com", true },
{ "studioavvocato24.it", true },
{ "studiobergaminloja.com.br", true },
- { "studiodentisticosanmarco.it", true },
+ { "studiodentisticomasi.com", true },
{ "studiodewit.nl", true },
{ "studiogavioli.com", true },
{ "studiogears.com", true },
@@ -37592,6 +41127,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "studiomarcella.com", true },
{ "studionowystyl.pl", true },
{ "studiopirrate.com", true },
+ { "studiopop.com.br", true },
{ "studioproapp.com", true },
{ "studioriehl.com", true },
{ "studioscherp.nl", true },
@@ -37601,6 +41137,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "studiosus.com", true },
{ "studiotheatrestains.fr", true },
{ "studiovaud.com", true },
+ { "studipad.de", true },
{ "studipro-formation.fr", true },
{ "studipro-marketing.fr", true },
{ "studisys.net", true },
@@ -37609,15 +41146,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "studyin.jp", true },
{ "studyspy.ac.nz", true },
{ "studytactics.com", true },
+ { "stuermer.me", true },
{ "stuetzredli.ch", true },
{ "stuffi.fr", true },
- { "stuffie.org", false },
- { "stuffiwouldbuy.com", false },
{ "stuka-art.de", true },
{ "stulda.cz", false },
{ "stumeta.de", true },
{ "stumeta2019.de", true },
- { "stumf.si", true },
{ "stuntmen.xyz", true },
{ "stupendous.net", false },
{ "stutelage.com", true },
@@ -37629,16 +41164,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stuvel.eu", true },
{ "stuvus.de", true },
{ "stuvus.uni-stuttgart.de", true },
+ { "stview.me", true },
{ "stw-group.at", true },
{ "stygium.net", false },
- { "stylaq.com", true },
{ "stylebajumuslim.com", true },
{ "styleci.io", true },
{ "stylecollective.us", true },
- { "styles.pm", true },
+ { "styletron.org", true },
{ "stylett.ru", true },
{ "stylewish.me", true },
- { "styloeart.com", true },
{ "stypr.com", true },
{ "su1ph3r.io", true },
{ "suaudeau.fr", true },
@@ -37655,13 +41189,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "submelon.tech", true },
{ "subohm.com", true },
{ "suborbital.io", true },
- { "subrosr.com", true },
+ { "subsistence.wiki", true },
{ "substitutealert.com", true },
{ "subtitry.ru", true },
+ { "subtlelonging.com", true },
{ "suburban-landscape.net", true },
{ "suburbaninfinitioftroyparts.com", true },
{ "subversive-tech.com", true },
- { "subzerotech.co.uk", true },
{ "succ.in", true },
{ "succesprojekter.dk", true },
{ "successdeliv.com", true },
@@ -37670,14 +41204,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "suchmaschinen-werkstatt.de", true },
{ "suckmyan.us", false },
{ "sucretown.net", true },
- { "sud66.com", true },
{ "sudanindependent.com", true },
{ "sudaraka.org", true },
{ "sudmotor-occasions.be", true },
{ "sudo-i.net", true },
{ "sudo.li", true },
{ "sudo.ws", true },
- { "sudokian.io", true },
{ "sudoschool.com", true },
{ "suelyonjones.com", true },
{ "suessdeko.de", true },
@@ -37686,55 +41218,75 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "suffix.ru", true },
{ "sufix.cz", true },
{ "sugarandcloth.com", true },
- { "sugarbrother.com", true },
- { "sugarfactory.cz", true },
- { "sugarhillsfarm.com", true },
+ { "sugarbrother.com", false },
{ "sugarlandkarate.net", true },
+ { "sugarlandurology.com", true },
{ "sugarmillmanagement.com", true },
{ "sugarshin.net", true },
{ "suggea.com", true },
{ "suggestim.ch", true },
+ { "suhaildawood.com", true },
{ "suisui.stream", true },
{ "suitesapp.com", true },
{ "sujal.com", true },
- { "sujatadev.in", true },
{ "sujoydhar.in", true },
{ "suka.moe", true },
{ "suke3.jp", true },
- { "suki.moe", true },
{ "suko.pe", true },
- { "sukoyakapp.com", true },
{ "sukrie.net", true },
{ "suksit.com", true },
+ { "sulavius.tech", true },
{ "sulek.eu", true },
- { "sulian.me", false },
{ "sullenholland.nl", true },
{ "suluvir.com", true },
{ "sumguy.com", true },
+ { "sumit.me", true },
+ { "sumitchahal.com", true },
{ "summa.eu", false },
{ "summerbo.at", true },
{ "summercampthailand.com", true },
{ "summershomes.com", true },
- { "sun-wellness-online.com.vn", true },
+ { "summit-level.ru", true },
+ { "summiteyekc.com", true },
+ { "sun-beach.com.ua", true },
+ { "sun1218.com", true },
+ { "sun1245.com", true },
+ { "sun1338.com", true },
+ { "sun1345.com", true },
+ { "sun1378.com", true },
+ { "sun668.asia", true },
+ { "sun668.co", true },
{ "sunbritetv.com", true },
{ "sunbury.xyz", true },
{ "sunchasercats.com", true },
+ { "suncity288.com", true },
+ { "suncity288.net", true },
+ { "suncity8118.cn", true },
+ { "suncity8118.com", true },
+ { "suncity818.cn", true },
+ { "suncity818.com", true },
+ { "suncity818.net", true },
+ { "suncity8338.cn", true },
+ { "suncity8338.com", true },
+ { "suncity858.cn", true },
+ { "suncity858.com", true },
+ { "suncity8668.com", true },
+ { "suncity8998.com", true },
{ "sundanceusa.com", true },
{ "sundayfundayjapan.com", true },
- { "sundayrest.com", true },
{ "sundragon.se", true },
{ "sunfiregold.com", true },
{ "sunflyer.cn", false },
{ "sunfox.cz", true },
+ { "sunfulong.blog", true },
+ { "sunfulong.me", true },
{ "sungreen.info", true },
{ "sunhaoxiang.net", true },
- { "sunjaydhama.com", true },
{ "sunjiutuo.com", true },
{ "sunlit.cloud", true },
{ "sunn.ie", true },
+ { "sunnibangla.com", true },
{ "sunny.co.uk", true },
- { "sunnylyx.com", true },
- { "sunnysidechurchofchrist.org", true },
{ "sunoikisis.org", true },
{ "sunplay.host", true },
{ "sunred.info", true },
@@ -37743,19 +41295,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sunshinesf.org", true },
{ "sunsmartresorts.com", true },
{ "sunsong.org", true },
+ { "sunsquare.cz", true },
{ "sunstar.bg", true },
{ "sunwolf.studio", true },
- { "suool.net", true },
- { "suourl.com", true },
{ "supa.sexy", true },
{ "supastuds.com", true },
- { "supcoronado.com", true },
{ "supedi.com", true },
{ "supedi.de", true },
{ "supedio.com", true },
+ { "super-erotica.ru", true },
{ "superaficionados.com", true },
{ "superbart.nl", true },
{ "superbdistribute.com", true },
+ { "superbomsupermercado.com.br", true },
{ "superbouncebouncycastles.com", true },
{ "supercalorias.com", true },
{ "supercastlesadelaide.com.au", true },
@@ -37774,10 +41326,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "superhome.com.au", true },
{ "superidropulitrice.com", true },
{ "superlandnetwork.de", true },
+ { "superlisa.nl", true },
{ "supermae.pt", true },
{ "supermarx.nl", true },
- { "supermercadosdia.com.ar", false },
+ { "supermercadosdia.com.ar", true },
{ "supermercato24.it", true },
+ { "supermil.ch", true },
{ "supern0va.net", true },
{ "supernaut.info", true },
{ "supernt.lt", true },
@@ -37789,9 +41343,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "supersu.kr", true },
{ "superswingtrainer.com", true },
{ "supertasker.org", true },
- { "supertechcrew.com", true },
{ "supertutorial.com.br", true },
+ { "supervets.com.au", true },
{ "supervisionassist.com", true },
+ { "superway.es", true },
{ "supeuro.com", true },
{ "supioka.com", true },
{ "supmil.net", true },
@@ -37799,6 +41354,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "supplies24.at", true },
{ "supplies24.es", true },
{ "supplynation.org.au", true },
+ { "support-ticino.ch", true },
{ "support.mayfirst.org", false },
{ "supportdesk.nu", true },
{ "supportericking.org", true },
@@ -37809,31 +41365,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "supremestandards.com", true },
{ "supriville.com.br", true },
{ "sur-v.com", true },
- { "surao.cz", true },
- { "surasak.io", true },
- { "surasak.net", true },
- { "surasak.org", true },
{ "surdam.casa", true },
{ "sure-it.de", true },
{ "surefit-oms.com", true },
+ { "surefleet.com.au", true },
{ "suretone.co.za", true },
{ "surfnetkids.com", true },
{ "surfnetparents.com", true },
{ "surfocal.com", true },
- { "surgenet.nl", true },
{ "surgeongeneral.gov", true },
{ "surgicalassociateswny.com", true },
+ { "surmountsoft.com", true },
{ "suroil.com", true },
{ "surpreem.com", true },
- { "surrealcoder.com", true },
{ "surreyheathyc.org.uk", true },
{ "suruifu.com", true },
{ "survature.com", true },
+ { "surveillance104.com", true },
{ "surveyhealthcare.com", true },
{ "surveymill.co.uk", true },
- { "survivalmonkey.com", true },
{ "survivebox.fr", true },
- { "susanbpilates.co", true },
+ { "survivingmesothelioma.com", true },
{ "susanbpilates.com", true },
{ "susann-kerk.de", true },
{ "susanna-komischke.de", true },
@@ -37842,10 +41394,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sushi.roma.it", true },
{ "sushibesteld.nl", true },
{ "sushikatze.de", true },
+ { "susoccm.org", true },
{ "susosudon.com", true },
+ { "suspect.id", true },
{ "suspension-shop.com", true },
{ "sussexheart.com", true },
+ { "sustainability.gov", true },
{ "sustainabilityknowledgegroup.com", true },
+ { "sustainabilitysociety.hk", true },
{ "sustainoss.org", true },
{ "sustc.ac.cn", true },
{ "sustsol.com", true },
@@ -37855,7 +41411,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "suurhelsinki.cf", true },
{ "suuria.de", true },
{ "suv4.net", true },
- { "suwalls.com", true },
{ "suzi3d.com", true },
{ "suziekovner.com", true },
{ "suzukimarinepress.com", true },
@@ -37864,19 +41419,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sv-schody.cz", true },
{ "sv-turm-hohenlimburg.de", true },
{ "sv.search.yahoo.com", false },
+ { "sv1880-lichtenau.de", true },
{ "svager.cz", true },
{ "svak-gutachter.de", true },
- { "svallee.fr", false },
{ "svanstrom.com", true },
{ "svanstrom.org", true },
{ "svantner.sk", true },
{ "svarnyjunak.cz", true },
+ { "svartx.com", true },
+ { "svatbamisiaviti.tk", true },
{ "svc-sitec.com", true },
{ "svc-sitec.com.mx", true },
{ "svc-sitec.mx", true },
{ "svc-sitec.org", true },
+ { "svc4u.de", true },
{ "svdb.co", false },
- { "svdreamcatcher.com", true },
+ { "svdesign.su", true },
{ "sveinerik.org", true },
{ "svendubbeld.nl", true },
{ "sveneckelmann.de", true },
@@ -37884,7 +41442,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "svenluijten.com", false },
{ "svenmuller.nl", true },
{ "svennd.be", true },
- { "svenrath.de", true },
+ { "svenskapsalmer.se", true },
{ "svetandroida.cz", true },
{ "svetila.com", true },
{ "svetlilo.com", true },
@@ -37895,23 +41453,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "svm-it.eu", true },
{ "svobodnyblog.cz", true },
{ "svorcikova.cz", true },
+ { "svpoa.org.uk", true },
{ "svsb-live.azurewebsites.net", false },
+ { "sw-machines.io", true },
{ "sw-servers.net", true },
{ "sw33tp34.com", true },
- { "swagsocial.net", true },
{ "swankism.com", true },
{ "swansdoor.org", true },
{ "swap.gg", true },
{ "swapadoodle.com", true },
{ "swaptaxdata.com", true },
+ { "swarfarm.com", true },
{ "swarlys-server.de", true },
- { "swarovski-lov.cz", true },
{ "swat4stats.com", true },
{ "swattransport.ae", true },
{ "sway-cdn.com", true },
+ { "swaz.co.uk", true },
+ { "swc-cfc.gc.ca", true },
{ "swd.agency", true },
- { "swe77.com", true },
- { "swe777.com", true },
+ { "sweak.net", true },
{ "swedishhost.com", true },
{ "swedishhost.se", true },
{ "sweep-me.net", true },
@@ -37921,8 +41481,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sweet-orr.com", true },
{ "sweet-spatula.com", true },
{ "sweetair.com", true },
+ { "sweetbabyjesus.com", true },
{ "sweetbridge.com", true },
- { "sweetenedcondensed.com", true },
{ "sweetgood.de", true },
{ "sweethomesnohomishrenovations.com", true },
{ "sweets-mimatsu.com", true },
@@ -37930,48 +41490,50 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sweharris.org", true },
{ "swerve-media-testbed-03.co.uk", true },
{ "swetrust.com", true },
- { "swey.net", true },
{ "swfmax.com", true },
+ { "swi.sytes.net", true },
+ { "swid.co.uk", true },
{ "swiftcashforcars.com.au", true },
{ "swifteh.net", true },
{ "swiftpcbassembly.com", true },
{ "swiftqueue.com", true },
{ "swilly.org", true },
- { "swimbee.nl", true },
- { "swimready.net", true },
{ "swimwear365.co.uk", true },
{ "swineson.me", true },
{ "swing-belleville.de", true },
- { "swingerclub.in", true },
{ "swingmonkey.com", true },
+ { "swingtimeinthegardens.com", true },
+ { "swingular.com", true },
{ "swipetv.ie", true },
{ "swiss-apartments.com", true },
{ "swiss-connection.net", true },
{ "swiss-cyber-experts.ch", true },
{ "swiss-vanilla.ch", true },
{ "swiss-vanilla.com", true },
+ { "swisscypher.com", true },
{ "swissdojo.ch", true },
{ "swisselement365.com", true },
+ { "swisservers.com", true },
{ "swissfreshaircan.ch", true },
- { "swissfreshaircan.com", true },
{ "swissid.ch", true },
{ "swisslinux.org", true },
{ "swisstechassociation.ch", true },
{ "swissvanilla.ch", true },
{ "swissvanilla.com", true },
{ "switch-trader.com", true },
- { "switch.moe", true },
+ { "switchchargers.com", true },
{ "switcheo.exchange", true },
{ "switcheo.rocks", true },
{ "swivells.com", true },
{ "swkdevserver.tk", true },
{ "swktestserver.tk", true },
{ "swn-nec.de", true },
+ { "swo.re", true },
{ "swordfeng.xyz", true },
- { "swqa.hu", true },
{ "swrpgitems.com", true },
{ "swvaux.com", true },
{ "swxtd.com", true },
+ { "swy.cz", true },
{ "swyn.net", true },
{ "sx8.ovh", true },
{ "sxistolithos.gr", true },
@@ -37997,57 +41559,54 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sylvaindurand.org", true },
{ "sylvaloir.fr", true },
{ "sylvan.me", true },
+ { "sylvangarden.net", true },
{ "sylve.ch", true },
{ "sym01.com", true },
{ "symb.ch", true },
- { "symbiose-bien-etre.ch", true },
{ "symbiose-com.ch", true },
{ "symbiose-immobilier.ch", true },
{ "symbiose.com", true },
{ "symbiosecom.ch", true },
{ "symdevinc.com", true },
{ "symeda.de", true },
- { "symetria.io", true },
{ "symfora-meander.nl", true },
{ "symlnk.de", true },
{ "symphonos.it", true },
{ "sympmarc.com", true },
+ { "symposium.beer", true },
{ "sympraxisconsulting.com", true },
{ "symptome-erklaert.de", true },
{ "synabi.com", true },
{ "synack.uk", true },
{ "synackr.net", true },
- { "synaptickz.me", true },
+ { "synackrst.net", 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", false },
+ { "syncmindglobal.com", true },
{ "syncrise.co.jp", true },
+ { "synd.io", true },
{ "syneart.com", true },
{ "synecek11.cz", true },
{ "synergyflare.com", true },
{ "synergyworkingdogclub.com", true },
{ "synerionagile.com", true },
- { "synfin.org", true },
{ "synicalsyntax.com", true },
{ "synony.me", true },
{ "synotna.eu", true },
- { "syntaxnightmare.com", true },
{ "syntheticgrassliving.com.au", true },
- { "syntheticurinereview.com", true },
{ "synthetik.com", true },
{ "syplasticsurgery.com", true },
- { "syriatalk.biz", true },
- { "syriatalk.org", true },
{ "sysadm.guru", true },
- { "sysadmin.xyz", true },
+ { "sysadmins.ro", true },
{ "syscoon.com", true },
{ "sysctl.se", true },
{ "sysdb.io", true },
- { "sysdot.blog", true },
{ "syskit.com", true },
{ "syslogic.io", true },
{ "sysmike.de", true },
@@ -38069,15 +41628,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "systemisbusy.info", true },
{ "systemli.org", true },
{ "systemonthego.com", true },
- { "systemreboot.net", true },
{ "systemspace.link", true },
{ "systemups.com", true },
{ "systemweb.no", true },
- { "systemzeit.info", true },
{ "systoolbox.net", true },
{ "sysystems.cz", true },
{ "syt3.net", true },
- { "syunpay.cn", true },
{ "syy.im", true },
{ "syzygy-tables.info", true },
{ "sz-ideenlos.de", true },
@@ -38087,45 +41643,49 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "szamitogepdepo.com", true },
{ "szasz.me", true },
{ "szaydon.me", false },
- { "szc.me", true },
{ "szclsya.me", true },
{ "szechenyi2020.hu", true },
{ "szentistvanpt.sk", true },
- { "szepsegbennedrejlik.hu", true },
{ "szeptylasu.eu", true },
- { "szeretekvajpolni.hu", true },
{ "szunia.com", true },
{ "szybkiebieganie.pl", true },
{ "szyndler.ch", true },
+ { "szzsivf.com", true },
{ "t-hawk.com", true },
{ "t-m.me", true },
{ "t-net.org.hu", true },
+ { "t-pc.org", true },
{ "t-shirts4less.nl", true },
{ "t-stonegroup.com", true },
{ "t.facebook.com", false },
{ "t0ny.name", true },
{ "t12u.com", true },
- { "t23m-navi.jp", false },
{ "t2i.nl", true },
+ { "t3.ie", true },
{ "t3rror.net", true },
{ "t47.io", true },
{ "t4c.link", true },
{ "t4cc0.re", true },
+ { "t5197.co", true },
+ { "t6729.co", true },
+ { "t6957.co", true },
{ "t7e.de", false },
- { "t9i.in", true },
+ { "t9297.co", true },
+ { "t9721.com", true },
+ { "t9728.co", true },
{ "ta-65.com", true },
- { "ta-sports.net", true },
{ "ta65.com", true },
{ "taabe.net", true },
{ "taalcursusvolgen.nl", true },
+ { "taalmeisje.nl", true },
{ "taartbesteld.nl", true },
- { "taartenfeesies.nl", true },
{ "tabarnak.ga", true },
{ "tabernadovinho.com.br", true },
+ { "tabernastudios.pe", true },
{ "tabi-news.com", true },
{ "tabi-runrun.com", true },
- { "tabino.top", true },
{ "tabithawebb.co.uk", true },
+ { "tableandhearth.com", true },
{ "tabledusud.be", true },
{ "tabledusud.nl", true },
{ "tablescraps.com", true },
@@ -38137,10 +41697,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tac-volley.com", true },
{ "tachi.uk", true },
{ "tacklinglife.com", true },
- { "tacklog.com", true },
{ "tacomafia.net", true },
{ "tacticalavocado.com", true },
- { "tacticalsquare.com", true },
{ "taddiestales.com", true },
{ "tadeo.ca", true },
{ "tadiranbatteries.de", true },
@@ -38150,24 +41708,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tadtadya.com", true },
{ "tadu.de", true },
{ "tagabrand.co.uk", true },
+ { "tagderinspiration.ch", true },
{ "tagdocumentary.com", true },
{ "taggedpdf.com", false },
{ "taglioepiega.com", true },
{ "taglioepiega.eu", true },
{ "taglioepiega.it", true },
{ "tagnull.de", true },
- { "tagpay.com", true },
+ { "tagtoys.com", true },
{ "tagungsraum-usedom.de", true },
{ "tagungsraum-zinnowitz.de", true },
{ "tahavu.com", true },
- { "taherian.me", true },
{ "tahmintr.com", true },
- { "tahosa.co", true },
- { "tahosalodge.org", true },
+ { "tahosa.co", false },
+ { "taiklus.lt", true },
{ "tailpuff.net", false },
{ "tails.boum.org", true },
{ "taimane.com", true },
- { "taiphanmem.net", true },
{ "taishokudaiko.com", true },
{ "taishon.nagoya", true },
{ "taitmacleod.com", true },
@@ -38180,21 +41737,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "taiwantour.info", true },
{ "taiyouko-hatuden.net", true },
{ "taizegroep.nl", true },
+ { "tajemno.net", true },
{ "tajper.pl", true },
{ "take1give1.com", false },
{ "takedownthissite.com", true },
{ "takeitoffline.co.uk", true },
{ "takemoto-ped.com", true },
{ "taken.pl", true },
+ { "takenbydrone.com.au", true },
+ { "takeomi.jp", true },
{ "takeshifujimoto.com", false },
+ { "takipone.com", true },
{ "takk.pl", true },
{ "takkaaaaa.com", true },
- { "tako-miyabi.xyz", true },
{ "takuhai12.com", true },
{ "takumi-s.net", true },
{ "takuto.de", true },
{ "takuyaphotos.com", true },
{ "talado.gr", false },
+ { "talendipank.ee", true },
{ "talentcast.nl", true },
{ "talentcast.org", true },
{ "talenthub.co.nz", true },
@@ -38206,7 +41767,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "talk.google.com", true },
{ "talkgadget.google.com", true },
{ "talking12.com", true },
- { "talkingmoose.net", true },
{ "talkreal.net", true },
{ "talktech.com", true },
{ "talktodarcy.com", true },
@@ -38221,36 +41781,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "talon.rip", true },
{ "talroo.com", true },
{ "talun.de", true },
- { "tam-moon.com", true },
+ { "talxis.com", true },
{ "tam-safe.com", true },
{ "tamada.expert", true },
{ "tamaraboutique.com", true },
{ "tamarimolhem.com", true },
{ "tamashimx.net", true },
- { "tamasszabo.net", true },
{ "tambayology.com", true },
+ { "tambo.es", true },
{ "tambre.ee", true },
{ "tamchunho.com", true },
{ "tamersunion.org", true },
{ "tamindir.com", true },
{ "tammy.pro", true },
{ "tampabaybusinesslistings.com", true },
+ { "tampacific.net", true },
+ { "tampacific.vn", true },
{ "tamposign.fr", true },
{ "tamriel-rebuilt.org", true },
+ { "tamsweb.de", true },
+ { "tamtowild.com", true },
+ { "tan90.tw", true },
{ "tanacio.com", true },
{ "tanak3n.xyz", false },
{ "tanchynski.com", true },
{ "tancredi.nl", true },
{ "tandartszilverschoon.nl", true },
- { "tandem-trade.ru", false },
{ "tandemexhibits.com", true },
{ "tandempartnerships.com", true },
+ { "tandk.com.vn", true },
{ "tandzorg.link", true },
{ "tangel.me", true },
{ "tangemann.org", true },
{ "tangledmeditations.com", true },
{ "tango-ouest.com", true },
{ "tangoalpha.co.uk", true },
+ { "tangyue.date", true },
{ "tanhit.com", true },
{ "taniafitness.co.uk", true },
{ "taniafitness.com", true },
@@ -38262,6 +41828,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tannerryan.ca", true },
{ "tannerwilliamson.com", true },
{ "tannerwj.com", true },
+ { "tanovar.com", true },
{ "tansuya.jp", true },
{ "tantalos.nl", true },
{ "tantei100.net", true },
@@ -38276,29 +41843,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "taotuba.org", true },
{ "taowa.ca", true },
{ "taoways.com", true },
- { "taplamvan.net", true },
{ "taplemon.at", true },
{ "taplemon.com", true },
+ { "tappezzeria.roma.it", true },
{ "taprix.org", true },
{ "taquilla.com", true },
{ "tar-mag.com", true },
- { "taranis.re", true },
{ "tarasecurity.co.uk", true },
{ "tarasecurity.com", true },
{ "tarasevich.by", true },
{ "tardis.io", true },
+ { "tarfin.com", true },
{ "targetbuilding.com", true },
{ "targetexecutivesearch.com", true },
{ "targimieszkaniowe.net", true },
{ "tariff.cc", true },
{ "tarik.io", true },
+ { "tarkov-database.com", true },
{ "tarmexico.com", true },
{ "tarsan.cz", true },
{ "tartaneagle.org.uk", true },
{ "tartanhamedshop.com.br", true },
- { "taruntarun.net", true },
+ { "taruntarun.net", false },
{ "tas2580.net", false },
{ "tasadordecoches.com", true },
+ { "tasarimgazetesi.com", true },
{ "tascuro.com", true },
{ "taskin.me", true },
{ "taskotron.fedoraproject.org", true },
@@ -38310,42 +41879,44 @@ 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 },
{ "tat2grl85.com", true },
{ "tatara.ne.jp", true },
- { "tateesq.com", true },
- { "tatildukkani.com", true },
{ "tatler.com", true },
{ "tatsidou.gr", true },
{ "tattoo.dating", true },
{ "tattvaayoga.com", true },
{ "tatuantes.com", true },
- { "taunhanh.us", true },
+ { "tauflight.com", true },
+ { "taunhanh.us", false },
+ { "taunusstein.net", true },
{ "taustyle.ru", true },
{ "tavolaquadrada.com.br", true },
{ "tavsys.net", true },
{ "tax-guard.com", true },
{ "taxaroo.com", true },
+ { "taxationweb.co.uk", true },
{ "taxaudit.com", true },
{ "taxhawk.com", true },
{ "taxi-chamonix.fr", true },
{ "taxi-collectif.ch", true },
+ { "taxi-edessas.gr", true },
{ "taxi-jihlava.cz", true },
+ { "taxi-legroux.com", true },
{ "taxi-puck.pl", true },
{ "taxi-waregem.be", true },
{ "taxicollectif.ch", true },
{ "taxid-k.be", true },
{ "taxis-collectifs.ch", true },
- { "taxisafmatosinhos.pt", true },
{ "taxisantapolagranalacant.com", true },
{ "taxiscollectifs.ch", true },
{ "taxlab.co.nz", true },
{ "taxo.fi", true },
{ "taxpackagesupport.com", true },
{ "taxsquirrel.com", true },
+ { "tayanamina.com", true },
{ "taylorpearson.me", false },
{ "taylors-castles.co.uk", true },
{ "taylorstauss.com", true },
@@ -38357,6 +41928,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tbfocus.com", true },
{ "tbitc.ch", true },
{ "tbonejs.org", true },
+ { "tbpchan.cz", true },
{ "tbrindus.ca", true },
{ "tbs-certificates.co.uk", true },
{ "tbspace.de", true },
@@ -38364,7 +41936,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tbuchloh.de", true },
{ "tc-st-leonard.ch", true },
{ "tc.nz", true },
- { "tcade.co", true },
{ "tcb-a.org", true },
{ "tcb-b.org", true },
{ "tccmb.com", true },
@@ -38375,23 +41946,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tchannels.tv", true },
{ "tchebb.me", true },
{ "tchebotarev.com", true },
- { "tchnics.de", true },
{ "tchoukball.ch", true },
+ { "tchverheul.nl", true },
{ "tcit.fr", true },
+ { "tcj.ir", true },
+ { "tcksolutions.com", true },
{ "tcl.sh", true },
+ { "tclb.ga", true },
{ "tcmwellnessclinic.com", true },
{ "tcnapplications.com", true },
+ { "tcpride.org", true },
{ "tcpweb.net", true },
{ "tcspartner.net", true },
{ "tcvvip.com", true },
{ "tcwis.com", true },
+ { "tda602-secure-login.tk", true },
{ "tdchrom.com", true },
{ "tddos.pw", true },
{ "tdfbfoundation.org", true },
+ { "tdr.today", true },
{ "tdrcartuchos.com.br", true },
{ "tdro.cf", true },
{ "tdrs.info", true },
- { "tdsf.io", true },
{ "tdsinflatables.co.uk", true },
{ "tdude.co", true },
{ "tea.in.th", true },
@@ -38399,7 +41975,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teachercreatedmaterials.com", true },
{ "teacherph.com", true },
{ "teacherpowered.org", true },
- { "teachertool.io", true },
{ "teachingcopyright.com", true },
{ "teachingcopyright.net", true },
{ "teachingcopyright.org", true },
@@ -38408,9 +41983,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teachpeople.org", true },
{ "teachwithouttears.com", true },
{ "teahut.net", true },
+ { "tealdotsinanorangeworld.com", true },
{ "team-azerty.com", true },
{ "team-bbd.com", true },
- { "team.house", true },
+ { "team-io.net", true },
{ "team3482.com", true },
{ "teambeam.at", true },
{ "teambeam.ch", true },
@@ -38419,6 +41995,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teambim.eu", true },
{ "teambition.com", true },
{ "teamcombat.com", true },
+ { "teamdog.pet", true },
+ { "teamliquid.com", true },
{ "teamliquidpro.com", true },
{ "teammateworld.com", true },
{ "teammathics.com", true },
@@ -38427,6 +42005,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teamnorthgermany.de", true },
{ "teampaddymurphy.ch", true },
{ "teampaddymurphy.ie", true },
+ { "teams.microsoft.com", true },
{ "teamsimplythebest.com", true },
{ "teamspeak-serverlist.xyz", true },
{ "teamtouring.net", true },
@@ -38435,35 +42014,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teamup.rocks", true },
{ "teamupturn.com", true },
{ "teamupturn.org", true },
- { "teamusec.de", true },
{ "tearoomlints.be", true },
{ "tease.email", true },
+ { "teasenetwork.com", true },
{ "teaser-trailer.com", true },
{ "teatrarium.com", true },
- { "teb-akademia.pl", true },
{ "tebodental.com", true },
+ { "teboorthodontics.com", true },
{ "tec3000.ch", true },
{ "tecart-cloud.de", true },
{ "tecart-system.de", true },
{ "tecartcrm.de", true },
+ { "tech-banker.com", true },
{ "tech-blogger.net", true },
{ "tech-clips.com", false },
{ "tech-director.ru", true },
{ "tech-essential.com", true },
{ "tech-info.jp", true },
+ { "tech-ninja.de", 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 },
+ { "techassist.io", false },
{ "techaulogy.com", true },
{ "techbelife.com", true },
{ "techbrown.com", true },
+ { "techcentral.my", true },
+ { "techcenturion.com", true },
{ "techcracky.com", true },
+ { "techcu.lt", true },
{ "techcultivation.de", false },
{ "techcultivation.net", false },
{ "techcultivation.org", false },
@@ -38472,32 +42056,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "techendeavors.com", true },
{ "techformator.pl", true },
{ "techforthepeople.org", true },
+ { "techgadgetry.in", true },
{ "techglover.com", true },
{ "techhappy.ca", true },
{ "techinet.pl", true },
{ "techinsurance.com", true },
+ { "techjobplaybook.nyc", true },
{ "techjoe.co", true },
+ { "techlovers.com", true },
{ "techlr.de", true },
{ "techmagus.icu", true },
{ "techmajesty.com", true },
{ "techmasters.io", true },
+ { "techmerch.ru", true },
{ "techmoviles.com", true },
{ "techmunchies.net", false },
{ "techni-grav.com", true },
{ "technic3000.com", true },
{ "technicabv.nl", true },
- { "technicalbrothers.cf", true },
{ "technicallyeasy.net", true },
{ "technicalramblings.com", true },
{ "technicalsystemsprocessing.com", true },
- { "techniclab.net", true },
{ "techniclab.org", true },
{ "techniclab.ru", true },
{ "technik-boeckmann.de", true },
{ "technikblase.fm", true },
{ "technikman.de", true },
- { "technikrom.org", true },
- { "technoinfogroup.it", true },
+ { "technofirstonline.com", true },
+ { "technogps.com", true },
+ { "technokicks.com", true },
{ "technologie-innovation.fr", true },
{ "technologyhound.org", true },
{ "technologysi.com", true },
@@ -38506,6 +42093,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "technoscoots.com", true },
{ "technosorcery.net", true },
{ "technospeakco.com", true },
+ { "techold.ru", true },
{ "techorbiter.com", true },
{ "techosmarcelo.com.ar", true },
{ "techpilipinas.com", true },
@@ -38521,14 +42109,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "techtrader.ai", true },
{ "techtrader.io", true },
{ "techusers.de", true },
+ { "techvalue.gr", true },
+ { "techvhow.com", true },
{ "techview.link", true },
{ "techviewforum.com", true },
{ "techwayz.com", true },
{ "techwords.io", true },
+ { "techy360.com", true },
{ "techzero.cn", true },
{ "teckids.org", true },
+ { "tecknobox.fr", true },
{ "tecma.com", true },
- { "tecmarkdig.com", true },
+ { "tecnaa.com", true },
{ "tecne.ws", true },
{ "tecnicoelettrodomestici.roma.it", true },
{ "tecnidev.com", true },
@@ -38553,14 +42145,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teemo.gg", true },
{ "teemperor.de", true },
{ "teemulintula.fi", true },
- { "teencounseling.com", true },
+ { "teenerotic.net", true },
{ "teengirl.pub", true },
{ "teensexgo.com", true },
+ { "teeqq.com", true },
+ { "teetje-doko.de", true },
+ { "teetoptens.com", true },
{ "teeworlds-friends.de", true },
+ { "teextee.com", true },
{ "tefek.cz", true },
{ "teganlaw.ca", true },
{ "teganlaw.com", true },
{ "tege-elektronik.hu", true },
+ { "tegtech.com.au", true },
+ { "tehniss.rs", true },
{ "tehrabbitt.com", false },
{ "tehranperfume.com", true },
{ "teixobactin.com", true },
@@ -38571,10 +42169,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tekniskakustik.se", true },
{ "tekno.de", true },
{ "teknoforums.com", true },
- { "teknolit.com", true },
{ "teknoroit.com", true },
{ "tekstschrijvers.net", true },
- { "tekuteku.jp", true },
{ "telamon.eu", true },
{ "telamon.fr", true },
{ "telco.at", true },
@@ -38594,16 +42190,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "telegenisys.com", true },
{ "telegra.ph", true },
{ "telegram.org", true },
- { "telegramdr.com", true },
{ "telehealthventures.com", false },
{ "telekothonbd.com", true },
+ { "telemovi.com", true },
{ "teleogistic.net", true },
{ "telepass.me", true },
{ "telephonedirectories.us", true },
+ { "teleskell.org", true },
+ { "telestepina.ru", true },
{ "teletechnology.in", false },
{ "teletexto.com", true },
+ { "televizeseznam.cz", true },
{ "telework.gov", true },
- { "tellcorpassessoria.com.br", true },
+ { "telibee.com", true },
{ "telling.xyz", true },
{ "tellingua.com", false },
{ "tellthemachines.com", true },
@@ -38627,10 +42226,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tempdomain.ml", true },
{ "template-parks.com", true },
{ "templateinvaders.com", true },
- { "templates-office.com", true },
{ "templum.com.br", true },
+ { "temtekco.com", true },
{ "tenable.com.au", true },
{ "tenbos.ch", true },
+ { "tencent.xn--vuq861b", true },
{ "tendance-et-accessoires.com", true },
{ "tende.roma.it", true },
{ "tendermaster.com.ua", true },
@@ -38640,8 +42240,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tendoryu-aikido.org", false },
{ "tenenz.com", true },
{ "tenisservis.eu", true },
- { "tenkdigitalt.no", true },
{ "tenkofx.com", true },
+ { "tenniscourtsjoburg.com", true },
{ "tennismindgame.com", true },
{ "tenno.tools", true },
{ "tenpo-iku.com", true },
@@ -38650,29 +42250,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tenshoku-hanashi.com", true },
{ "tenta.com", true },
{ "tentations-voyages.com", false },
+ { "tentech.io", true },
{ "tenthousandcoffees.com", true },
- { "tenthpin.com", false },
{ "tenyx.de", true },
{ "tenzer.dk", true },
{ "teoleonie.com", true },
{ "tepautotuning.com", true },
+ { "tepid.org", true },
{ "tepitus.de", true },
{ "teplofom.ru", true },
- { "teplomash24.ru", true },
{ "tequilazor.com", true },
{ "terabyte.services", true },
{ "terabyteit.co.uk", true },
{ "teracloud.at", true },
+ { "teramind.co", true },
{ "teranacreative.com", true },
- { "teriiphotography.com", true },
+ { "teranga.ch", true },
+ { "teraservice.eu", true },
{ "teriyakisecret.com", true },
{ "terlindung.com", true },
+ { "terme.viterbo.it", true },
+ { "termee.com", true },
{ "terminalvelocity.co.nz", true },
{ "termino.eu", true },
{ "terminsrakning.se", true },
{ "termitemounds.org", true },
{ "termitinitus.org", true },
{ "termografiranje.si", true },
+ { "termoidraulica.roma.it", true },
{ "termux.com", true },
{ "terra.fitness", true },
{ "terrab.de", false },
@@ -38684,14 +42289,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "terralimno.com", true },
{ "terralimno.eu", true },
{ "terraluna.space", true },
- { "terranova-nutrition.dk", true },
{ "terranova.fi", true },
{ "terrapay.com", true },
{ "terrastaffinggroup.com", false },
{ "terraweb.net", true },
{ "terresmagiques.com", true },
{ "terrorbilly.com", true },
+ { "terrorismattacks.com", true },
{ "terrty.net", true },
+ { "terrybutler.co.uk", true },
{ "terryjohnsononline.com", true },
{ "tes.com", true },
{ "tesche.biz", true },
@@ -38704,6 +42310,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tesoro.pr", true },
{ "tessai.ga", true },
{ "tesseractinitiative.org", true },
+ { "tessierashpool.de", true },
{ "test-greavesindia.pantheonsite.io", true },
{ "test-sev-web.pantheonsite.io", true },
{ "test-textbooks.com", true },
@@ -38711,13 +42318,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "test.support", true },
{ "testeri.fi", true },
{ "testeveonline.com", true },
+ { "testfra.me", true },
{ "testgeomed.ro", true },
{ "testingbot.com", true },
{ "testomato.com", true },
{ "testoon.com", true },
+ { "testpornsite.com", true },
{ "testsuite.org", true },
{ "testsvigilantesdeseguridad.es", true },
{ "testuje.net", true },
+ { "testvocacional.online", true },
{ "tetedelacourse.ch", true },
{ "teto.nu", true },
{ "tetraetc.com", true },
@@ -38730,26 +42340,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teufelswerk.net", true },
{ "teulon.eu", true },
{ "teusink.eu", true },
- { "teva-li.com", true },
{ "tewarilab.co.uk", true },
{ "tewkesburybouncycastles.co.uk", true },
+ { "texasabrasiveblasting.com", true },
{ "texashomesandland.com", true },
{ "texasllcpros.com", true },
{ "texaspaintingandgutters.com", true },
{ "texasparkinglotstriping.com", true },
{ "texastwostepdivorce.com", true },
+ { "texasurodoc.com", true },
{ "texasvolunteerattorneys.org", true },
{ "texby.com", true },
{ "texhnolyze.net", true },
{ "text-shirt.com", true },
+ { "textbrawlers.com", true },
{ "textburst.com", true },
{ "texter-linz.at", true },
{ "texter.at", true },
{ "texterseo.at", true },
{ "texterseo.de", true },
{ "textinmate.com", true },
- { "textpedia.org", true },
- { "textualapp.com", false },
+ { "textpattern.com", true },
+ { "textualapp.com", true },
{ "textundblog.de", true },
{ "texture.net.au", true },
{ "texus.me", true },
@@ -38771,6 +42383,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tfxstartup.com.br", true },
{ "tgamobility.co.uk", true },
{ "tgb.org.uk", true },
+ { "tgbabyzoo.com", true },
{ "tgbyte.de", true },
{ "tgexport.eu", true },
{ "tgtv.tn", true },
@@ -38784,38 +42397,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thaedal.net", true },
{ "thai.dating", true },
{ "thai.land", true },
+ { "thaicurry.net", true },
{ "thaicyberpoint.com", true },
{ "thaiforest.ch", true },
{ "thaihomecooking.com", true },
{ "thailandpharmacy.net", true },
{ "thailandpropertylisting.com", true },
- { "thairehabassociation.com", true },
{ "thajskyraj.com", true },
- { "thala.fr", true },
{ "thalan.fr", true },
- { "thalgott.net", true },
+ { "thalgott.net", false },
{ "thalhammer.it", true },
{ "thalia.nu", true },
{ "thaliagetaway.com.au", true },
{ "thambaru.com", true },
{ "thamesfamilydentistry.com", true },
- { "thamtubinhminh.com", true },
- { "thanabh.at", true },
+ { "thamtubinhminh.com", false },
{ "thanatoid.net", true },
{ "thanhthinhbui.com", true },
+ { "tharuka-app.de", true },
+ { "tharuka.com", true },
+ { "tharuka.de", true },
{ "thatdarkplace.com", true },
+ { "thatguyalex.com", true },
{ "thatquiz.org", true },
{ "thatsme.io", true },
+ { "thavmacode.gr", true },
+ { "thc-stadvdzon.nl", true },
{ "thca.ca", true },
{ "thcdev.de", true },
+ { "thconsulting.co.uk", true },
{ "thcpbees.co.uk", true },
{ "the-arabs.com", true },
+ { "the-archimedeans.org.uk", true },
{ "the-bermanns.com", true },
{ "the-big-bang-theory.com", true },
{ "the-body-shop.hu", false },
{ "the-digitale.com", false },
{ "the-fermenter.com", true },
- { "the-gdn.net", true },
{ "the-hemingway-code.de", true },
{ "the-jeuxflash.com", true },
{ "the-mystery.org", true },
@@ -38830,26 +42448,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "the3musketeers.biz", true },
{ "the8rules.co.uk", true },
{ "thea-team.net", true },
+ { "theaccountingcompanyleeds.co.uk", true },
{ "theactuary.ninja", true },
{ "theadelaideshow.com.au", true },
{ "theadultswiki.com", true },
- { "theafleo.gq", true },
+ { "theafleo.ga", true },
{ "theagencywithoutaname.com", true },
+ { "thealchemistatelier.com", true },
{ "thealexandertechnique.co.uk", true },
{ "theallmanteam.com", true },
{ "thealonas.ml", true },
+ { "theantarticx.com", true },
{ "theanticellulitediet.com", true },
{ "theappliancedepot.co.uk", true },
{ "theaps.net", true },
{ "theasianshooter.com", true },
- { "theasianshooters.com", true },
{ "theastrocoach.com", true },
{ "theatre-schools.com", true },
+ { "theaviationagency.com", true },
{ "theazoorsociety.org", true },
+ { "thebabypassport.com", true },
{ "thebakers.com.br", true },
{ "thebakery2go.de", true },
{ "thebannerstore.com", true },
- { "thebarbdemariateam.com", true },
{ "thebarrens.nu", true },
{ "thebasebk.org", true },
{ "thebcm.co.uk", true },
@@ -38857,11 +42478,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thebeardedrapscallion.com", true },
{ "thebeginningviolinist.com", true },
{ "thebestfun.co.uk", true },
- { "thebestofthesprings.com", true },
{ "thebestpersonin.ml", true },
- { "thebestsavingsplan.com", true },
{ "thebigbitch.nl", true },
{ "thebigdatacompany.com", true },
+ { "thebiggive.org.uk", true },
+ { "thebiglaskowski.com", true },
+ { "thebigslow.com", true },
{ "thebigwave.de", true },
{ "thebikeinsurer.co.uk", true },
{ "thebimhub.com", true },
@@ -38870,9 +42492,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thebirthdaysite.co.uk", true },
{ "thebit.link", true },
{ "theblackknightsings.com", true },
+ { "theblacklock.com", true },
{ "theblondeabroad.com", true },
{ "theblueroofcottage.ca", true },
- { "thebluub.com", true },
{ "theboatmancapital.com", true },
{ "theboats.agency", true },
{ "theboats.club", true },
@@ -38883,6 +42505,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theboats.site", true },
{ "thebodyprinciple.com", true },
{ "thebonerking.com", true },
+ { "theboss.ch", true },
{ "thebouncedepartment.co.uk", true },
{ "thebouncyman.co.uk", true },
{ "theboxofcarlos.com", true },
@@ -38893,44 +42516,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thebusinessofgoodfilm.com", true },
{ "thecamels.org", true },
{ "thecameradivision.com", true },
+ { "thecandidforum.com", true },
{ "thecandyjam.com", true },
{ "thecarolingconnection.com", true },
+ { "thecavalries.com", true },
{ "thecellulitediet.com", true },
+ { "thechargertimes.com", true },
{ "thechavs.xyz", true },
{ "thecherryship.ch", true },
{ "thechunk.net", true },
+ { "theciso.com", true },
{ "thecitywarehouse.clothing", true },
+ { "theclinician.com", true },
{ "thecloudshelter.com", true },
{ "thecoffeecamp.com", true },
- { "thecolumnist.net", true },
{ "thecompany.pl", true },
- { "theconcordbridge.azurewebsites.net", true },
{ "thecondobuyers.com", true },
- { "thecookiejar.me", true },
+ { "thecr3ative.com", true },
+ { "thecr3ative.tk", true },
{ "thecrazytravel.com", true },
{ "thecrescentchildcarecenter.com", true },
{ "thecrew-exchange.com", true },
{ "thecskr.in", true },
- { "thecstick.com", true },
- { "thecuppacakery.co.uk", true },
{ "thecuriousdev.com", true },
{ "thecurvyfashionista.com", true },
{ "thecustomdroid.com", true },
+ { "thecyberaid.com", true },
{ "theda.co.za", true },
+ { "thedailyshirts.com", true },
{ "thedark1337.com", true },
{ "thederminstitute.com", true },
{ "thedermreport.com", true },
{ "thedhs.com", true },
{ "thediamondcenter.com", true },
+ { "thediaryofadam.com", true },
{ "thedisc.nl", true },
{ "thediscovine.com", true },
{ "thedocumentrefinery.com", true },
{ "thedom.site", true },
- { "thedreamtravelgroup.co.uk", true },
{ "thedronechart.com", true },
{ "thedroneely.com", true },
- { "thedutchmarketers.com", true },
- { "theebookkeepers.co.za", true },
+ { "thedword.xyz", true },
{ "theeducationchannel.info", true },
{ "theeducationdirectory.org", true },
{ "theeffingyogablog.com", true },
@@ -38941,26 +42567,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theender.net", true },
{ "theepiclounge.com", true },
{ "theeverycompany.com", true },
+ { "theeyeopener.com", true },
{ "thefairieswantmedead.com", true },
+ { "thefamilygarrison.com", true },
{ "thefanimatrix.net", true },
- { "thefashionpolos.com", true },
{ "thefasterweb.com", true },
- { "thefbstalker.com", true },
{ "thefengshuioffice.com", true },
{ "theferrarista.com", true },
{ "thefilmphotography.com", true },
+ { "thefizz.uk", true },
{ "theflowerbasketonline.com", true },
{ "theflowershopdeddington.com", true },
- { "theflyingbear.net", true },
+ { "theflyingbear.net", false },
{ "thefnafarchive.org", true },
+ { "thefootinstitutela.com", true },
{ "theforkedspoon.com", true },
{ "thefreemail.com", true },
{ "thefriedzombie.com", true },
+ { "thefriedzombie.nl", true },
+ { "thefriedzombie.online", true },
{ "thefrk.pw", true },
{ "thefuckingtide.com", true },
{ "thefunfirm.co.uk", true },
{ "thefurnitureco.uk", true },
{ "thefurniturefamily.com", true },
+ { "thefusion.net.in", true },
+ { "thegarage961.co.nz", true },
{ "thegarrowcompany.com", true },
{ "thegatheringocala.com", true },
{ "thegeekdiary.com", true },
@@ -38972,9 +42604,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thegreatcommissionpodcast.com", true },
{ "thegreatpakistan.com", true },
{ "thegreatplains.com", true },
- { "thegreenfields.se", true },
- { "thegreenmanpottery.com", true },
{ "thegreenpark.co.uk", true },
+ { "thegroovecartel.com", true },
{ "thegrs.com", true },
{ "theguitarcompany.nl", true },
{ "thegvoffice.net", true },
@@ -38982,15 +42613,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thehairrepublic.net", true },
{ "thehairstandard.com", true },
{ "thehamiltoncoblog.com", true },
+ { "thehardylawfirm.com", true },
{ "thehaxbys.co.uk", true },
- { "thehivedesign.org", true },
{ "thehobincompany.com", true },
{ "thehomeicreate.com", true },
{ "thehonorguard.org", true },
{ "thehookup.be", true },
{ "thehotfix.net", true },
- { "thehotness.tech", true },
- { "thehouseofgod.org.nz", true },
{ "thehub.ai", true },
{ "theideaskitchen.com.au", true },
{ "theidiotboard.com", true },
@@ -39002,20 +42631,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theinflatables-ni.co.uk", true },
{ "theinflatablesne.co.uk", true },
{ "theinitium.com", true },
+ { "theinnerprism.com", true },
{ "theintercept.com", true },
{ "theinternationalgeekconspiracy.eu", true },
+ { "theissen.io", true },
{ "theissue.com.au", true },
{ "theitsage.com", false },
{ "thejacksoninstitute.com.au", true },
+ { "thejimmyw.uk", true },
+ { "thejoneshub.com", true },
{ "thekev.in", true },
{ "thekeytobusiness.co.uk", true },
{ "thekindplate.ca", true },
{ "thekingofhate.com", false },
+ { "thekodester.ca", true },
{ "thekovnerfoundation.org", true },
{ "thelaimlife.com", true },
{ "thelanscape.com", true },
{ "thelastbeach.top", true },
{ "thelatedcult.com", true },
+ { "thelbc.io", true },
{ "thelearningenterprise.co.uk", true },
{ "thelegionshirley.co.uk", true },
{ "thelifeofmala.com", true },
@@ -39026,17 +42661,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thelonelyones.co.uk", true },
{ "thelonious.nl", true },
{ "thelounge.chat", true },
- { "themacoaching.nl", true },
{ "themallards.info", true },
{ "themarshallproject.org", true },
+ { "themaster.site", true },
+ { "themasterplan.com.au", true },
+ { "themathscentre.com", true },
{ "themecraft.studio", true },
{ "themefoxx.com", true },
- { "themerchandiser.net", true },
+ { "themenmedia.com", true },
{ "themeridianway.com", true },
{ "themetacity.com", true },
{ "themiddle.co", true },
{ "themigraineinstitute.com", true },
- { "themilanlife.com", true },
{ "themillerslive.com", true },
{ "themimitoof.fr", true },
{ "themist.cz", true },
@@ -39052,20 +42688,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thenetw.org", true },
{ "thenexwork.com", true },
{ "thenib.com", true },
+ { "thenine.info", true },
{ "theninenine.com", true },
{ "thenocman.com", true },
{ "thenovaclinic.com", true },
{ "thenowheremen.com", true },
- { "theo.me", true },
{ "theobg.co", true },
+ { "theobora.fr", true },
{ "theobromos.fr", true },
{ "theoc.co", true },
{ "theocharis.org", true },
{ "theodorahome.co", true },
{ "theodorahome.com.br", true },
{ "theofleck.com", true },
- { "theokouzelis.com", true },
+ { "theologyz.com", true },
{ "theonethaimassage.de", true },
+ { "theoptechnation.com", true },
{ "theoriginalbit.com", true },
{ "theory-test-online.co.uk", true },
{ "theory.org", true },
@@ -39079,20 +42717,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thepaulagcompany.com", true },
{ "thepaymentscompany.com", true },
{ "thepb.in", true },
- { "thepeninsulaires.com", true },
+ { "thepeoplesdata.com", true },
+ { "thepeoplesdata.org", true },
{ "thepharm.co.nz", true },
{ "thephonecaseplace.com", true },
{ "thephp.cc", true },
+ { "thepickledhedgehog.com", true },
{ "thepieslicer.com", true },
{ "thepiratesociety.org", true },
{ "theplasticsurgerycenterofnashville.com", true },
{ "theplayspot.co.uk", true },
- { "theploughharborne.co.uk", true },
{ "thepoplarswines.com.au", true },
{ "thepriorybandbsyresham.co.uk", true },
{ "theproductpoet.com", true },
{ "thepromisemusic.com", true },
- { "theragran.co.id", true },
{ "theralino.de", true },
{ "theramo.re", true },
{ "therandombits.com", false },
@@ -39111,11 +42749,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thermalbad-therme.de", true },
{ "thermia.co.nz", true },
{ "thermia.com.au", true },
+ { "thermique.ch", 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 },
@@ -39134,16 +42772,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theseedbox.xyz", true },
{ "theseletarmall.com", true },
{ "theseoframework.com", true },
- { "theseoplatform.co.uk", true },
{ "theseosystem.com", true },
{ "theserviceyouneed.com", true },
{ "thesession.org", false },
{ "thesetwohands864.com", true },
+ { "theshaker.com.au", true },
{ "thesharedbrain.ch", true },
{ "thesharedbrain.com", true },
- { "theshield.in", true },
{ "theshine.pl", true },
{ "theshopally.com", false },
+ { "theshots.cz", true },
{ "thesignacademy.co.uk", true },
{ "thesignalco.com.au", true },
{ "thesimplifiers.com", true },
@@ -39153,11 +42791,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thesmallbusinesswebsiteguy.com", true },
{ "thesmokingcuban.com", true },
{ "thesnellvilledentist.com", true },
- { "thesocialmediacentral.com", true },
+ { "thesoundstageatstrangeland.com", true },
{ "thesplashlab.com", true },
{ "thesslstore.com", true },
{ "thestandingroomrestaurant.com", true },
+ { "thestatementjewelry.com", true },
{ "thestationatwillowgrove.com", true },
+ { "thesteamrooms.com", true },
{ "thesteins.org", false },
{ "thestoneage.de", true },
{ "thestory.ie", true },
@@ -39165,36 +42805,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thestrategyagency.com.au", true },
{ "thestreamable.com", true },
{ "thestudyla.com", true },
- { "thestyle.city", true },
{ "thestyleforme.com", true },
{ "thesuppercircle.com", true },
{ "theswissbay.ch", true },
- { "theteacherscorner.net", true },
+ { "theta.eu.org", true },
+ { "thetassos.com", true },
{ "thetechbasket.com", true },
- { "thetechnical.me", true },
- { "thetenscrolls.com", true },
+ { "thethreadofhope.org", true },
{ "thethreepercent.marketing", true },
{ "thetiedyelab.com", true },
{ "thetinylife.com", true },
+ { "thetipo01.tk", true },
{ "thetomharling.com", true },
- { "thetorlock.com", true },
- { "thetorrentfunk.com", true },
{ "thetotalemaildelivery.com", true },
{ "thetravelczar.com", true },
{ "thetree.ro", true },
{ "thetrendspotter.net", true },
{ "thetuxkeeper.de", false },
{ "thetvtraveler.com", true },
+ { "theundefeated.com", true },
{ "thevacweb.com", true },
{ "thevalentineconstitution.com", true },
{ "thevalueofarchitecture.com", true },
{ "thevenueofhollywood.com", true },
{ "theverybusyoffice.co.uk", true },
- { "thevgg.com", false },
{ "thevisasofoz.com", true },
{ "thevoya.ga", true },
{ "thewagesroom.co.uk", true },
- { "thewarrencenter.org", true },
{ "thewaxhouse.academy", true },
{ "thewaxhouse.de", true },
{ "thewayofthedojo.com", true },
@@ -39204,8 +42841,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thewhitehat.club", true },
{ "thewhitneypaige.com", true },
{ "thewinstonatlyndhurst.com", true },
+ { "thewizardsmanse.com", true },
{ "thewoodkid.com.au", true },
- { "theworld.tk", true },
+ { "thewoosh.me", true },
+ { "theworkingeye.nl", true },
{ "theworldbattle.com", true },
{ "theworldexchange.com", true },
{ "theworldexchange.net", true },
@@ -39214,29 +42853,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thexfactorgames.com", true },
{ "thexme.de", true },
{ "theyakshack.co.uk", true },
- { "theyarnhookup.com", false },
{ "theyear199x.org", true },
{ "theyearinpictures.co.uk", true },
{ "theyosh.nl", true },
- { "theyourbittorrent.com", true },
{ "thezero.org", true },
{ "thezillersathenshotel.com", true },
{ "thiagohersan.com", true },
+ { "thienteakee.com", true },
{ "thiepcuoidep.com", true },
{ "thiepxinh.net", true },
{ "thierry-daellenbach.com", true },
{ "thierrybasset.ch", true },
{ "thietbithoathiem.net", true },
{ "thijmenmathijs.nl", true },
+ { "thijs.amsterdam", true },
{ "thijsalders.nl", false },
{ "thijsbekke.nl", true },
+ { "thijsenarjan.nl", true },
{ "thijsslop.nl", true },
{ "thijsvanderveen.net", true },
{ "thinegen.de", true },
{ "thing.vn", true },
+ { "thing4everyone.com", true },
{ "thingies.site", true },
- { "thingsimplied.com", true },
+ { "thingsimplied.com", false },
{ "thingsof.org", true },
+ { "thingswithstuff.llc", true },
{ "think-asia.org", true },
{ "think-pink.info", true },
{ "think-positive-watches.de", true },
@@ -39244,10 +42886,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thinkindifferent.net", true },
{ "thinkingandcomputing.com", true },
{ "thinkingliberty.com", true },
- { "thinkingplanet.net", true },
{ "thinkmarketing.ca", true },
{ "thinkquality.nl", true },
{ "thinkrealty.com", true },
+ { "thinktac.com", true },
{ "thinktux.net", true },
{ "thirdbearsolutions.com", true },
{ "thirdgenphoto.co.uk", true },
@@ -39261,20 +42903,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thisisgrey.com", true },
{ "thisishugo.com", true },
{ "thisistechtoday.com", true },
- { "thisisthefinalact.com", true },
{ "thisistheserver.com", true },
{ "thisiswhywemom.com", true },
{ "thismatter.com", true },
- { "thisserver.dontexist.net", true },
+ { "thisoldearth.com", true },
+ { "thisphone.us", true },
{ "thistleandleaves.com", true },
{ "thitruongsi.com", true },
- { "thm.vn", true },
+ { "thmpartners.com", true },
{ "thole.org", true },
{ "thom4s.info", true },
{ "thomalaudan.de", true },
{ "thomas-fahle.de", true },
{ "thomas-klubert.de", true },
- { "thomas-prior.com", true },
{ "thomas-sammut.com", true },
{ "thomas-schmittner.de", true },
{ "thomas-suchon.fr", true },
@@ -39282,6 +42923,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thomas.love", false },
{ "thomasbeckers.be", true },
{ "thomasbreads.com", false },
+ { "thomascauquil.fr", true },
{ "thomasduerlund.com", true },
{ "thomasduerlund.dk", true },
{ "thomasetsophie.fr", true },
@@ -39300,22 +42942,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thomien.de", true },
{ "thompsonfamily.cloud", true },
{ "thomsonscleaning.co.uk", true },
+ { "thomspooren.nl", true },
{ "thomwiggers.nl", true },
{ "thor.edu", true },
{ "thor.re", true },
{ "thoroughbreddiesel.com", true },
- { "thorshammare.com", true },
- { "thorshammare.org", true },
- { "thorshammare.se", true },
{ "thorsten-schaefer.com", false },
{ "thorstenschaefer.name", true },
- { "thosci.com", true },
{ "thotpublicidad.com", true },
{ "thoughtsynth.com", true },
{ "thoughtsynth.net", true },
{ "thoughtsynth.org", true },
{ "thouni.de", true },
- { "thousandgreens.com", true },
{ "thousandoakselectrical.com", true },
{ "thousandoaksexteriorlighting.com", true },
{ "thousandoakslandscapelighting.com", true },
@@ -39329,7 +42967,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "threatworking.com", true },
{ "threecrownsllp.com", true },
{ "threedpro.me", true },
- { "threefantasy.com", true },
{ "threefours.net", false },
{ "threelions.ch", true },
{ "threema.ch", true },
@@ -39338,7 +42975,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "threv.net", true },
{ "thriftdiving.com", true },
{ "thrillernyc.com", true },
- { "thrivesummit.com", true },
{ "thriveta.com", true },
{ "thriveweb.com.au", true },
{ "throttlerz.in", true },
@@ -39346,7 +42982,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "throwaway.link", true },
{ "throwpass.com", true },
{ "thrush.com", true },
- { "thrx.net", true },
+ { "thsc.org", true },
+ { "thsc.us", true },
+ { "thscpac.org", true },
{ "thues.eu", true },
{ "thuisverpleging-meerdael.be", true },
{ "thullbery.com", true },
@@ -39365,18 +43003,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thycotic.ru", true },
{ "thymiaturtle.de", true },
{ "thyngster.com", true },
- { "thynx.io", true },
{ "ti-pla.net", true },
{ "ti-planet.org", true },
+ { "ti780.com", true },
{ "tiagonunes.pt", true },
{ "tiaki.org", true },
{ "tianeptine.com", true },
- { "tiantangbt.com", true },
+ { "tianshili.me", true },
+ { "tib1.com", true },
{ "tibicinagarricola.com", true },
{ "tibipg.com", true },
{ "tibovanheule.space", true },
- { "tichieru.pw", true },
+ { "ticfleet.com", true },
+ { "ticinoscout.ch", true },
{ "ticketassist.nl", true },
+ { "ticketcity.com", true },
{ "ticketdriver.com", true },
{ "ticketmaze.com", true },
{ "ticketpro.ca", false },
@@ -39389,47 +43030,44 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ticketsource.us", true },
{ "ticketsourcebeta.co.uk", true },
{ "ticketsvergleichen.de", true },
- { "tickit.ca", true },
+ { "tickit.ca", false },
{ "tid.jp", true },
{ "tidy.chat", true },
{ "tidycustoms.net", true },
{ "tiekoetter.com", true },
- { "tielectric.ch", false },
+ { "tielecingenieria.com.co", true },
+ { "tiendadecosplay.es", true },
+ { "tiendafetichista.com", true },
{ "tiens-ib.cz", true },
- { "tier-1-entrepreneur.com", true },
{ "tierarztpraxis-bogenhausen.de", true },
{ "tierarztpraxis-illerwinkel.de", true },
{ "tierarztpraxis-weinert.de", true },
+ { "tiergear.com.au", true },
{ "tieronegraphics.com", true },
{ "tierraprohibida.net", true },
{ "ties.com", true },
{ "tiew.pl", true },
{ "tifan.net", true },
- { "tiffanytravels.com", true },
+ { "tifaware.com", true },
{ "tiffnix.com", true },
+ { "tiger21.com", true },
{ "tigerchef.com", true },
{ "tigerdile.com", true },
{ "tigernode.com", true },
{ "tigernode.net", true },
{ "tigerscu.org", true },
{ "tiggeriffic.com", true },
+ { "tightassporntube.com", true },
{ "tiglitub.com", true },
{ "tiihosen.fi", true },
{ "tiim.technology", true },
{ "tijden.nu", true },
- { "tijo.ch", true },
{ "tik.edu.ee", true },
{ "tik.help", true },
- { "tiki-god.co.uk", true },
{ "tilde.institute", true },
{ "tildes.net", true },
{ "tildesnyder.com", true },
{ "tilesbay.com", true },
- { "tiliaze.be", true },
- { "tiliaze.biz", true },
- { "tiliaze.eu", true },
- { "tiliaze.info", true },
- { "tiliaze.net", true },
{ "tilikum.io", true },
{ "till.im", true },
{ "tillberg.us", true },
@@ -39439,6 +43077,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tilosp.de", true },
{ "tilta.com", true },
{ "tiltedwindmillcrafts.com", true },
+ { "tim-demisch.de", true },
{ "timbarlotta.com", true },
{ "timberkel.com", true },
{ "timbers.space", true },
@@ -39453,30 +43092,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "time2060.ru", true },
{ "time22.com", true },
{ "time2choose.com", true },
- { "timeauction.hk", true },
+ { "timeatlas.com", true },
{ "timebox.tk", true },
{ "timebutler.de", true },
{ "timecd.cn", true },
+ { "timeclub24.ru", true },
{ "timeglass.de", true },
{ "timeless-photostudio.com", true },
{ "timelessskincare.co.uk", true },
+ { "timelimit.io", true },
{ "timelockstash.com", true },
+ { "timetastic.co.uk", true },
{ "timetech.io", true },
{ "timetotrade.com", true },
{ "timewasters.nl", true },
{ "timewk.cn", true },
+ { "timeworld.su", true },
{ "timfiedler.net", true },
{ "timi-matik.hu", true },
{ "timing.com.br", true },
{ "timjk.de", false },
{ "timmersgems.com", true },
+ { "timmy.im", true },
{ "timmyrs.de", true },
{ "timnash.co.uk", true },
{ "timonengelke.de", true },
{ "timoso.de", true },
- { "timothybjacobs.com", true },
{ "timowi.de", true },
{ "timoxbrow.com", true },
+ { "timroes.de", true },
{ "timsayedmd.com", true },
{ "timtaubert.de", true },
{ "timtelfer.com", true },
@@ -39487,11 +43131,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "timysewyn.be", true },
{ "tina-zander.de", true },
{ "tina.media", true },
+ { "tinapoethe.com", true },
{ "tinastahlschmidt.de", true },
{ "tindallriley.co.uk", true },
- { "tinf15b4.de", true },
{ "tinfoilsecurity.com", false },
{ "tinfoleak.com", true },
+ { "tinhbotnghegold.com", true },
{ "tinhchattrangda.vn", true },
{ "tinkerbeast.com", true },
{ "tinkertry.com", true },
@@ -39509,17 +43154,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tinyssh.com", true },
{ "tinyssh.org", true },
{ "tinytownsoftplay.co.uk", true },
- { "tinyvpn.net", true },
{ "tinyvpn.org", true },
{ "tio.run", true },
- { "tioat.net", true },
{ "tipaki.gr", true },
- { "tipbox.is", true },
{ "tipe.io", true },
{ "tiplanet.org", true },
+ { "tipo01.tk", true },
{ "tipoftheday.tips", true },
{ "tippytoad.com", true },
{ "tipsacademicos.com", true },
+ { "tipsport.cz", true },
{ "tipstersweb.com", true },
{ "tipulnagish.co.il", true },
{ "tir-mauperthuis.fr", true },
@@ -39532,7 +43176,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tirs4ne.ch", true },
{ "tis.ph", true },
{ "tischlerei-klettke.de", true },
+ { "tism.in", true },
{ "tissot-mayenfisch.com", true },
+ { "tissus-paris.com", true },
{ "tisvapo.it", true },
{ "tit-cdn.de", true },
{ "tit-dev.de", true },
@@ -39542,12 +43188,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "titanandco.com", true },
{ "titandirect.co.uk", true },
{ "titanous.com", true },
+ { "titanplumbingservices.com.au", true },
{ "titansized.com", true },
{ "titanwaterproofing.com.au", true },
{ "titelseite.ch", true },
{ "titiansgirlphotography.com", true },
- { "titli.fr", true },
{ "titouan.co", false },
+ { "titser.ph", true },
{ "tittelbach.at", true },
{ "titusetcompagnies.net", true },
{ "tiwag.at", true },
@@ -39556,24 +43203,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tjampoer.com", true },
{ "tjcuk.co.uk", true },
{ "tjenestetorvet.dk", true },
- { "tjkcastles.uk", true },
{ "tjl.rocks", true },
{ "tjp.ch", true },
- { "tjsbouncycastles.co.uk", true },
+ { "tk-its.net", true },
{ "tkacz.pro", true },
{ "tkanemoto.com", true },
{ "tkat.ch", true },
+ { "tkcafe.net", true },
{ "tkgpm.com", true },
{ "tkirch.de", true },
{ "tkjg.fi", true },
- { "tkn.me", true },
- { "tkn.tokyo", true },
{ "tkusano.jp", true },
{ "tkw01536.de", false },
{ "tl.gg", true },
- { "tlach.cz", true },
{ "tlca.org", true },
- { "tlcnet.info", true },
+ { "tldtattoo.com", true },
{ "tlehseasyads.com", true },
{ "tleng.de", true },
{ "tlo.xyz", true },
@@ -39587,6 +43231,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tlys.de", true },
{ "tm-t.ca", true },
{ "tm80plus.com", true },
+ { "tmachinery.cz", true },
+ { "tmadev.com.au", true },
{ "tmakiguchi.org", true },
{ "tmas.dk", true },
{ "tmberg.cf", true },
@@ -39595,12 +43241,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tmberg.ml", true },
{ "tmberg.tk", true },
{ "tmc.com.mt", true },
- { "tmcpromotions.co.uk", true },
{ "tmcreationweb.com", true },
- { "tmd.cool", true },
{ "tmdb.biz", true },
- { "tmdc.ddns.net", true },
{ "tmf.ru", true },
+ { "tmheatingcooling.com", true },
{ "tmi-products.eu", true },
{ "tmi-produkter.se", true },
{ "tmm.cx", true },
@@ -39615,15 +43259,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tnes.dk", true },
{ "tniad.mil.id", false },
{ "tnl.cloud", true },
+ { "tnonline.net", true },
{ "tntmobi.com", true },
- { "tny.link", true },
+ { "tntware.com", true },
{ "to-riktari.gr", true },
{ "toad.ga", true },
{ "toast.al", false },
{ "tob-rulez.de", true },
{ "tobaccolocker.com", true },
+ { "tobbro-trans.de", true },
{ "tobedo.net", true },
{ "tober-cpag.de", true },
+ { "tobevictorious.com", true },
{ "tobi-mayer.de", true },
{ "tobi-server.goip.de", true },
{ "tobiaalberti.com", true },
@@ -39642,10 +43289,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tobiashorvath.de", true },
{ "tobiaskorf.de", true },
{ "tobiaspahlings.de", true },
- { "tobiassachs.de", true },
{ "tobiassattler.com", true },
{ "tobiaswiese.com", true },
{ "tobiaswiese.eu", true },
+ { "tobiaswiese.net", true },
{ "tobiaswiese.org", true },
{ "tobiaswiese.work", true },
{ "tobiemilford.com", true },
@@ -39666,21 +43313,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "todaciencia.com", true },
{ "todamateria.com.br", true },
{ "todapolitica.com", true },
+ { "todasaslojas.com.br", true },
{ "todaymeow.com", true },
+ { "todaysbestinsurance.com", true },
{ "toddfry.com", true },
{ "toddmath.com", true },
{ "todo-anime.com", true },
{ "todoereaders.com", true },
{ "todoescine.com", true },
{ "todoist.com", true },
+ { "todoist.net", true },
{ "todon.fr", true },
{ "todoscheduler.de", true },
{ "todoscheduler.org", true },
+ { "todoscomciro.com", true },
{ "toeglhofer.at", true },
{ "toeightycountries.com", true },
{ "toekomstperspectief.be", true },
- { "toerclub-ing-arnhem.nl", true },
{ "toerschaatsenknsb.nl", true },
+ { "toest.bg", true },
{ "toetsplatform.be", true },
{ "tofe.io", true },
{ "tofliving.nl", true },
@@ -39690,14 +43341,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "toheb.de", false },
{ "tohochofu-sportspark.com", true },
{ "tohokinemakan.tk", true },
- { "toihoctiengtrung.com", true },
+ { "tojannah.com", true },
{ "tokaido-kun.jp", true },
{ "tokaido.com", true },
{ "tokainafb.net", true },
{ "tokainakurasi.net", true },
{ "tokenmarket.net", true },
{ "tokens.net", true },
- { "tokfun.com", true },
{ "tokic.hr", true },
{ "tokinoha.net", true },
{ "tokio.fi", true },
@@ -39705,7 +43355,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tokke.dk", true },
{ "tokkee.org", true },
{ "tokky.eu", true },
- { "tokoplugin.com", true },
{ "tokototech.com", true },
{ "tokugai.com", true },
{ "tokyo-onkyo.jp", true },
@@ -39715,7 +43364,6 @@ 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 },
@@ -39725,34 +43373,35 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tom-kurka.cz", true },
{ "tom.horse", true },
{ "tom.je", true },
+ { "tom.ro", true },
{ "tom94.net", true },
{ "tomabrafix.de", true },
{ "tomahawk.ca", true },
{ "tomandmara.com", true },
- { "tomarns.nl", true },
{ "tomasjacik.cz", true },
{ "tomaskavalek.cz", false },
{ "tomaspatera.cz", true },
{ "tomasvecera.cz", true },
{ "tomasz.com", true },
+ { "tomaszdwornicki.net", true },
{ "tomatenaufdenaugen.de", true },
{ "tomatis-nantes.com", true },
- { "tomaw.net", true },
- { "tomaz.eu", true },
{ "tombaker.me", true },
{ "tomberek.info", true },
- { "tombroker.org", true },
{ "tombrossman.com", true },
+ { "tombu.biz", true },
+ { "tombu.info", true },
+ { "tombu.org", true },
+ { "tombu.xyz", true },
{ "tomd.ai", true },
{ "tomend.es", true },
{ "tomershemesh.me", true },
- { "tomfisher.eu", true },
{ "tomharling.uk", true },
- { "tomharris.tech", true },
{ "tomi.cc", true },
- { "tomica.me", true },
+ { "tomica.me", false },
{ "tomik.cloud", true },
{ "tomjans.nl", true },
+ { "tomjepp.uk", true },
{ "tomjn.com", true },
{ "tomkunze.de", true },
{ "tomli.blog", true },
@@ -39767,9 +43416,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tomravinmd.com", true },
{ "tomrei.com", true },
{ "tomrichards.net", true },
- { "toms.ovh", true },
{ "tomschlick.com", true },
- { "tomsdevsn.me", true },
{ "tomsherakmshope.org", true },
{ "tomspdblog.com", true },
{ "tomssl.com", true },
@@ -39779,11 +43426,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tomwassenberg.com", true },
{ "tomwassenberg.nl", true },
{ "tomwilson.io", true },
- { "tomyork.net", true },
{ "tonabor.ru", true },
{ "tonage.de", true },
+ { "tonarinoliusan.com", true },
{ "toncusters.nl", true },
{ "tondles.com", true },
+ { "tone.tw", true },
{ "tonegidoarchief.nl", true },
{ "toner24.at", true },
{ "toner24.co.uk", true },
@@ -39802,12 +43450,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tonex.de", true },
{ "tonex.nl", true },
{ "tongli.eu.org", true },
- { "tonifarres.net", true },
{ "tonigallagherinteriors.com", true },
+ { "tonight.de", true },
{ "tonkayagran.com", true },
{ "tonkayagran.ru", true },
{ "tonkinson.com", true },
{ "tonkinwilsonvillenissanparts.com", true },
+ { "tonnie.nl", true },
{ "tonnycat.com", true },
{ "tonnygaric.com", true },
{ "tono.us", true },
@@ -39835,7 +43484,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "toon.style", true },
{ "toonpool.com", true },
{ "toonsburgh.com", true },
- { "toontown.team", true },
{ "toontownrewritten.com", true },
{ "toool.nl", true },
{ "toool.nyc", true },
@@ -39849,13 +43497,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "top4shop.de", true },
{ "top5hosting.co.uk", true },
{ "top6casinos.com", true },
- { "top9.fr", true },
{ "topaxi.ch", true },
{ "topaxi.codes", true },
+ { "topbestsellerproduct.com", true },
{ "topbigdeals.com", true },
{ "topbounce.com", true },
- { "topbouncycastles.co.uk", true },
- { "topbrakes.com", true },
{ "topciderska-crkva.rs", true },
{ "topclassfun.ie", true },
{ "topdesk.net", true },
@@ -39867,6 +43513,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "topfivepercent.co.uk", true },
{ "topgshop.ru", true },
{ "tophat.studio", true },
+ { "tophr.kz", true },
{ "topicdesk.com", true },
{ "topicit.net", true },
{ "topirishcasinos.com", true },
@@ -39874,27 +43521,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "toplist.cz", true },
{ "toplist.eu", true },
{ "toplist.sk", true },
+ { "topmmogames.org", true },
{ "topnotepad.com", true },
{ "topodin.com", true },
{ "toponlinecasinosites.co.uk", true },
{ "toppercan.es", true },
{ "topprice.ua", true },
- { "topservercccam.tv", true },
+ { "topshelf.tech", true },
{ "topshelfcommercial.com", true },
{ "topsteaks-daun.de", true },
+ { "topstore.ph", true },
{ "toptec.net.br", true },
{ "toptexture.com", true },
{ "toptheto.com", true },
{ "topvision.se", true },
{ "topwindowcleaners.co.uk", true },
{ "topwoodltd.co.uk", true },
- { "topworktops.co.uk", true },
- { "topyachts.com.ua", true },
{ "toracon.org", true },
+ { "torbe.es", true },
{ "torchantifa.org", true },
{ "toreni.us", true },
{ "toretame.jp", true },
- { "torg-room.ru", true },
{ "torkware.com", true },
{ "torlock.com", true },
{ "torlock.host", true },
@@ -39904,6 +43551,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tormakristof.eu", true },
{ "tormentedradio.com", false },
{ "torn1.se", true },
+ { "torneobottacin.it", true },
{ "torngalaxy.com", true },
{ "torogroups.com", true },
{ "torontoaccesscontrol.com", true },
@@ -39917,21 +43565,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "torrent.fedoraproject.org", true },
{ "torrent.is", true },
{ "torrent.tm", true },
+ { "torrentfunk.com", true },
{ "torrentfunk.host", true },
{ "torrentfunk.icu", true },
{ "torrentfunk.pw", true },
{ "torrentfunk2.com", true },
- { "torrentpier.me", true },
+ { "torrenttop100.net", true },
+ { "torrentz2.eu", true },
{ "torresygutierrez.com", true },
{ "torretzalam.com", true },
{ "torservers.net", true },
- { "torsquad.com", true },
{ "torsten-schmitz.net", true },
{ "torstensenf.de", true },
{ "torte.roma.it", true },
{ "tortoises-turtles.com", true },
{ "tortugan.com.br", true },
- { "tosamja.net", true },
+ { "tosatopsicologabologna.com", true },
{ "toscer.me", false },
{ "toschool.com.br", true },
{ "toshen.com", true },
@@ -39942,44 +43591,42 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tostu.de", true },
{ "tot-radio.com", true },
{ "totaku.ru", false },
- { "totalaccess.com.ua", true },
+ { "totalaccessnicaragua.co", true },
{ "totalbike.com.br", true },
{ "totalcarcheck.co.uk", true },
{ "totalchecklist.com", true },
+ { "totalclean.co.uk", true },
{ "totalemaildelivery.com", true },
{ "totalforcegym.com", true },
- { "totalhomecareinc.com", true },
{ "totallylegitimatehosting.ru", true },
{ "totalpahire.com", true },
{ "totalparts.com.au", true },
{ "totalprint.hu", true },
+ { "totalsport-bg.com", true },
{ "totaltriathlon.com", true },
{ "totem-international.com", true },
{ "totobetty.com", true },
{ "totodil.es", true },
- { "totolabs.com", true },
{ "toucan-informatique.fr", true },
{ "touch.facebook.com", false },
{ "touch.mail.ru", true },
+ { "touchinformatica.com", true },
{ "touchoflife.in", true },
{ "touchscreentills.com", true },
{ "touchstone.io", true },
- { "touchsupport.com", true },
{ "touchtable.nl", true },
+ { "touchtunesnz.com", true },
{ "touchweb.fr", true },
{ "touchwoodtrees.com.au", true },
- { "touhou.ac.cn", true },
{ "touhou.fm", true },
{ "touhouwiki.net", true },
{ "toujours-actif.com", true },
{ "toulineprestige.com", true },
- { "tounyou-raku.com", true },
+ { "tourdewestwoud.nl", true },
{ "tourgest.net", true },
- { "tourify.me", true },
{ "tourismwithme.com", true },
{ "tournamentmgr.com", true },
{ "tournevis.ch", true },
- { "toursthatmatter.com", true },
{ "tourtransferitaly.it", true },
{ "tourtrektrip.com", true },
{ "tous-travaux.ch", true },
@@ -39990,7 +43637,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tout-art.ch", true },
{ "toutart.ch", true },
{ "toutelathailande.fr", true },
- { "toutenmusic.fr", true },
{ "toutmonexam.fr", true },
{ "toutvendre.be", true },
{ "toutvendre.ch", true },
@@ -40011,19 +43657,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "townhouseregister.com.au", true },
{ "townofbridgewater.ca", true },
{ "towsonroofers.com", true },
+ { "towtruck.website", true },
{ "towywebdesigns.uk", true },
+ { "towzone.co.uk", true },
{ "tox21.gov", false },
- { "toycu.de", true },
+ { "toxoproject.com", true },
{ "toymagazine.com.br", true },
{ "toyota-kinenkan.com", true },
- { "toysale.by", false },
{ "toysperiod.com", true },
+ { "tozdev.com", true },
{ "tp-iryuubun.com", true },
{ "tp-kabushiki.com", true },
{ "tp-kyouyufudousan.com", true },
{ "tp-law.jp", true },
+ { "tpansino.com", true },
+ { "tpastream.com", true },
{ "tpbproxy.co", true },
- { "tpci.biz", true },
{ "tpidg.us", true },
{ "tpolemis.com", true },
{ "tpp.chat", true },
@@ -40031,23 +43680,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tpro.co.id", true },
{ "tpro.rocks", true },
{ "tqdev.com", true },
- { "tql.plus", true },
{ "tr.search.yahoo.com", false },
{ "tr0n.net", true },
{ "traas.org", true },
{ "trabajarenremoto.com", true },
{ "trabbel.org", true },
- { "trace.guru", true },
{ "trace.moe", true },
{ "traceheatinguk.co.uk", true },
- { "tracemyplace.com", true },
- { "traceroute.guru", true },
- { "traceroute.link", true },
- { "traceroute.network", true },
{ "tracetracker.no", true },
+ { "tracewind.top", true },
{ "tracfinancialservices.com", true },
{ "tracinsurance.com", true },
- { "track.plus", true },
{ "trackchair.com", true },
{ "trackdomains.com", true },
{ "tracker.com.ar", true },
@@ -40055,18 +43698,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trackeye.dk", true },
{ "tracking.best", true },
{ "trackrecordpro.co.uk", true },
+ { "tracksa.com.ar", true },
{ "trackyourlogs.com", true },
{ "tractorfan.nl", true },
{ "tractorpumps.com", true },
{ "trad-n-vo.com", true },
+ { "tradavenue.com", true },
{ "trade-arcade.com", true },
{ "trade.gov", true },
{ "trade.gov.uk", true },
{ "trade247.exchange", true },
{ "tradeacademy.in", true },
{ "tradeinvent.co.uk", true },
- { "trademan.ky", true },
+ { "tradeonfx.com", true },
+ { "traderbot.com.br", true },
{ "traderjoe-cloud.de", true },
+ { "tradernet.com", true },
{ "tradernet.ru", true },
{ "tradeshowfreightservices.com", true },
{ "tradexport.cn", true },
@@ -40088,11 +43735,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trafficmanager.xxx", true },
{ "trafficmgr.cn", true },
{ "trafficmgr.net", true },
- { "trafficologyblueprint.com", true },
{ "trafficpixel.tk", true },
+ { "trafficsafetymarketing.gov", true },
{ "traffixdevices.com", true },
{ "traficmusik.net", true },
{ "tragmi.ch", true },
+ { "traha.org", true },
{ "trailcloud.ink", true },
{ "trailerparty.com", true },
{ "trailforks.com", true },
@@ -40129,33 +43777,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "traintimes.lu", true },
{ "traintimes.nl", true },
{ "traintimes.se", true },
+ { "trainyourtribe.com.au", true },
{ "traista.ru", true },
{ "traiteurpapillonevents.be", true },
- { "trajano.net", true },
{ "trajectfoto.nl", true },
{ "trajectvideo.nl", true },
- { "trakkr.tk", true },
{ "tramclub-basel.ch", true },
{ "tran.pw", true },
- { "trance-heal.com", true },
- { "trance-heal.de", true },
- { "tranceheal.com", true },
- { "tranceheal.de", true },
{ "trangell.com", true },
- { "tranglenull.xyz", true },
{ "tranhsondau.net", false },
{ "tranquillity.se", true },
{ "transacid.de", true },
{ "transappealrights.com", true },
{ "transcend.org", true },
{ "transcontrol.com.ua", true },
+ { "transdyne.com", true },
{ "transfer.pw", true },
{ "transferbags.com", true },
{ "transfers.do", true },
+ { "transfers.mx", true },
{ "transferserver.at", true },
{ "transfersummit.com", true },
{ "transfigurewizard.com", true },
- { "transfile.fr", true },
{ "transformaniatime.com", true },
{ "transformations-magazin.com", true },
{ "transgendergedenkdag.nl", true },
@@ -40182,6 +43825,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "transnexus.com", true },
{ "transoil.co.uk", true },
{ "transpak-cn.com", true },
+ { "transparent.cf", true },
{ "transparentcorp.com", true },
{ "transporta.it", true },
{ "transporterlock.com", true },
@@ -40191,30 +43835,40 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trashnothing.com", true },
{ "trashwagon.club", true },
{ "traslocare.roma.it", true },
+ { "traslocatore.roma.it", true },
{ "traslochi-trasporti-facchinaggio.it", true },
{ "trasloco.milano.it", true },
{ "tratamentoparacelulite.net", true },
+ { "tratamientodelvitiligo.es", true },
{ "trattamenti.biz", true },
{ "trattamento-cotto.it", true },
+ { "trattamentocotto.roma.it", true },
{ "trauer-beileid.de", true },
{ "traumwerker.com", true },
{ "traut.cloud", true },
{ "travador.com", true },
{ "travaux-toiture-idf.fr", true },
{ "travel-dealz.de", true },
+ { "travel2macedonia.com", true },
+ { "travel2macedonia.com.mk", true },
+ { "travel2macedonia.mk", true },
{ "travel365.it", true },
{ "travelarmenia.org", true },
+ { "travelbuddiesperu.com", true },
{ "traveleets.com", true },
{ "travelemy.com", true },
{ "travelfield.org", true },
{ "travelholicworld.com", true },
+ { "travelinghacker.com.au", true },
{ "travelinsurance.co.nz", true },
{ "travellers.dating", true },
{ "travellovers.fr", true },
+ { "travelmexico42.com", true },
{ "travelogue.jp", true },
{ "travelphoto.cc", true },
{ "travelrefund.com", true },
{ "travelshack.com", true },
+ { "travelus.nl", true },
{ "traverse.com.ua", true },
{ "travi.org", true },
{ "travis.nl", true },
@@ -40227,13 +43881,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "treaslockbox.gov", true },
{ "trebarov.cz", true },
{ "trebek.club", true },
+ { "tree0.xyz", true },
{ "treebaglia.xyz", true },
+ { "treefelling-durban.co.za", true },
{ "treehouse.pub", true },
{ "treehouseresort.nl", true },
+ { "treeoilpot.com", true },
{ "trees.chat", true },
{ "treeschat.com", true },
{ "treestarmarketing.com", true },
{ "treetopsecurity.com", true },
+ { "treeworkbyjtec.com", true },
{ "trefcon.cz", true },
{ "trefpuntdemeent.nl", true },
{ "treinaweb.com.br", false },
@@ -40242,11 +43900,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "treinonerd.com", true },
{ "trek-planet.ru", true },
{ "trekfriend.com", true },
+ { "trekking-friends.ch", true },
{ "treml-sturm.com", true },
- { "trendkraft.de", true },
{ "trendreportdeals.com", true },
{ "trendsettersre.com", true },
{ "trendus.no", true },
+ { "trendyaccessoriesonline.com", true },
{ "trendykids.cz", true },
{ "trenta.io", true },
{ "trentonmakesnews.com", true },
@@ -40254,6 +43913,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tresorit.com", true },
{ "tresorsecurity.com", true },
{ "tretail.net", true },
+ { "tretkowski.de", true },
{ "treussart.com", true },
{ "trevsanders.co.uk", true },
{ "trezy.me", true },
@@ -40275,32 +43935,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tribetrails.com", true },
{ "tribly.de", true },
{ "tribut.de", true },
- { "tributh.cf", true },
- { "tributh.ga", true },
- { "tributh.gq", true },
- { "tributh.ml", true },
{ "tributh.net", true },
{ "tributh.tk", true },
+ { "tricare.mil", true },
{ "tricefy4.com", true },
- { "trichdanhay.com", true },
{ "triciaree.com", true },
+ { "trickle.works", true },
{ "trico-pigmentazione.it", true },
{ "trident-online.de", true },
+ { "triefenbach.com", true },
+ { "triefenbach.eu", true },
{ "trietment.com", true },
{ "trigardon-rg.de", true },
+ { "trigular.de", true },
{ "trilex.be", true },
{ "trillian.im", true },
{ "trilliumvacationrentals.ca", true },
{ "triluxds.com", true },
{ "trim-a-slab.com", true },
{ "trimage.org", true },
- { "trinary.ca", true },
+ { "trinary.ca", false },
+ { "trindonball.com", true },
{ "trineco.com", true },
{ "trineco.fi", true },
{ "tringavillasyala.com", true },
{ "trinitasgyor.hu", true },
{ "trinitycorporateservices.com", true },
- { "trink-und-partyspiele.de", true },
{ "trinnes.net", true },
{ "trio.online", true },
{ "triop.se", true },
@@ -40313,10 +43973,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trisect.eu", true },
{ "trish-mcevoy.ru", true },
{ "tristanberger.io", true },
+ { "trit.pro", true },
{ "trix360.com", true },
{ "trixati.org.ua", true },
{ "trixexpressweb.nl", true },
- { "triz.co.uk", true },
+ { "trk1234.co.uk", true },
{ "trkpuls.tk", true },
{ "trockendock.ch", true },
{ "troedel-trolle.de", true },
@@ -40328,6 +43989,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trollope-apollo.com", true },
{ "trommelwirbel.com", true },
{ "tronatic-studio.com", true },
+ { "trondelan.no", true },
+ { "tronlaserarena.cz", true },
{ "tronmeo.com", true },
{ "troomcafe.com", true },
{ "troopaid.info", true },
@@ -40336,6 +43999,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trotec.com", true },
{ "trotina.cz", true },
{ "trouble-free-employees.com", true },
+ { "troubles.ru", true },
+ { "trousers.co.uk", true },
{ "trouweninoverijssel.nl", true },
{ "trovaprezzi.it", true },
{ "troxal.com", true },
@@ -40343,16 +44008,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "troyhunt.com", true },
{ "troyhuntsucks.com", true },
{ "trs.tn", true },
- { "trtltravel.com", true },
{ "trtruijens.com", true },
{ "tru.ltd", true },
- { "trucchibellezza.com", true },
{ "trucchibellezza.it", true },
+ { "truckers-auction.jp", true },
{ "truckersmp.com", true },
{ "truckerswereld.nl", false },
- { "truckstop-magazin.de", false },
{ "trucosdescargas.com", true },
- { "true-itk.de", true },
{ "trueachievements.com", true },
{ "trueassignmenthelp.co.uk", true },
{ "trueblueessentials.com", true },
@@ -40361,9 +44023,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "truehempculture.com.au", true },
{ "trueinstincts.ca", true },
{ "truekey.com", true },
+ { "truelovesakuya.info", true },
+ { "trueminecraft.com", true },
+ { "truendo.com", true },
{ "truentumvet.it", true },
{ "trueproxy.net", true },
{ "truerizm.ru", true },
+ { "trueseeing.com", true },
{ "truestaradvisors.com", true },
{ "truesteamachievements.com", true },
{ "truestor.com", true },
@@ -40373,33 +44039,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trueweb.es", true },
{ "trufflemonkey.co.uk", true },
{ "truhlarstvi-fise.cz", true },
- { "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 },
- { "trustees.org", true },
{ "trustfield.ch", true },
{ "trustserv.de", true },
{ "truthmessages.pw", true },
{ "truthsayer.tk", true },
{ "truvisory.com", true },
+ { "truyencuoi.org", true },
{ "truyenfull.vn", true },
{ "trw-reseller.com", true },
{ "try2admin.pw", true },
{ "try2services.cm", true },
{ "try2services.vc", true },
{ "trybooking.com", true },
- { "tryfabulousskincream.com", true },
- { "tryfabulousskinserum.com", true },
- { "trygarciniaslimdiet.com", true },
{ "tryhard.cz", true },
{ "tryhexadecimal.com", true },
{ "tryitonline.net", true },
@@ -40407,58 +44067,77 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tryndraze.com", true },
{ "trynta.com", true },
{ "trynta.net", true },
+ { "tryplo.ca", true },
{ "tryplo.com", true },
{ "tryplo.io", true },
{ "tryplo.net", true },
{ "tryplo.org", true },
+ { "tryplo.xyz", true },
{ "tryretool.com", true },
{ "tryupdates.com", true },
- { "trywesayyes.com", true },
{ "trzepak.pl", true },
+ { "ts3-dns.com", true },
+ { "ts3-dns.net", true },
+ { "ts5server.eu", true },
{ "tsa-sucks.com", true },
{ "tsab.moe", true },
+ { "tsachs.eu", true },
{ "tsai.com.de", true },
{ "tsatestprep.com", true },
{ "tschuermans.be", true },
{ "tscinsurance.com", true },
{ "tsedryk.ca", true },
{ "tsgkc1.com", true },
+ { "tshirtscapetown.com", true },
{ "tsicons.com", true },
+ { "tsinnosti.com", true },
{ "tsironis-olivenoel.de", true },
{ "tslcontractors.co.uk", true },
+ { "tsmgroup2.biz", true },
{ "tsng-stg.tk", true },
{ "tsng.co.jp", true },
+ { "tsriggingequipment.com", true },
+ { "tsrv.pw", true },
{ "tss.am", true },
{ "tstrubberstamp.com", false },
+ { "tsueri.cloud", true },
{ "tsugi.fr", true },
{ "tsukhani.com", true },
{ "tsuki.moe", true },
{ "tsumegumi.com", true },
{ "tsumi.it", true },
+ { "tsunami.gov", true },
{ "tsundere.moe", true },
{ "tsung.co", true },
{ "tsurai.work", true },
{ "tsutsumi-kogyo.jp", true },
{ "tsuyuzakihiroyuki.com", true },
{ "tsv-1894.de", true },
+ { "tt5197.co", true },
+ { "tt6729.co", true },
+ { "tt6729.com", true },
+ { "tt6957.co", true },
+ { "tt918.com", true },
+ { "tt9297.co", true },
+ { "tt9397.com", true },
+ { "tt9721.com", true },
+ { "tt9728.co", 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 },
- { "ttfin.ch", true },
{ "ttlet.com", true },
{ "ttll.de", true },
- { "ttrade.ga", true },
{ "tts-assessments.com", true },
{ "ttsoft.pl", true },
{ "ttsweb.org", true },
{ "ttt.tt", true },
{ "ttuwiki.ee", true },
{ "ttuwiki.org", true },
+ { "ttwoee.com", true },
{ "ttwt.com", true },
{ "tty1.net", true },
{ "ttyystudio.com", true },
@@ -40467,6 +44146,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tuasaude.com", true },
{ "tubanten.nl", true },
{ "tube.tools", true },
+ { "tubebegana.com", true },
{ "tubejack.nl", true },
{ "tubepro.de", true },
{ "tubs4fun.co.uk", true },
@@ -40477,10 +44157,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tucsonpcrepair.com", true },
{ "tucuxi.org", true },
{ "tudiennhakhoa.com", true },
- { "tudorproject.org", true },
+ { "tudineroasi.com", true },
{ "tueplay.host", true },
{ "tuev-hessen.de", true },
- { "tufashionista.com", true },
{ "tuffclassified.com", true },
{ "tuffsruffs.se", true },
{ "tuimprenta.com.ar", true },
@@ -40489,6 +44168,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tuitle.com", true },
{ "tuja.hu", true },
{ "tujunfang.com", true },
+ { "tulenceria.es", true },
+ { "tully.co.uk", true },
+ { "tulpan22.ru", true },
+ { "tulsaworkshop.org", true },
{ "tulumplayarealestate.com", true },
{ "tumagiri.net", true },
{ "tumblenfun.com", true },
@@ -40500,6 +44183,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tunefish-entertainment.de", true },
{ "tuner.cloud", true },
{ "tuning-werkstatt-nuernberg.de", true },
+ { "tuning.energy", true },
{ "tuningblog.eu", false },
{ "tunnelbear.com", true },
{ "tunnelblick.net", true },
@@ -40507,14 +44191,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tunnelwatch.com", true },
{ "tuntitili.fi", true },
{ "tuotteet.org", true },
- { "tuou.xyz", false },
{ "tupa-germania.ru", true },
+ { "tupass.pw", true },
{ "tupeuxpastest.ch", true },
+ { "tupizm.com", true },
{ "tuppenceworth.ie", true },
{ "turdnagel.com", true },
{ "turf-experts.com", true },
{ "turigum.com", true },
- { "turingmind.com", true },
{ "turismodubrovnik.com", true },
{ "turkish.dating", true },
{ "turkiyen.com", true },
@@ -40525,26 +44209,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "turnierplanung.com", true },
{ "turnoffthelights.com", true },
{ "turnonsocial.com", true },
+ { "turnout.rocks", true },
{ "turpinpesage.fr", true },
{ "tursiae.org", true },
{ "turtleduckstudios.com", true },
+ { "turtlepay.io", true },
{ "turtlepwr.com", true },
{ "turunculevye.com", true },
+ { "turystyczny-system.pl", true },
{ "tuscanyleather.it", true },
- { "tusi.co", false },
{ "tusksol.com", true },
{ "tusmedicamentos.com", true },
{ "tutanota.com", true },
{ "tuto-craft.com", true },
{ "tutoragency.org", true },
{ "tutorat-tect.org", true },
- { "tutoref.com", true },
{ "tutorialehtml.com", true },
{ "tutorialinux.com", true },
+ { "tutorialseo.com.br", true },
{ "tutorme.com", true },
{ "tuts4you.com", true },
{ "tuttimundi.org", true },
- { "tuttoandroid.net", true },
{ "tuvangoicuoc.com", true },
{ "tuversionplus.com", true },
{ "tuwaner.com", true },
@@ -40553,7 +44238,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tuxgeo.com", false },
{ "tuxie.com", true },
{ "tuxlife.net", true },
- { "tuxpeliculas.com", true },
{ "tuxpi.com", true },
{ "tuxplace.nl", true },
{ "tuxtimo.me", true },
@@ -40562,24 +44246,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tuzaijidi.com", true },
{ "tv-programme.be", true },
{ "tv-programme.com", true },
+ { "tv-sports.fr", true },
{ "tvbaratas.net", true },
{ "tvbeugels.nl", false },
- { "tvcal.net", true },
{ "tvcmarketing.com", true },
+ { "tvdates.info", true },
{ "tver-msk.ru", true },
- { "tverskaya-outlet.ru", true },
{ "tvhshop.be", true },
{ "tvipper.com", true },
{ "tvlanguedoc.com", true },
{ "tvleaks.se", true },
{ "tvlplus.net", true },
+ { "tvquot.es", true },
{ "tvs-virtual.cz", true },
{ "tvseries.info", true },
- { "tvsheerenhoek.nl", true },
+ { "tvteam.nl", true },
{ "tvzr.com", false },
{ "tw.search.yahoo.com", false },
{ "twaka.com", true },
{ "twalter.de", true },
+ { "twatspot.com", true },
{ "twb.berlin", true },
{ "twd2.me", true },
{ "twd2.net", false },
@@ -40588,55 +44274,55 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tweakers.com.au", true },
{ "tweakers.net", true },
{ "tweaktown.com", true },
- { "tweedehandslaptophardenberg.nl", true },
- { "tweetfinity.com", true },
- { "tweetfinityapp.com", true },
{ "twem.ddns.net", true },
{ "twenty71.com", true },
{ "twentymilliseconds.com", true },
{ "twilleys.com", true },
{ "twincitynissantxparts.com", true },
+ { "twinkietotmom.com", true },
{ "twinkseason.com", true },
{ "twinztech.com", true },
{ "twisata.com", true },
+ { "twist.com", true },
{ "twistdevelopment.co.uk", true },
{ "twisted-brains.org", true },
{ "twistedwave.com", true },
+ { "twistertoneel.nl", true },
{ "twisto.cz", true },
{ "twisto.pl", true },
- { "twistopay.com", true },
{ "twit-guide.com", true },
{ "twitchplaysleaderboard.info", true },
{ "twitter.com", false },
{ "twitteroauth.com", true },
{ "twizzkidzinflatables.co.uk", true },
{ "twlan.org", true },
+ { "twmartin.codes", true },
{ "twodadsgames.com", true },
+ { "twoef.co.uk", true },
{ "twofactorauth.org", true },
{ "twohuo.com", true },
{ "twoleftsticks.com", true },
+ { "twonodes.games", true },
{ "twopif.net", true },
{ "tworaz.net", true },
{ "twtimmy.com", true },
- { "twtremind.com", true },
+ { "twwd.de", true },
{ "txcap.org", true },
{ "txdivorce.org", true },
{ "txi.su", true },
{ "txlrs.org", true },
{ "txm.pl", true },
- { "txpi.nsupdate.info", true },
{ "txtecho.com", true },
{ "txurologist.com", true },
{ "ty5998.com", true },
{ "tyche.io", true },
{ "tycho.org", true },
{ "tycom.cz", true },
+ { "tycyc88.com", true },
{ "tykeplay.com", true },
{ "tyler.rs", true },
{ "tylerdavies.net", true },
{ "tylerfreedman.com", true },
- { "tylerharcourt.ca", true },
- { "tylerharcourt.com", true },
{ "tylerharcourt.org", true },
{ "tylermade.net", true },
{ "tyleromeara.com", true },
@@ -40658,25 +44344,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tyroremotes.fr", true },
{ "tyroremotes.nl", true },
{ "tyroremotes.no", true },
+ { "tyroremotes.pt", true },
+ { "tyroremotes.se", true },
{ "tysox.de", true },
{ "tysye.ca", true },
{ "tyuo-keibi.co.jp", true },
{ "tzermias.gr", true },
- { "tzifas.com", true },
+ { "tziyona.net", true },
{ "tzsec.com", true },
{ "u-chan.com", true },
+ { "u-grow.gr", true },
{ "u-he.com", true },
{ "u-martfoods.com", true },
{ "u-page.nl", true },
- { "u-tokyo.club", true },
{ "u.nu", true },
- { "u0010.com", true },
- { "u0020.com", true },
- { "u0050.com", true },
- { "u0060.com", true },
- { "u0070.com", true },
- { "u0080.com", true },
- { "u0090.com", true },
{ "u03.fr", true },
{ "u1100.com", true },
{ "u1144.com", true },
@@ -40686,29 +44367,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "u4mh-dev-accesscontroller.azurewebsites.net", true },
{ "u4mh-dev-portal.azurewebsites.net", true },
{ "u5.re", true },
+ { "u5197.co", true },
{ "u5b.de", false },
{ "u5r.nl", true },
+ { "u6729.com", true },
+ { "u6957.co", true },
+ { "u9297.co", true },
+ { "u9397.com", true },
+ { "u9721.com", true },
+ { "u9728.co", true },
{ "ua.search.yahoo.com", false },
{ "uaci.edu.mx", true },
{ "uae-company-service.com", true },
{ "uangteman.com", true },
{ "uasmi.com", true },
+ { "uastrategy.org", true },
{ "uat-activesg.com", true },
{ "uatgootax.ru", false },
{ "ub3rk1tten.com", false },
+ { "ub889.com", true },
{ "ubanquity.com", true },
{ "ubcani.com", true },
{ "uberboxen.net", true },
{ "uberestimator.com", true },
+ { "uberi.fi", true },
{ "ubermail.me", true },
{ "uberpromocodes.us", true },
{ "uberwald.de", true },
{ "uberwald.ws", true },
{ "ubezpieczeniepsa.com", true },
- { "ubi.gg", true },
{ "ubineering.de", true },
{ "ubis.company", true },
- { "ubis.group", true },
{ "ublaboo.org", true },
{ "ubntleaks.com", true },
{ "uborcare.com", true },
@@ -40721,46 +44410,48 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ucfirst.nl", true },
{ "uchargeapp.com", true },
{ "uclf.de", true },
- { "uclip.club", true },
{ "ucppe.org", true },
{ "ucrdatatool.gov", true },
{ "uctarna.online", true },
{ "udancy.com", true },
{ "udbhav.me", true },
- { "uddhabhaldar.com", true },
+ { "uddate-linthdcp-3345app.com", true },
+ { "uddate-linthdcp-567app.com", true },
+ { "uddi.ng", true },
{ "udo-luetkemeier.de", true },
{ "udomain.net", true },
{ "udp.sh", false },
{ "udruga-point.hr", true },
- { "udsocial.com", true },
+ { "udvalgte-ordsprog.dk", true },
{ "udvoukocek.eu", true },
- { "ueba1085.jp", true },
{ "ueberdosis.io", true },
{ "ueberwachungspaket.at", true },
{ "uedaviolin.com", true },
{ "ueni.com", true },
{ "uevan.com", true },
- { "uex.im", true },
{ "ufanisi.mx", true },
{ "ufindme.at", true },
{ "ufo-blogger.com", true },
+ { "ufo.moe", true },
{ "ufocentre.com", true },
{ "ufplanets.com", true },
{ "ugb-verlag.de", true },
{ "uggedal.com", true },
+ { "ugtdigiteldocumentos.es", true },
{ "ugx-mods.com", true },
- { "uhasseltctf.be", true },
+ { "ugy.es", true },
{ "uhc.gg", true },
{ "uhlhosting.ch", true },
{ "uhrenlux.de", true },
- { "uhurl.net", true },
{ "ui8.net", true },
{ "uiberlay.cz", true },
- { "uicchy.com", true },
{ "uiop.link", true },
{ "uiterwijk.org", true },
{ "uitgeverij-deviant.nl", true },
{ "uitvaartvrouwenfriesland.nl", true },
+ { "uitvaartzorg-heerenveen.nl", true },
+ { "uitvaartzorgzuidwestfriesland.nl", true },
+ { "ujiyasu.com", true },
{ "ujob.com.cn", true },
{ "ujvary.eu", true },
{ "uk.dating", true },
@@ -40771,19 +44462,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ukhas.net", true },
{ "ukhillwalking.com", true },
{ "ukmeetandgreet.com", true },
- { "ukmortgagecompare.co.uk", true },
{ "ukooku.com", true },
{ "ukozliku.cz", true },
{ "ukpirate.org", true },
+ { "ukr.media", true },
{ "ukrainians.ch", true },
{ "ukrigging.net", true },
{ "ukrn.io", true },
{ "ukrnet.co.uk", true },
{ "uktw.co.uk", true },
+ { "ukuchordnamer.com", true },
{ "ukulelejim.com", true },
+ { "ukutabs.com", true },
{ "ukwct.org.uk", true },
{ "ulabox.com", true },
{ "uldsh.de", true },
+ { "uleenucks.de", true },
{ "ulen.me", true },
{ "ulfberht.fi", true },
{ "ulgc.cz", true },
@@ -40792,52 +44486,62 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ullah.se", true },
{ "ulmer-schneesport.de", true },
{ "ulovdomov.cz", true },
- { "ultieme.be", true },
+ { "ulrik.moe", true },
{ "ultima-ratio.at", true },
{ "ultimate-uk.com", true },
{ "ultimateanu.com", true },
{ "ultimatemafia.net", true },
+ { "ultimatepaleoguide.com", true },
+ { "ultramax.biz", true },
{ "ultramookie.com", true },
- { "ultratech.software", true },
+ { "ultraporn.biz", true },
+ { "ultraseopro.com", true },
{ "ultratechlp.com", true },
{ "ultrautoparts.com.au", true },
+ { "um-sachsen-pictures.de", true },
{ "uma.vn", true },
{ "umanityracing.com", true },
+ { "umartina.eu", true },
+ { "umasstransit.org", true },
{ "umbertheprussianblue.com", true },
{ "umbricht.li", true },
{ "umenlisam.com", true },
{ "umisonoda.com", true },
+ { "umlcode.com", true },
{ "ummati.com", true },
- { "umsapi.com", true },
{ "umzuege-berlin.com", true },
{ "umzuege-hannover.net", true },
{ "umzuege-wolfsburg.de", true },
- { "umzug-berlin24.de", true },
{ "umzug-braunschweig24.de", true },
+ { "umzugsunternehmenberlin.eu", true },
{ "un-framed.co.za", true },
{ "un-zero-un.fr", true },
{ "un.fo", true },
{ "unapp.me", true },
{ "unatco.noip.me", true },
{ "unausa.com.br", true },
- { "unbelievableplaces.de", true },
{ "unblock-zh.org", true },
- { "unblockall.xyz", true },
{ "unblocked.at", true },
{ "unblocked.bet", true },
{ "unblocked.bid", true },
{ "unblocked.cam", true },
{ "unblocked.gdn", true },
{ "unblocked.ink", true },
+ { "unblocked.krd", true },
{ "unblocked.live", true },
+ { "unblocked.llc", true },
{ "unblocked.mx", true },
{ "unblocked.one", true },
+ { "unblocked.pet", true },
{ "unblocked.pl", true },
{ "unblocked.pro", true },
{ "unblocked.pub", true },
+ { "unblocked.sh", true },
{ "unblocked.uno", true },
+ { "unblocked.vc", true },
{ "unblocked.vet", true },
{ "unblocked.vip", true },
+ { "unblocked.win", true },
{ "unblockweb.co", true },
{ "unboundmoney.com", true },
{ "unboxforteams.work", true },
@@ -40845,20 +44549,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unccelearn.org", true },
{ "uncensoreddns.dk", true },
{ "uncensoreddns.org", true },
- { "undeadbrains.de", true },
+ { "undecidable.de", true },
{ "undeductive.media", true },
{ "undef.in", false },
{ "underbridgeleisure.co.uk", true },
- { "undercovercondoms.co.uk", true },
+ { "undercovercondoms.com", true },
{ "underfloorheating-uk.co.uk", true },
{ "underlined.fr", true },
{ "undernet.uy", false },
- { "underskatten.tk", true },
{ "underwearoffer.com", true },
- { "undo.co.il", true },
+ { "undp.lt", true },
{ "unece-deta.eu", true },
{ "unedouleur.com", true },
{ "unefleur.be", true },
+ { "unefuite.ch", true },
{ "unerosesurlalune.fr", true },
{ "unexpected.nu", true },
{ "unfallrechtler.de", true },
@@ -40866,9 +44570,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unfettered.net", false },
{ "unga.dk", true },
{ "ungaeuropeer.se", true },
- { "ungeek.fr", true },
{ "ungegamere.dk", true },
+ { "ungelektro.no", true },
{ "unghie.com", true },
+ { "unhurriedluxury.com", true },
+ { "unibolsit.com", true },
{ "unicef-karten.at", true },
{ "unicef.pl", true },
{ "unicefcards.cz", true },
@@ -40880,8 +44586,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unicefkartkidlafirm.pl", true },
{ "unicefkepeslapok.hu", true },
{ "unicefvoscilnice.si", true },
- { "unicioushop.com", true },
- { "unicmotos.com", true },
{ "unicolabo.jp", true },
{ "unicorn-systems.net", true },
{ "unicorn.melbourne", true },
@@ -40897,17 +44601,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unifei.edu.br", true },
{ "uniform-agri.com", true },
{ "unijob.com.br", true },
- { "unik.bg", true },
{ "unikoingold.com", true },
+ { "unikrn.com", true },
{ "unikrn.space", true },
{ "unila.edu.br", true },
{ "unimbalr.com", true },
{ "unionplat.ru", true },
+ { "unionstreetskateboards.com", true },
{ "uniontestprep.com", true },
{ "unipig.de", true },
{ "uniprimebr.com.br", false },
{ "uniq.site", true },
- { "unique-bouncy-castles.co.uk", true },
+ { "uniqsys.eu", true },
{ "unique-pathways.ch", true },
{ "unique-pathways.com", true },
{ "uniquepathways.ch", true },
@@ -40922,17 +44627,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unitedadmins.com", true },
{ "unitedkingdoms-guild.com", true },
{ "unitedpsychological.com", true },
+ { "unitedstreamers.de", true },
{ "unitel2000.de", true },
{ "unityconsciousnessbooks.com", true },
+ { "univate.berlin", true },
{ "univercite.ch", true },
{ "univeril.com", false },
- { "universal-happiness.com", true },
+ { "univerkeys.com", true },
{ "universal.at", true },
{ "universalcarpetinc.com", true },
{ "universalcarremote.com", true },
- { "universalpaymentgateway.com", true },
+ { "universe.horse", true },
{ "universeinform.com", true },
- { "universidadvg.edu.mx", true },
+ { "universogay.com", true },
{ "universrumbacongolaise.com", true },
{ "univitale.fr", true },
{ "unix.se", true },
@@ -40942,19 +44649,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unixfox.eu", true },
{ "unixtime.date", true },
{ "unkn0wncat.net", true },
+ { "unknown.kyoto", true },
{ "unkrn.com", true },
{ "unlax.com", true },
{ "unli.xyz", true },
+ { "unlockblackberryfree.co.uk", true },
{ "unlocken.nl", true },
+ { "unlocks.co.uk", true },
{ "unlocktalent.gov", true },
{ "unmarkdocs.co", true },
{ "unmonito.red", true },
{ "unn-edu.info", true },
+ { "unnamed.download", true },
{ "uno-pizza.ru", true },
{ "uno.fi", true },
- { "unobrindes.com.br", true },
+ { "uno.uk", true },
{ "unoccupyabq.org", true },
+ { "unosconotros.com", true },
{ "unp.me", true },
+ { "unpaismejor.es", true },
{ "unpkg.com", true },
{ "unpluggedjuice.dk", true },
{ "unpossible.xyz", true },
@@ -40962,12 +44675,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unquote.li", true },
{ "unrealircd.org", true },
{ "unrelated.net.au", true },
+ { "uns.ac.id", true },
{ "uns.vn", true },
{ "unsacsurledos.com", true },
{ "unsee.cc", true },
{ "unseen.is", true },
{ "unseen.tw", true },
{ "unser-gartenforum.de", true },
+ { "unsereins.me", true },
{ "unsourirealecole.fr", true },
{ "unstablewormhole.ltd", true },
{ "unstamps.org", true },
@@ -40977,16 +44692,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unterhaltungsbox.com", true },
{ "unternehmer-radio.de", true },
{ "unternehmerrat-hagen.de", true },
- { "unterschicht.tv", true },
{ "untethereddog.com", true },
+ { "unti.me", true },
{ "unun.fi", true },
+ { "unusedrooms.com", true },
{ "unusualhatclub.com", true },
{ "unveiledgnosis.com", true },
{ "unx.dk", true },
{ "unxicdellum.cat", true },
{ "uoone.com", true },
{ "uotomizu.com", true },
- { "upaknship.com", true },
+ { "up-ai.com", true },
+ { "up2mark.com", true },
+ { "up2staff.com", true },
{ "upakweship.com", true },
{ "upandrunningtutorials.com", true },
{ "upay.ru", true },
@@ -40997,19 +44715,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "upcloud.cz", true },
{ "upd.jp", true },
{ "upengo.com", true },
+ { "upforshare.com", true },
{ "upgamerengine.com", true },
{ "upgamerengine.com.br", true },
{ "upgamerengine.net", true },
+ { "upgauged.com", true },
{ "upholsterydesign.com.au", true },
{ "upitnik.rs", true },
{ "uplaqui.com.br", true },
+ { "uplead.com", true },
{ "uplinklabs.net", true },
{ "upload.cat", true },
{ "upload.facebook.com", false },
{ "uploadbeta.com", true },
- { "uplr.it", true },
+ { "uplotnitel.online", true },
{ "upnext.io", true },
- { "upnorthproperty.com", true },
{ "upperbeaconsfield.org.au", true },
{ "upperroommission.ca", true },
{ "upplevelse.com", true },
@@ -41018,11 +44738,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "upropay.com", true },
{ "uprospr.com", true },
{ "uprouteyou.com", true },
- { "upsettunnel.com", true },
{ "upsiteseo.com", true },
+ { "upstart.com", true },
{ "uptechbrasil.com.br", true },
- { "uptimed.com", true },
- { "uptimenotguaranteed.com", true },
{ "uptodateinteriors.com", true },
{ "uptoon.jp", true },
{ "uptownlocators.com", true },
@@ -41031,19 +44749,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "uptrends.de", 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 },
+ { "uraniborg.net", true },
+ { "uranius.eu", true },
{ "urbackups.com", true },
{ "urbalex.ch", true },
- { "urban-culture.fr", true },
{ "urban.melbourne", true },
{ "urbancreators.dk", true },
{ "urbandance.club", true },
+ { "urbane-london.com", true },
{ "urbanesecurity.com", true },
+ { "urbanfi.sh", true },
{ "urbanguerillas.de", true },
{ "urbangymfirenze.com", true },
{ "urbanhotbed.eu", true },
@@ -41051,11 +44773,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "urbanmelbourne.info", true },
{ "urbannewsservice.com", true },
{ "urbansparrow.in", true },
- { "urbansurvival.com", true },
{ "urbanwaters.gov", false },
{ "urbanwildlifealliance.org", false },
{ "urbanxdevelopment.com", true },
- { "urbexdk.nl", true },
{ "urbexing.eu", true },
{ "urbizoroofing.com", true },
{ "urcentral.com", true },
@@ -41063,8 +44783,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "urcentral.nl", true },
{ "ureka.org", true },
{ "urep.us", true },
- { "urinedrugtesthq.com", true },
- { "uriport.com", true },
{ "uriports.com", true },
{ "uripura.de", true },
{ "urist1011.ru", true },
@@ -41079,6 +44797,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "urlscan.io", true },
{ "urltell.com", true },
{ "urltodomain.com", true },
+ { "urmom.lol", true },
{ "urnes.org", true },
{ "urown.net", true },
{ "ursa-minor-beta.org", true },
@@ -41088,10 +44807,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "urth.org", true },
{ "uruguay-experience.com", true },
{ "urukproject.org", true },
- { "usa-10.com", true },
+ { "usa-10.net", true },
+ { "usa-10.us", true },
{ "usa-greencard.eu", true },
+ { "usa-reisetipps.net", true },
+ { "usa10sb.com", true },
{ "usaa.com", false },
+ { "usaautoaz.com", true },
{ "usabackground.com", true },
+ { "usabibi.net", true },
{ "usability.gov", true },
{ "usadba.net.ru", true },
{ "usaestaonline.com", true },
@@ -41103,23 +44827,27 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "usajobs.gov", true },
{ "usakitchensandflooring.com", true },
{ "usalearning.gov", true },
+ { "usamdt.com", true },
+ { "usarp.org", true },
{ "usaseanconnect.gov", true },
{ "usastaffing.gov", true },
{ "usb-lock-rp.com", true },
{ "usbcraft.com", true },
+ { "usbcurrent.com", true },
{ "usbevents.co.uk", true },
{ "usbr.gov", true },
{ "uscis.gov", true },
{ "uscloud.nl", true },
{ "uscurrency.gov", true },
- { "usd.de", true },
+ { "usd.de", false },
{ "usdoj.gov", true },
{ "usds.gov", true },
{ "use.be", true },
{ "usebean.com", true },
- { "usemusic.com.br", true },
+ { "usedu.us", true },
{ "user-re.com", true },
{ "userra.gov", true },
+ { "userstation.net", true },
{ "usetypo3.com", true },
{ "useyourloaf.com", true },
{ "usgande.com", true },
@@ -41129,11 +44857,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "usipvd.ch", true },
{ "usitcolours.bg", true },
{ "uskaria.com", true },
- { "usmint.gov", true },
{ "usninosnikrcni.eu", true },
{ "usnti.com", true },
+ { "uspaacc.com", true },
{ "usphs.gov", true },
- { "uspsoig.gov", true },
{ "ussm.gov", false },
{ "ussst.org", true },
{ "ussuka.com", true },
@@ -41142,20 +44869,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ustr.gov", false },
{ "ustugov.kiev.ua", true },
{ "ustugova.kiev.ua", true },
- { "usu.org.ua", true },
{ "usualbeings.com", true },
{ "usuan.net", true },
{ "usweme.info", true },
{ "uswitch.com", true },
- { "ut-addicted.com", true },
{ "utahblackplate.com", true },
{ "utahblackplates.com", true },
{ "utahcanyons.org", true },
+ { "utahfanclub.org", true },
+ { "utahhomes-realestate.com", true },
+ { "utahhydrographics.com", true },
{ "utahlocal.net", true },
{ "utahtravelcenter.com", true },
+ { "utavatu.mk", true },
{ "utazas-nyaralas.info", true },
{ "utazine.com", true },
{ "utcast-mate.com", true },
+ { "uteasybooki.com", true },
+ { "utensil.org", true },
{ "utepils.de", true },
{ "utgifter.no", true },
{ "utilia.tools", true },
@@ -41167,9 +44898,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "utilitarismo.com", true },
{ "utilitronium.com", true },
{ "utilityapi.com", true },
- { "utilityreport.eu", true },
{ "utonia.ch", true },
{ "utopicestudios.com", true },
+ { "utorg.com.ua", true },
{ "utox.io", true },
{ "utrace.me", true },
{ "utterberry.io", true },
@@ -41177,24 +44908,49 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "utw.me", true },
{ "utwente.io", true },
{ "utzon.net", true },
+ { "uu5197.co", true },
+ { "uu6729.co", true },
+ { "uu6729.com", true },
+ { "uu6957.co", true },
+ { "uu9297.co", true },
+ { "uu9397.com", true },
+ { "uu9721.com", true },
+ { "uu9728.co", true },
{ "uuid.fr", true },
{ "uuit.nl", true },
{ "uv.uy", true },
{ "uvenuse.cz", true },
{ "uvocorp.com", true },
+ { "uvx.io", true },
+ { "uw1008.com", true },
{ "uw2333.com", true },
{ "uwac.co.uk", false },
{ "uwat.cf", true },
{ "uwelilienthal.de", true },
+ { "uwmarktspecialist.nl", true },
{ "uwsoftware.be", true },
+ { "uwusergdatasystems.com", true },
{ "uwvloereruit.nl", true },
+ { "ux-designers.nl", true },
+ { "uxdesignerjobs.nl", true },
{ "uxp-it.nl", true },
{ "uxteam.com", true },
{ "uy.search.yahoo.com", false },
{ "uz.search.yahoo.com", false },
{ "uzayliyiz.biz", true },
{ "uzaymedya.com.tr", true },
+ { "uze-mobility.ch", true },
+ { "uze-mobility.co", true },
{ "uze-mobility.com", true },
+ { "uze-mobility.group", true },
+ { "uze-mobility.info", true },
+ { "uze-mobility.net", true },
+ { "uze-mobility.org", true },
+ { "uze-store.com", true },
+ { "uze.mobi", true },
+ { "uzemobility.com", true },
+ { "uzemobility.eu", true },
+ { "uzemobility.org", true },
{ "uziregister.nl", true },
{ "uzpirksana.lv", true },
{ "uzsvm.cz", true },
@@ -41203,7 +44959,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "v-spin.cz", true },
{ "v-tek.fi", true },
{ "v-u-z.ru", true },
- { "v1sit0r.ru", true },
+ { "v0ctor.me", true },
{ "v2bv.net", true },
{ "v2bv.win", true },
{ "v2cn.win", true },
@@ -41211,12 +44967,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "v2ray6.com", true },
{ "v2ray66.com", true },
{ "v2ray666.com", true },
- { "v5ray.top", true },
+ { "v5197.co", true },
+ { "v5ray.xyz", true },
+ { "v6729.co", true },
+ { "v6957.co", true },
+ { "v9297.co", true },
+ { "v9728.co", true },
+ { "v9728.com", true },
{ "va-reitartikel.com", true },
{ "va.gov", true },
{ "va1der.ca", true },
+ { "vacancyfiller.com", true },
{ "vacationsbyvip.com", true },
- { "vaccines.gov", true },
{ "vacuumpump.co.id", true },
{ "vadennissanofhiltonheadparts.com", true },
{ "vaeplatform.com", true },
@@ -41225,6 +44987,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vagabondgal.com", true },
{ "vagaerg.com", true },
{ "vagaerg.net", true },
+ { "vaganciatechnology.com", true },
{ "vagmour.eu", true },
{ "vagpartsdb.com", true },
{ "vagrantcloud.com", true },
@@ -41232,29 +44995,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vaincreladyslexie.com", false },
{ "vaindil.com", true },
{ "vaioswolke.xyz", false },
+ { "vairuok.lt", true },
+ { "vakaconsulting.com", true },
{ "vakantiedetective.nl", true },
{ "vakantienet.nl", true },
{ "vakuutuskanava.fi", true },
+ { "valaphee.com", true },
{ "valasi.eu", true },
- { "valcano-krd.ru", true },
- { "valcano.ru", true },
{ "valcansell.com", true },
{ "valcardiesel.com", true },
{ "valdicass.com", true },
{ "valek.net", true },
+ { "valemountchamber.com", true },
+ { "valemountmuseum.ca", true },
{ "valenciadevops.me", true },
- { "valentin-sundermann.de", true },
+ { "valentin.ml", true },
+ { "valentinarosamilia.ch", true },
+ { "valentinarosamilia.com", true },
{ "valentinberclaz.com", true },
{ "valentineapparel.com", true },
{ "valentineforpresident.com", true },
- { "valentinera.in", true },
{ "valentinesongs.com", true },
{ "valentinritz.com", true },
+ { "valeo-it.de", true },
{ "valeriansaliou.name", true },
- { "vales.io", true },
- { "valesdigital.com", true },
{ "valiant.finance", true },
- { "validatis.com", true },
{ "validator.nu", true },
{ "validbrands.com", true },
{ "valika.ee", true },
@@ -41265,7 +45030,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vallei-veluwe.nl", true },
{ "valleyautofair.com", true },
{ "valleyautoloan.com", true },
- { "valleycode.net", true },
{ "valleydalecottage.com.au", true },
{ "vallutaja.eu", true },
{ "valokuva-albumi.fi", true },
@@ -41274,11 +45038,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "valoremtax.ch", true },
{ "valoremtax.com", true },
{ "valorin.net", true },
- { "valorizofficial.com", true },
{ "valsk.is", false },
{ "valskis.lt", true },
{ "valtlai.fi", true },
- { "valtoaho.com", true },
{ "valtool.uk", true },
{ "valudo.st", true },
{ "valuehost.com.br", true },
@@ -41286,9 +45048,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "valuemyhome.uk", true },
{ "valuemywebsite.net", true },
{ "valueng.com", true },
- { "valueofblog.com", true },
{ "valueseed.net", true },
{ "valuuttamuunnin.com", true },
+ { "vamosbets.com", true },
{ "vampire142.fr", true },
{ "vampyrium.net", false },
{ "van11y.net", true },
@@ -41296,14 +45058,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vanagamseeds.com", true },
{ "vanbinnenuit.nl", true },
{ "vancityconcerts.com", true },
+ { "vancoevents.com", true },
{ "vancouvercosmeticsurgery.ca", true },
{ "vancouverwatowncar.com", true },
+ { "vancouverwebsitedesigns.com", true },
{ "vandalfsen.me", true },
{ "vandenbroeck-usedcars.be", true },
{ "vandeput.be", true },
{ "vanderbiltcisa.org", true },
{ "vanderkrieken.org", true },
{ "vanderkroon.nl", true },
+ { "vanderlest.de", true },
{ "vandermeer.frl", true },
{ "vanderrijt.nl", false },
{ "vanderziel.org", true },
@@ -41313,44 +45078,50 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vanessarivas.com", true },
{ "vaneurology.com", true },
{ "vangoghcoaching.nl", true },
+ { "vanhaos.com", true },
{ "vanhoudt-usedcars.be", true },
{ "vanhoutte.be", false },
{ "vanhove.biz", true },
{ "vanlaanen.com", false },
+ { "vanlent.net", true },
{ "vanmalland.com", true },
{ "vannaos.com", true },
{ "vannaos.net", true },
+ { "vanohaker.ru", true },
{ "vanouwerkerk.net", true },
+ { "vanspa.vn", true },
+ { "vanss.org", true },
{ "vantagepointpreneed.com", true },
{ "vante.me", false },
{ "vantien.com", true },
{ "vantru.is", true },
+ { "vanwa.ch", true },
{ "vanwunnik.com", true },
+ { "vape-hit.in", true },
{ "vapecrunch.com", true },
+ { "vapekingusa.com", true },
{ "vapensiero.co.uk", true },
{ "vaperolles.ch", true },
- { "vapesense.co.uk", true },
{ "vapesupplies.com.au", true },
{ "vapex.pl", true },
{ "vaphone.co", true },
{ "vapingdaily.com", true },
{ "vapor.cloud", false },
- { "vapordepot.jp", true },
{ "varaeventos.com", true },
{ "varalwamp.com", true },
{ "varcare.jp", true },
{ "varden.info", true },
{ "vareillefoundation.fr", true },
{ "vareillefoundation.org", true },
- { "variable.agency", false },
+ { "varghese.de", true },
{ "variag-group.ru", true },
{ "variag-montazh.ru", true },
{ "variando.fi", true },
- { "varicoseveinssolution.com", true },
{ "varimedoma.com", true },
{ "variomedia.de", true },
+ { "varizh.by", true },
+ { "varmepumpe-guide.dk", true },
{ "varonahairrestoration.com", true },
- { "varshasookt.com", true },
{ "varshathacker.com", true },
{ "varunagw.com", true },
{ "varunpriolkar.com", true },
@@ -41362,29 +45133,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "varztupasaulis.net", true },
{ "vasastansbygg.se", 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 },
+ { "vasp.group", false },
{ "vasports.com.au", true },
{ "vastenotaris.nl", true },
{ "vasyharan.com", true },
{ "vat-eu.com", true },
{ "vat.direct", true },
- { "vatelecom.dk", true },
- { "vati.pw", true },
{ "vats.im", true },
{ "vattulainen.fi", true },
{ "vauceri.hr", true },
- { "vaud-fleurs.ch", true },
{ "vaughanrisher.com", true },
{ "vault21.net", true },
{ "vault81.de", true },
{ "vaultproject.io", false },
{ "vaur.fr", true },
+ { "vave.men", true },
{ "vavel.com", true },
{ "vawebsite.co", true },
{ "vawlt.io", true },
@@ -41394,10 +45164,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vb.media", true },
{ "vbazile.com", true },
{ "vbcdn.com", true },
- { "vbh2o.com", true },
{ "vbql.me", true },
+ { "vbsoft.cz", true },
{ "vbwinery.com", true },
- { "vc.gg", true },
{ "vcam.org", true },
{ "vccmurah.net", true },
{ "vcelin-na-doliku.cz", true },
@@ -41405,7 +45174,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vcientertainment.com", false },
{ "vcmi.download", true },
{ "vcps.com", true },
- { "vcraftaudio.com", true },
{ "vcsjones.codes", true },
{ "vcsjones.com", true },
{ "vcti.cloud", true },
@@ -41414,37 +45182,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vdanker.net", true },
{ "vdbongard.com", true },
{ "vdcomp.cz", false },
- { "vdemuzere.be", true },
{ "vdesc.com", true },
+ { "vdio.com", true },
{ "vdisk24.de", true },
{ "vdlp.nl", true },
{ "vdmeij.com", true },
- { "vdzn.net", true },
+ { "vdownloader.com", true },
{ "vdzwan.net", true },
{ "ve.search.yahoo.com", false },
{ "ve3oat.ca", true },
{ "veblr.com", false },
{ "vec.ac.nz", true },
+ { "vecchiofornobarletta.it", true },
{ "vecerkaracing.cz", true },
{ "vecozo.nl", true },
{ "vectortrack.com.au", true },
{ "vectorwish.com", true },
{ "vedma-praktik.com", true },
{ "veg-leiden.nl", true },
+ { "vega-rumia.com.pl", true },
+ { "vega-rumia.pl", true },
{ "vegalitarian.org", true },
- { "veganforum.org", true },
+ { "vegan-pratique.fr", true },
{ "veganism.co.uk", true },
{ "veganism.com", true },
{ "veganmasterrace.com", true },
{ "vegasluxuryestates.com", true },
+ { "vegavio.com", true },
{ "vegekoszyk.pl", true },
{ "vegepa.com", true },
{ "vegetariantokyo.net", true },
{ "veggie-einhorn.de", true },
- { "veggie-treff.de", true },
{ "veggiesecret.com", true },
{ "vegguide.org", true },
{ "vegoresto.fr", true },
+ { "vehiclematsuk.com", true },
{ "veii.de", true },
{ "veil-framework.com", true },
{ "veilofsecurity.com", true },
@@ -41453,7 +45225,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "veke.fi", true },
{ "velassoltas.pt", true },
{ "velen.io", true },
- { "velocom.com.ar", true },
{ "veloroute.hamburg", true },
{ "venalytics.com", true },
{ "venclave.com", true },
@@ -41467,23 +45238,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "venenum.org", true },
{ "venev.name", true },
{ "venje.pro", true },
+ { "venmail.net", true },
+ { "venstar.com", true },
{ "ventajasdesventajas.com", true },
+ { "ventassantillan.com", true },
+ { "venten.ee", true },
{ "ventesprivees-fr.com", true },
+ { "venti-athens.gr", true },
{ "ventilateurs-plafond.com", true },
{ "ventizo.com", true },
{ "ventriloservers.biz", true },
{ "venturavwparts.com", true },
- { "venturebanners.co.uk", true },
+ { "venturedisplay.co.uk", true },
+ { "ventures.lgbt", true },
+ { "ventureslgbt.com", true },
{ "venturum.com", true },
{ "venturum.de", true },
{ "venturum.eu", true },
{ "venturum.net", true },
{ "venuedriver.com", true },
+ { "venzagroup.com", true },
+ { "veply.com", true },
{ "ver.ma", true },
{ "vera.bg", true },
- { "veracix.ca", true },
{ "veramagazine.jp", true },
{ "verasani.ch", true },
+ { "verasani.com", true },
{ "verberne.nu", true },
{ "verbier-lechable.com", true },
{ "verbierfestival.com", true },
@@ -41491,8 +45271,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "verdict.gg", true },
{ "verduccies.com", true },
{ "verein-kiekin.de", true },
- { "verein-zur-pflege-der-geselligkeit.de", true },
{ "vereinlandwege.de", true },
+ { "vereinscheck.de", true },
{ "verfassungsklage.at", true },
{ "verge.capital", true },
{ "vergelijksimonly.nl", true },
@@ -41501,9 +45281,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "verifalia.com", true },
{ "verifiedjoseph.com", true },
{ "verifiny.com", true },
+ { "verifygroup.com", true },
{ "verifyos.com", true },
{ "verifyyourip.com", true },
- { "verios.com.br", true },
+ { "veriny.tf", true },
{ "veritafineviolins.com", true },
{ "veritas-data.de", true },
{ "veritasinvestmentwealth.com", true },
@@ -41511,22 +45292,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "verizonguidelines.com", true },
{ "verkeersschoolrichardschut.nl", true },
{ "verkkopalvelin.fi", true },
- { "verliebt-in-bw.de", true },
- { "verliebt-in-niedersachsen.de", true },
+ { "verlagdrkovac.de", true },
+ { "verliefde-jongens.nl", true },
{ "vermeerdealers.com", true },
{ "vermiliontaxiservice.com", true },
- { "vermuetje.nl", true },
{ "vernaeve-usedcars.be", true },
+ { "vernis-marins.com", true },
{ "vernonatvclub.ca", true },
{ "vernonchan.com", true },
{ "vernonfigureskatingclub.com", true },
{ "vernonfilmsociety.bc.ca", true },
{ "vernonsecureselfstorage.ca", true },
{ "vernonspeedskatingclub.com", true },
+ { "vernontechnology.com", true },
{ "vernonwintercarnival.com", true },
{ "veronic.hu", true },
+ { "veronicaphotography.com", true },
{ "veronique-schmitz.de", true },
{ "verrerie-mousseline.org", true },
+ { "verry.org", true },
{ "vers.one", true },
{ "versagercloud.de", true },
{ "versalhost.com", true },
@@ -41536,15 +45320,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "verschurendegroot.nl", true },
{ "verses.space", true },
{ "versicherungen-werner-hahn.de", true },
- { "versicherungskontor.net", true },
- { "versolslapeyre.fr", true },
{ "verspai.de", true },
{ "verstraetenusedcars.be", true },
{ "vertebrates.com", true },
{ "verteilergetriebe.info", true },
{ "verticesedge.com", true },
{ "verticrew.com", true },
- { "vertigo.com.br", true },
+ { "vertigo-rec.com", true },
{ "vertigo.name", false },
{ "vertner.net", true },
{ "vertrieb-strategie.de", true },
@@ -41554,11 +45336,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "verwayen.com", true },
{ "very-kids.fr", true },
{ "veryapt.com", true },
+ { "verybin.com", true },
{ "verymelon.de", true },
{ "verymetal.nl", true },
{ "verzekeringencambier.be", true },
{ "verzekeringsacties.nl", true },
{ "verzick.com", true },
+ { "ves.vn.ua", true },
+ { "vesaviljanen.fi", true },
{ "vescudero.net", true },
{ "veslosada.com", true },
{ "vespacascadia.com", true },
@@ -41567,23 +45352,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vestum.ru", true },
{ "vet-planet.com", true },
{ "vetbits.com", false },
- { "veteransonline.us", true },
- { "vetergysurveys.com", true },
- { "veterinarian-hospital.com", true },
+ { "vetergysurveys.com", false },
+ { "veterinario.milano.it", 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 },
+ { "vetpraxis.de", true },
{ "vets.gov", true },
{ "veverusak.cz", true },
{ "vfdworld.com", true },
{ "vfmc.vic.gov.au", true },
{ "vfn-nrw.de", true },
- { "vgchat.us", true },
+ { "vgcheat.com", true },
{ "vgerak.com", true },
+ { "vglist.co", true },
{ "vgolos.zt.ua", true },
{ "vgorcum.com", true },
{ "vgropp.de", true },
@@ -41602,21 +45387,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "viajandoporelmundo.com.ar", true },
{ "viajaramsterdam.com", true },
{ "viaje-a-china.com", true },
+ { "vialibido.com.br", true },
{ "vialorran.com", true },
+ { "viantours.net", true },
{ "viaprinto.de", true },
{ "viasinc.com", false },
+ { "vibgyyor.com", true },
{ "vibrant-america.com", true },
{ "vibrato1-kutikomi.com", true },
{ "vicentee.com", true },
+ { "vicgenesis.me", true },
{ "vichiya.com", true },
{ "vician.cz", true },
+ { "vicianovi.cz", true },
{ "vicicode.com", true },
+ { "vicious.space", true },
{ "vicjuwelen-annelore.be", true },
{ "victora.com", true },
{ "victorblomberg.se", true },
{ "victorcanera.com", true },
- { "victordiaz.me", true },
- { "victoreriksson.ch", true },
+ { "victorcarwasher.com", true },
{ "victoreriksson.co", true },
{ "victoreriksson.com", true },
{ "victoreriksson.eu", true },
@@ -41627,6 +45417,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "victoreriksson.org", true },
{ "victoreriksson.se", true },
{ "victoreriksson.us", true },
+ { "victoreriksson.xyz", true },
{ "victorgbustamante.com", true },
{ "victorhawk.com", true },
{ "victoriaartist.ru", true },
@@ -41634,16 +45425,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "victorjacobs.com", true },
{ "victornet.de", true },
{ "victoroilpress.com", true },
+ { "victorpelletmill.com", true },
{ "victorricemill.com", true },
{ "victory.radio", true },
{ "victoryalliance.us", true },
{ "victorzambrano.com", true },
+ { "victusrp.gq", true },
{ "vicugna.nl", true },
{ "vicyu.com", true },
{ "vid-immobilien.de", true },
{ "vida-it.com", true },
{ "vidadu.com", true },
- { "vidarity.com", true },
{ "vidbooster.com", true },
{ "vide-greniers.org", false },
{ "videobrochuresmarketing.com", true },
@@ -41652,36 +45444,43 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "videokaufmann.at", true },
{ "videomail.io", true },
{ "videosdiversosdatv.com", true },
+ { "videoseriesbiblicas.com", true },
{ "videoseyredin.net", true },
{ "videosparatodos.com", true },
{ "videospornogratis.pt", true },
{ "videosqr.com", true },
+ { "videosxgays.com", true },
{ "videov.tk", true },
- { "vidister.de", true },
+ { "videownload.com", true },
{ "vidracariaespelhosbh.com.br", true },
+ { "vieaw.com", true },
{ "vieclam24h.vn", false },
{ "viekelis.lt", false },
{ "viemeister.com", true },
{ "viemontante.be", true },
+ { "viennadancecrew.at", true },
{ "vientos.coop", false },
{ "viepixel.at", true },
- { "vierdaagsehotel.nl", true },
+ { "vieref.eu", true },
{ "vierna.ga", true },
{ "vierpfeile.de", true },
{ "vierpluseins.wtf", true },
{ "vietnamese.dating", true },
- { "vietnamguide.co.kr", true },
- { "vietnamhost.vn", false },
{ "vietnamluxurytravelagency.com", true },
{ "vietnamphotoblog.com", true },
{ "vietnamwomenveterans.org", true },
- { "vietplan.vn", true },
+ { "view-page-source.com", true },
{ "viewbook.com", true },
{ "viewey.com", true },
{ "viewing.nyc", true },
+ { "vifsoft.com", true },
{ "vigenebio.com", true },
+ { "vigilanciatotal.com", true },
+ { "vigilanciaysalud.com", true },
{ "vigilantnow.com", true },
+ { "vigira.com.ar", true },
{ "vigliano.ovh", true },
+ { "vignaud.fr", true },
{ "vignoblesdeletat.ch", true },
{ "vigo-krankenversicherung.de", true },
{ "vigo-tarife.de", true },
@@ -41701,22 +45500,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vikaviktoria.com", true },
{ "viking-style.ru", true },
{ "vikings.net", true },
+ { "vikramkulkarni.com", true },
{ "viktorbarzin.me", true },
{ "viktorprevaric.eu", true },
+ { "viku.fi", true },
{ "vila-eden.cz", true },
- { "vilaydin.com", true },
{ "viljatori.fi", true },
{ "villa-eden.cz", true },
{ "villa-gockel.de", true },
{ "villa-romantica-zillertal.at", true },
{ "villaella.com", true },
{ "villafiore.com.br", true },
+ { "villagecardshop.co.uk", true },
+ { "villagecenterpediatrics.com", true },
{ "villageunique.com.br", true },
{ "villagockel.de", true },
{ "villamariaamalfi.it", true },
{ "villasfinistere.fr", true },
{ "villasforsale-bali.com", true },
{ "villasoasissanur.com", true },
+ { "ville-aime.fr", true },
{ "villehardouin.fr", true },
{ "villek.fi", true },
{ "villekaaria.eu", true },
@@ -41732,22 +45535,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vinagro.sk", true },
{ "vinahost.vn", true },
{ "vinarstvimodryhrozen.cz", true },
+ { "vincent-haupert.de", true },
{ "vincentcox.com", false },
{ "vincentpancol.com", true },
{ "vincentswordpress.nl", true },
{ "vincible.space", true },
- { "vinciconps4.it", true },
+ { "vinciladislessia.it", true },
{ "vincitraining.com", true },
{ "vindipoker.dk", true },
{ "vinetech.co.nz", true },
{ "vingt.me", true },
- { "vinilosdecorativos.net", true },
+ { "vinifriuli.sk", true },
+ { "vinigas.com", true },
{ "vinistas.com", true },
+ { "vinkt.eu", true },
{ "vinner.com.au", true },
{ "vinnyandchristina.com", true },
{ "vinnyvidivici.com", true },
+ { "vinodoc.cz", true },
{ "vinokurov.tk", true },
{ "vinolli.de", true },
+ { "vinosalmundo.com", true },
+ { "vinoshipper.com", true },
{ "vinovum.net", true },
{ "vinsation.com", true },
{ "vinsetchampagne.fr", true },
@@ -41758,9 +45567,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vintageportgifts.co.uk", true },
{ "vintagesouthernpicks.com", true },
{ "vintagetrailerbuyers.com", true },
- { "vintazh.net", true },
{ "vinticom.ch", true },
- { "vinyculture.com", true },
{ "vinzite.com", true },
{ "violauotila.fi", true },
{ "violin4fun.nl", true },
@@ -41768,23 +45575,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vionicshoes.co.uk", true },
{ "vionicshoes.com", true },
{ "vip8522.com", true },
+ { "vip918.net", true },
+ { "vipf88.com", true },
+ { "vipfitter.com", true },
{ "vipllcnj.com", true },
+ { "vips.pl", true },
{ "viptamin.eu", true },
{ "viptamol.com", true },
- { "viqo.pl", true },
+ { "vipw66.com", true },
{ "vir-tec.eu", false },
{ "vir2.me", true },
- { "viral32111.com", true },
{ "viralpop.it", true },
- { "viralsouls.in", true },
{ "virgopolymer.com", true },
{ "viridis-milites.cz", true },
{ "virtit.fr", true },
- { "virtual.hk", true },
- { "virtualcloud.ddns.net", true },
+ { "virtualcitehuallaga.com", true },
{ "virtualcommodities.org", true },
{ "virtuality4d.com", true },
- { "virtualizy.de", true },
{ "virtuallifestyle.nl", true },
{ "virtualmt2.pl", true },
{ "virtualsanity.com", true },
@@ -41796,11 +45603,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "virtusaero.com", true },
{ "virus.pm", true },
{ "virvum.ch", true },
- { "visadaifu.com", true },
- { "visaexpert.co.za", true },
{ "visalist.io", true },
{ "visalogy.com", true },
- { "visaop.com", true },
{ "visapourailleurs.fr", true },
{ "visasofoz.com", true },
{ "visaya.com.co", true },
@@ -41808,10 +45612,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "viscopic.com", true },
{ "viseum.co.uk", true },
{ "vishwashantiyoga.com", true },
+ { "visibleone.com", true },
{ "visibox.nl", true },
{ "visikom.de", true },
- { "visionarymedia.nl", true },
- { "visiondirectionaldrilling.com", true },
+ { "visiondetails.ru", true },
+ { "visionduweb.fr", true },
{ "visionexpress.com", true },
{ "visionexpress.ie", true },
{ "visionexpresscareers.com", true },
@@ -41823,6 +45628,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "visitcambridgeshirefens.org", true },
{ "visitkangaroovalley.com.au", true },
{ "visitmaine.com", true },
+ { "visitorguard.com", true },
{ "visor.ph", true },
{ "vista-research-group.com", true },
{ "vistaalmar.es", true },
@@ -41833,29 +45639,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vistodeturista.com.br", true },
{ "visual-cockpit.com", true },
{ "visual-concept.net", true },
- { "visualdrone.co", true },
- { "visualgrafix.com.mx", true },
+ { "visualgnome.com", true },
{ "visualideas.org", true },
{ "visualizing.info", true },
{ "visualmasters.nl", true },
{ "visudira.com", true },
{ "vitahook.pw", true },
- { "vital-tel.co.uk", true },
{ "vitalastin-sport.de", true },
{ "vitalia.cz", true },
{ "vitalismaatjes.nl", true },
- { "vitalityscience.com", true },
{ "vitalthrills.com", true },
{ "vitalware.com", true },
{ "vitalyzhukphoto.com", true },
{ "vitamina.cl", true },
- { "vitamina.com", true },
{ "vitaminler.com", true },
{ "vitastic.nl", true },
- { "vitavie.nl", true },
{ "viteoscrm.ch", true },
{ "vitkausk.as", true },
- { "vitkutny.cz", true },
+ { "vitlproducts.com", true },
{ "vitoye.com", true },
{ "vitpeyr.com", true },
{ "vitra-showrooms.co.uk", true },
@@ -41863,29 +45664,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vitrado.de", true },
{ "vitsoft.by", true },
{ "viva2000.com", true },
+ { "vivaio.roma.it", true },
{ "vivaldi-fr.com", true },
{ "vivaldi.club", true },
{ "vivaldi.com", true },
{ "vivanosports.com.br", false },
{ "vivatv.com.tw", true },
{ "vive.link", true },
+ { "vivemedialab.com", true },
{ "vivendi.de", true },
{ "viveport.com", true },
+ { "vivesaludableconomnilife.com", true },
{ "vivianmaier.cn", true },
{ "vivid-academy.com", true },
{ "vividinflatables.co.uk", true },
{ "vividlumen.com", true },
- { "viviendy.com", true },
- { "viviennevandenbos.nl", true },
{ "vivirenelmundo.com", true },
{ "vivo.sx", true },
+ { "vivo.vn", true },
{ "vivoitaliankitchen.com", true },
+ { "vivoregularizafacil.com.br", false },
{ "vivy.com", true },
{ "vixrapedia.org", true },
{ "viyf.org", true },
{ "vize.ai", false },
+ { "vizierdata.ca", true },
{ "vizija-nepremicnine.si", true },
- { "vizional.com", true },
+ { "vizionnetwork.co.uk", true },
{ "vizzboard.com", true },
{ "vjeff.com", true },
{ "vjeff.net", true },
@@ -41893,17 +45698,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vjirovsky.cz", false },
{ "vjpatel.me", true },
{ "vk-k.com", true },
- { "vkb-remont.ru", true },
{ "vkennke.org", true },
{ "vkino.com", false },
- { "vkirichenko.name", true },
{ "vkox.com", true },
{ "vksportphoto.com", true },
{ "vladimiroff.org", true },
{ "vladislavstoyanov.com", true },
+ { "vladsfads.com", true },
{ "vlakem.net", true },
- { "vlakjebak.nl", true },
- { "vlastimilburian.cz", true },
{ "vleesbesteld.nl", true },
{ "vleij.com", true },
{ "vleij.se", true },
@@ -41911,9 +45713,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vliegensvlug.services", true },
{ "vlndc.org", true },
{ "vloeck.de", true },
- { "vlora.city", true },
{ "vlovgr.se", true },
- { "vlsm.se", true },
{ "vlvvl.com", true },
{ "vm-0.com", true },
{ "vm-co.ch", true },
@@ -41926,20 +45726,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vmoe.info", true },
{ "vmug.pl", true },
{ "vn.search.yahoo.com", false },
- { "vncg.org", true },
+ { "vnctdj.fr", true },
{ "vnd.cloud", true },
+ { "vndb.org", true },
{ "vnpay.vn", true },
+ { "vns1780.com", true },
+ { "vns3780.com", true },
{ "vnvisa.center", true },
{ "vnvisa.ru", true },
{ "vocaloid.my", true },
{ "vocalviews.com", true },
+ { "voceempaz.com", true },
{ "vocescruzadasbcs.mx", true },
{ "vochuys.nl", true },
{ "vocus.aero", true },
{ "vocustest.aero", true },
+ { "voda.org.ru", true },
{ "vodb.me", true },
{ "vodb.org", true },
{ "vodicak.info", true },
+ { "vofy.cz", true },
{ "vogelbus.ch", true },
{ "vogler.name", true },
{ "vogue.cz", true },
@@ -41948,22 +45754,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "void-zero.com", true },
{ "voidcore.org", true },
{ "voidma.in", true },
+ { "voidnya.com", true },
{ "voidpay.com", true },
{ "voidptr.eu", true },
+ { "voidshift.com", true },
{ "voidx.top", true },
- { "voidzehn.com", true },
{ "voipdigit.nl", true },
{ "voipsun.com", true },
+ { "vojenshandicap.dk", true },
{ "vojtechpavelka.cz", true },
{ "vokativy.cz", true },
{ "vokeapp.com", true },
- { "vokurka.net", true },
- { "volcanconcretos.com", true },
- { "volcano-kazan.ru", true },
- { "volcano-spb.ru", true },
- { "volcano-vts.ru", true },
- { "volcano24.ru", true },
- { "volcanov.ru", true },
{ "volga.us", true },
{ "volgavibes.ru", false },
{ "voliere-info.nl", false },
@@ -41974,25 +45775,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vollans.id.au", true },
{ "voloevents.com", true },
{ "volqanic.com", true },
- { "volta.io", true },
- { "voltahurt.pl", false },
+ { "voltahurt.pl", true },
{ "volto.io", true },
+ { "volubilisplus.fr", true },
{ "volunteeringmatters.org.uk", true },
{ "vomitb.in", true },
{ "vonauw.com", true },
{ "vonborstelboerner.de", true },
+ { "vonimus.com", true },
+ { "vonitsanet.gr", true },
{ "vonniehudson.com", true },
{ "vonski.pl", true },
{ "voodoochile.at", true },
{ "voolik.pw", true },
+ { "voordeuren-opmaat.nl", true },
{ "voorjou.com", true },
{ "vop.li", true },
+ { "vorbrodt.blog", true },
{ "vorlage-musterbriefe.de", true },
{ "vorlage-mustervertrag.de", true },
{ "vorlagen-geburtstagsgruesse.de", true },
{ "vorlicek.de", true },
- { "vorm2.com", true },
{ "vorodevops.com", true },
+ { "vos-fleurs.ch", true },
{ "vos-systems.com", true },
{ "vos-systems.es", true },
{ "vos-systems.eu", true },
@@ -42008,9 +45813,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vostronet.com", true },
{ "voter-info.uk", true },
{ "votesandymurman.com", true },
- { "votocek.cz", true },
- { "votockova.cz", true },
{ "votoot.com", true },
+ { "votre-hotel.com", true },
{ "vouchinsurance.sg", true },
{ "vovladikavkaze.ru", true },
{ "voxfilmeonline.net", true },
@@ -42024,56 +45828,67 @@ 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 },
- { "vpsao.org", true },
{ "vpsboard.com", true },
{ "vpsdream.dk", true },
- { "vpsou.com", false },
+ { "vpsou.com", true },
{ "vpsport.ch", true },
{ "vpsproj.dynu.net", true },
+ { "vpsvz.com", true },
{ "vpsvz.net", true },
+ { "vqcymsa.com", true },
+ { "vqeg.org", true },
+ { "vractive.pl", true },
{ "vragenvanproust.nl", true },
{ "vrandopulo.ru", true },
{ "vrcholovka.cz", true },
+ { "vrcinvestigations.com", true },
{ "vrcprofile.com", true },
{ "vreaulafacultate.ro", true },
{ "vreeman.com", true },
{ "vretmaskin.se", true },
{ "vriesdonkow.be", true },
+ { "vrifox.cc", true },
{ "vrij-links.nl", true },
{ "vrijgezellen-feest.com", true },
{ "vrijgezellenfeestzwolle.com", true },
{ "vrjetpackgame.com", true },
+ { "vrlaid.com", false },
{ "vroedvrouwella.be", true },
{ "vroyaltours.com", true },
{ "vrsystem.com.br", true },
{ "vrtak-cz.net", true },
{ "vscale.io", true },
+ { "vscodownloader.net", true },
{ "vsd.sk", true },
{ "vsean.net", true },
- { "vseomedia.com", true },
+ { "vseomedia.com", false },
{ "vserver-preis-vergleich.de", true },
{ "vsesrazu-raiffeisen.ru", true },
{ "vsestoki.com", true },
{ "vsl-defi.ch", true },
{ "vsl.de", true },
+ { "vsoy.co.th", true },
+ { "vspin.cz", true },
{ "vssnederland.nl", true },
{ "vstehn.ru", true },
- { "vsund.de", true },
- { "vsx.ch", true },
{ "vtaxi.se", true },
{ "vtipe-vylez.cz", true },
{ "vtt-hautsdefrance.fr", true },
{ "vtuber.art", true },
+ { "vtuber.land", true },
+ { "vtul.io", true },
{ "vuakhuyenmai.vn", true },
- { "vuatruyen.com", true },
+ { "vuasinhly.com", true },
{ "vubey.yt", true },
{ "vuilelakens.be", true },
+ { "vuldb.com", true },
{ "vuljespaarpot.nl", true },
{ "vullriede-multimedia.de", true },
{ "vulndetect.com", true },
@@ -42083,7 +45898,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vulnscan.org", true },
{ "vulpine.club", true },
{ "vulyk-medu.com.ua", true },
- { "vumetric.com", true },
{ "vuojolahti.com", true },
{ "vuojolahti.fi", true },
{ "vuotila.eu", true },
@@ -42091,46 +45905,60 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vux.li", true },
{ "vuzi.fr", true },
{ "vv1234.cn", true },
+ { "vv5197.co", true },
+ { "vv6729.com", true },
+ { "vv6957.co", true },
+ { "vv9297.co", true },
+ { "vv9397.com", true },
+ { "vv9721.com", true },
+ { "vv9728.co", true },
{ "vvactivia.nl", true },
+ { "vvave.net", true },
{ "vvdbronckhorst.nl", true },
+ { "vvild.at", true },
{ "vvoip.org.uk", true },
- { "vvw-8522.com", true },
{ "vvzero.cf", true },
{ "vvzero.com", true },
{ "vvzero.me", true },
{ "vwbusje.com", true },
{ "vwfsrentacar.co.uk", true },
- { "vwhcare.com", true },
+ { "vwh-kunden.de", true },
{ "vwittich.de", true },
{ "vwo.com", true },
{ "vwsoft.de", true },
+ { "vwt-event.nl", true },
{ "vx.hn", true },
- { "vxstream-sandbox.com", true },
- { "vxz.me", true },
{ "vybeministry.org", true },
{ "vyber-odhadce.cz", true },
{ "vyberodhadce.cz", true },
+ { "vygeja.lt", true },
{ "vyplnto.cz", true },
{ "vysko.cz", true },
{ "vyskocil.eu", true },
{ "vytea.com", true },
{ "vyvygen.org", true },
- { "vzce.cn", true },
{ "vzis.org", true },
- { "vztekloun.cz", true },
+ { "w-p-k.de", true },
{ "w-spotlight.appspot.com", true },
{ "w-w-auto.de", true },
{ "w.wiki", true },
{ "w1n73r.de", true },
+ { "w2design.eu", true },
{ "w2n.me", true },
{ "w3ctag.org", true },
{ "w3n14izy.ml", true },
{ "w4.no", true },
{ "w4eg.de", true },
{ "w4nvu.org", true },
- { "w50.co.uk", true },
+ { "w4solutions.de", true },
+ { "w50.co.uk", false },
+ { "w5197.co", true },
{ "w5gfe.org", true },
+ { "w6729.co", true },
+ { "w6729.com", true },
+ { "w6957.co", true },
{ "w7k.de", true },
+ { "w80010.com", true },
{ "w889-line.com", true },
{ "w889-line.net", true },
{ "w889889.com", true },
@@ -42139,8 +45967,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "w88info.win", true },
{ "w88xinxi.com", true },
{ "w8less.nl", true },
+ { "w9297.co", true },
+ { "w9397.com", true },
{ "w95.pw", true },
+ { "w9721.com", true },
+ { "w9728.co", true },
{ "wa-stromerzeuger.de", false },
+ { "wa.io", true },
{ "wa.me", true },
{ "waaw.tv", true },
{ "wabatam.com", true },
@@ -42150,16 +45983,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wadsworth.gallery", true },
{ "wadvisor.com", true },
{ "waelisch.de", true },
+ { "waelti.xxx", true },
{ "waf.ninja", true },
{ "waf.sexy", true },
{ "wafelland.be", true },
{ "waffenversand-klausing.de", true },
{ "waffle.at", false },
{ "wafuton.com", true },
- { "waggs.link", true },
+ { "wageverify.com", true },
{ "wagyu-bader.de", true },
{ "wahidhasan.com", true },
- { "wahlman.org", true },
{ "wahrnehmungswelt.de", true },
{ "wahrnehmungswelten.de", true },
{ "waidfrau.de", true },
@@ -42168,7 +46001,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "waigel.org", true },
{ "waikatowebdesigners.com", true },
{ "wail.net", true },
- { "wait.jp", true },
{ "waits.io", true },
{ "wajtc.com", true },
{ "wak.io", true },
@@ -42181,11 +46013,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "waldgourmet.de", true },
{ "waldvogel.family", true },
{ "walent.in", true },
- { "walentin.co", true },
- { "waligorska.pl", true },
{ "walk.onl", true },
{ "walkera-fans.de", true },
{ "walkhighlandsandislands.com", true },
+ { "walkhisway.co.za", true },
{ "walkingrehabilitation.com", true },
{ "walksedona.com", true },
{ "walksfourpaws.co.uk", true },
@@ -42195,7 +46026,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wallacehigh.org.uk", true },
{ "wallet.google.com", true },
{ "wallet.pp.ua", true },
- { "wallethub.com", false },
+ { "walletconnector.cz", true },
{ "walletnames.com", true },
{ "wallinger-online.at", true },
{ "wallingford.cc", true },
@@ -42206,6 +46037,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "walltime.info", true },
{ "wallumai.com.au", true },
{ "wallysmasterblaster.com.au", true },
+ { "walma.re", true },
{ "walnutgaming.com", true },
{ "walnutis.net", true },
{ "walpu.ski", true },
@@ -42213,6 +46045,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "walravensax.nl", true },
{ "walruses.org", true },
{ "walshbanks.com", true },
+ { "waltellis.com", true },
{ "walter.lc", true },
{ "waltervictor.com", true },
{ "waltzmanplasticsurgery.com", true },
@@ -42226,29 +46059,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wanderzoom.co", true },
{ "wandystan.eu", true },
{ "wane.co", true },
+ { "wang.by", true },
{ "wangbangyu.cf", true },
{ "wangbangyu.ga", true },
{ "wangbangyu.gq", true },
{ "wangbangyu.ml", true },
{ "wangbangyu.tk", true },
- { "wangejiba.com", true },
{ "wangjun.me", true },
{ "wangqiliang.cn", true },
{ "wangqiliang.com", true },
- { "wangqiliang.org", true },
- { "wangql.net", true },
+ { "wangqr.org", true },
{ "wangqr.tk", true },
{ "wangriwu.com", true },
{ "wangtanzhang.com", true },
- { "wangwenbo.cn", false },
{ "wangwill.me", true },
- { "wangyubao.cn", true },
{ "wangyue.blog", true },
- { "wangzuan168.cc", true },
+ { "wangzuan168.cc", false },
{ "wanlieyan.com", true },
+ { "wanmen.org", true },
{ "wannaridecostarica.com", true },
{ "wanquanojbk.com", false },
+ { "wantocode.com", true },
{ "wanybug.cf", true },
+ { "wanybug.cn", true },
{ "wanybug.com", true },
{ "wanybug.ga", true },
{ "wanybug.gq", true },
@@ -42263,10 +46096,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wapking.co", true },
{ "wapoolandspa.com", true },
{ "wardow.com", true },
+ { "wardslager.com", true },
{ "warebouncycastles.co.uk", true },
{ "warekit.io", true },
{ "warenits.at", false },
{ "warenmedia.com", true },
+ { "warezoom.com", true },
{ "warfield.org.uk", true },
{ "wargameexclusive.com", true },
{ "warhaggis.com", true },
@@ -42275,12 +46110,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "warofelements.de", true },
{ "warp-radio.com", true },
{ "warp-radio.net", true },
- { "warp-radio.tv", true },
{ "warr.ath.cx", true },
{ "warringtonkidsbouncycastles.co.uk", true },
{ "warschild.org", true },
{ "warsh.moe", true },
- { "warsonco.com", true },
{ "wartorngalaxy.com", true },
{ "wasabiwallet.co", true },
{ "wasabiwallet.io", true },
@@ -42289,10 +46122,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wasd.ms", true },
{ "wasema.com", true },
{ "wasfestes.de", true },
- { "wasfuereintheater.com", true },
- { "wasgehtheute.in", true },
{ "washingtonregisteredagent.io", true },
{ "washingtonviews.com", true },
+ { "washoedems.org", true },
{ "wasi-net.de", true },
{ "wasielewski.com.de", true },
{ "wasil.org", true },
@@ -42300,37 +46132,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wasserburg.dk", true },
{ "wasserspucker.de", true },
{ "wassibauer.com", true },
+ { "wasteman.com", true },
{ "wastrel.ch", true },
+ { "watboeithet.nl", true },
{ "watch-wiki.org", true },
+ { "watchcow.org", true },
{ "watchface.watch", true },
{ "watchfreeonline.co.uk", true },
- { "watchinventory.com", true },
- { "watchonline.al", true },
{ "watchparts-and-tools-okayama.co.jp", true },
{ "watchstyle.com", true },
{ "water-addict.com", true },
{ "waterbrook.com.au", true },
{ "waterdogsmokedfish.com", true },
{ "waterdrop.tk", true },
+ { "waterheaterdallastx.com", true },
{ "waterleeftinbeek.nl", true },
{ "watermonitor.gov", true },
{ "wateroutlook.com", true },
+ { "waterproofingahmedabad.com", true },
{ "watersb.org", true },
{ "waterschaplimburg.nl", true },
+ { "waterseal.in", true },
{ "waterside-residents.org.uk", true },
{ "waterslide-austria.at", true },
- { "watertrails.io", true },
+ { "watervillewomenscare.com", true },
{ "waterworkscondos.com", true },
{ "watfordjc.uk", true },
{ "watoo.tech", true },
- { "watsonwork.me", true },
{ "wattmaedchen.de", true },
{ "watvindtnederland.com", true },
{ "wav-productions.com", true },
{ "wave.is", true },
{ "wave.red", true },
{ "wavengine.com", true },
- { "waverlysecuritycameras.com", true },
{ "wavesboardshop.com", true },
{ "waveum.com", true },
{ "wawak.pl", true },
@@ -42338,16 +46172,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "waycraze.com", true },
{ "wayfair.de", true },
{ "wayfairertravel.com", true },
- { "waylandss.com", true },
{ "waynefranklin.com", true },
{ "wayohoo.com", true },
{ "wayohoo.net", true },
{ "waytt.cf", true },
- { "waze.com", true },
+ { "wb2288.cc", true },
{ "wb256.com", true },
{ "wba.or.at", true },
{ "wbci.us", false },
{ "wbg-vs.de", true },
+ { "wbinnssmith.com", true },
{ "wblautomotive.com", true },
{ "wblinks.com", true },
{ "wbt-solutions.ch", true },
@@ -42356,14 +46190,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wbuntu.com", true },
{ "wbvb.nl", true },
{ "wbx.support", true },
- { "wby.gd", true },
{ "wby.tw", true },
- { "wc1234.cn", true },
{ "wcbook.ru", false },
{ "wcn.life", false },
{ "wcosmeticsurgery.com", true },
{ "wcrca.org", true },
- { "wcsi.com", true },
{ "wcwcg.net", true },
{ "wdbflowersevents.co.uk", true },
{ "wdbgroup.co.uk", true },
@@ -42385,19 +46216,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wearebfi.co.uk", true },
{ "wearegenki.com", true },
{ "wearepapermill.co", true },
- { "wearesouthafricans.com", true },
+ { "wearepapermill.com", true },
{ "wearvr.com", true },
- { "weaspireusa.com", true },
{ "weather-schools.com", true },
{ "weather.gov", true },
{ "weathermyway.rocks", true },
- { "web-apps.tech", true },
+ { "weavers.space", true },
{ "web-art.cz", true },
{ "web-design.co.il", true },
- { "web-dl.cc", true },
{ "web-fox23.ru", true },
{ "web-hotel.gr", true },
- { "web-jive.com", true },
{ "web-kouza.com", true },
{ "web-mail.info", true },
{ "web-odyssey.com", true },
@@ -42420,14 +46248,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webais.ru", true },
{ "webalert.cz", true },
{ "webandmore.de", true },
- { "webappky.cz", true },
+ { "webandsun.com", true },
{ "webartex.ru", true },
{ "webbiz.co.uk", true },
- { "webbson.net", false },
{ "webcamtoy.com", true },
{ "webcasinos.com", true },
{ "webcatchers.nl", false },
{ "webcatechism.com", false },
+ { "webcheck.pt", true },
{ "webclimbers.ch", true },
{ "webcollect.org.uk", true },
{ "webcontentspinning.com", true },
@@ -42436,17 +46264,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webcurtaincall.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 },
- { "webdev-cw.me", true },
+ { "webdev.solutions", true },
{ "webdevops.io", true },
{ "webdl.org", true },
{ "webduck.nl", false },
{ "webeast.eu", true },
+ { "webeau.com", true },
{ "webergrillrestaurant.com", true },
+ { "webetnet.fr", true },
{ "webev.ru", true },
{ "webexample.win", true },
{ "webexp.biz", true },
@@ -42456,18 +46286,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
+ { "webgeneric.com", true },
+ { "webgeneric.in", true },
+ { "webgeneric.xyz", true },
{ "webharvest.gov", true },
+ { "webhelyesarcu.hu", true },
+ { "webhoffmann.de", true },
{ "webhooks.stream", true },
{ "webhost.guide", true },
- { "webhostingzzp.nl", false },
- { "webhostplan.info", true },
+ { "webhostingshop.ca", true },
+ { "webhostingzzp.nl", true },
{ "webhotelli.website", true },
+ { "webhotelsoversigt.dk", true },
{ "webia.in.th", true },
{ "webies.ro", true },
+ { "webini.co", true },
{ "webinnovation.ie", true },
{ "webionite.com", true },
{ "webjobposting.com", true },
@@ -42477,6 +46312,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "weblate.com", true },
{ "weblate.cz", true },
{ "weblate.org", true },
+ { "webleedpixels.com", true },
+ { "weblegion.de", true },
{ "webliberty.ru", true },
{ "webline.ch", true },
{ "weblogzwolle.nl", true },
@@ -42486,16 +46323,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webmail.schokokeks.org", false },
{ "webmail.xalqbank.az", true },
{ "webmandesign.eu", true },
+ { "webmaster-infographiste-lyon.fr", true },
{ "webmediaprint.at", true },
+ { "webmediums.com", true },
{ "webmedpharmacy.co.uk", true },
{ "webmetering.at", true },
{ "webministeriet.net", true },
{ "webmotelli.fi", true },
- { "webmr.de", true },
{ "webnames.ca", true },
{ "webnetforce.net", true },
{ "webnexty.com", true },
- { "webogram.org", false },
{ "webperformance.io", true },
{ "webpinoytambayan.net", true },
{ "webpinoytv.info", true },
@@ -42505,11 +46342,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webpostingreviews.com", true },
{ "webproject.rocks", true },
{ "webpubsub.com", true },
- { "webpulser.com", true },
{ "webqualitat.com.br", true },
+ { "webrabbit.at", true },
{ "webrebels.org", false },
{ "webrentcars.com", true },
{ "webreport.fr", true },
+ { "websa.nl", true },
{ "webscale.nl", false },
{ "websec.nl", true },
{ "websecurity.is", true },
@@ -42518,19 +46356,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "websenat.de", true },
{ "websharks.org", true },
{ "website-engineering.co.za", true },
- { "websiteadvice.com.au", true },
+ { "website-traffic.shop", true },
+ { "websiteadvice.com.au", false },
{ "websiteboost.nl", true },
- { "websiteforlease.ca", true },
{ "websiteout.ca", true },
{ "websiteout.net", true },
{ "websites4business.ca", true },
{ "websitesdallas.com", true },
{ "websiteservice.pro", true },
+ { "websize.me", true },
{ "webslake.com", true },
{ "websmartmedia.co.uk", true },
{ "websouthdesign.com", true },
{ "webspiral.jp", true },
{ "webspire.tech", true },
+ { "webstaff.xyz", true },
{ "webstart.nl", true },
{ "webstellung.com", true },
{ "webstijlen.nl", true },
@@ -42542,7 +46382,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webtalis.nl", true },
{ "webtasarim.pw", true },
{ "webtheapp.com", true },
- { "webtobesocial.de", true },
+ { "webtoro.com", true },
{ "webtorrent.io", true },
{ "webtrh.cz", true },
{ "webtropia.com", false },
@@ -42557,17 +46397,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webxr.today", true },
{ "webyazilimankara.com", true },
{ "wechatify.com", true },
+ { "wecho.net", true },
{ "weck.alsace", true },
{ "wecleanbins.com", true },
{ "wecobble.com", true },
+ { "wed.pw", true },
{ "weddingdays.tv", true },
{ "weddingenvelopes.co.uk", false },
- { "weddingofficiantwilmington.com", true },
{ "weddingsbynoon.co.uk", true },
{ "weddywood.ru", false },
- { "wedestock.com", true },
{ "wedg.uk", true },
{ "wedos.com", true },
+ { "wedovapes.co.uk", true },
{ "wedplay.host", true },
{ "weebl.me", true },
{ "weeblr.com", true },
@@ -42576,10 +46417,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "weedupdate.com", true },
{ "weedworthy.com", true },
{ "weedypedia.de", true },
+ { "weeka.cc", true },
{ "weekdone.com", true },
{ "weekendinitaly.com", true },
{ "weekly-residence.com", true },
- { "weeklycenter.co.jp", true },
{ "weeknummers.be", true },
{ "weeknummers.nl", true },
{ "weekvandemediawijsheid.nl", true },
@@ -42592,7 +46433,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "weerstatistieken.nl", true },
{ "wefinanceinc.com", true },
{ "wefitboilers.com", true },
- { "weforgood.org.tw", true },
{ "wegerecht.org", true },
{ "wegonnagetsued.org", true },
{ "wegotcookies.com", true },
@@ -42617,31 +46457,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "weingaertner-it.de", true },
{ "weinundsein.com", true },
{ "weirdesigns.com", true },
+ { "weissborn.me", true },
{ "weisse-liste.de", true },
{ "weissman.agency", true },
{ "weiterbildung-vdz.de", true },
{ "weitergedacht.eu", true },
{ "weizenspr.eu", true },
+ { "weknowhowtodoit.com", true },
{ "welcome-werkstatt.com", true },
{ "welcome-werkstatt.de", true },
{ "welcome26.ch", true },
{ "welcomescuba.com", true },
{ "welcometoscottsdalehomes.com", true },
{ "weld.io", true },
- { "weldwp.com", true },
+ { "well-around-the-world.com", true },
{ "wella-download-center.de", true },
{ "wellacapability.com", true },
{ "wellbeing360.com.au", true },
{ "wellcom.co.il", true },
{ "wellensteyn.ru", true },
{ "weller.pm", true },
+ { "wellgreece.com", true },
{ "wellist.com", true },
{ "wellness-bonbon.de", true },
{ "wellness-gutschein.de", true },
{ "wellnesscheck.net", true },
{ "wellnessever.com", true },
{ "wellsolveit.com", false },
+ { "wellspringsga.com", true },
+ { "welltycoon.com", true },
{ "welovecatsandkittens.com", true },
+ { "welovejudo.com", true },
{ "welovemaira.com", true },
{ "welshccf.org.uk", true },
{ "welteneroberer.de", true },
@@ -42651,7 +46497,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "weltverschwoerung.de", true },
{ "welzijnkoggenland.nl", true },
{ "wem.hr", false },
- { "wemakebookkeepingeasy.com", true },
{ "wemakemenus.com", true },
{ "wemakeonlinereviews.com", true },
{ "wemovemountains.co.uk", true },
@@ -42687,12 +46532,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "werkaanonderwijs.nl", true },
{ "werkemotion.com", true },
{ "werkenbijdfzs.nl", true },
+ { "werkenbijsherpa.nl", true },
{ "werkenbijwierda.nl", true },
+ { "werkeninvledder.nl", true },
+ { "werkeninwesterveld.nl", true },
{ "werkenvoorphiladelphia.nl", true },
{ "werkgroepderdewereld.nl", true },
{ "werkgroeppaleisparkhetloo.nl", true },
{ "werkinc.de", true },
- { "werkinholland.com", true },
{ "werkkrew.xyz", true },
{ "werkslimreisslim.nl", true },
{ "werkstattkinder.de", true },
@@ -42702,7 +46549,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "werner-ema.de", true },
{ "werpo.com.ar", true },
{ "wertheimer-burgrock.de", true },
- { "wertpapiertreuhand.de", true },
+ { "wervingenselectieamsterdam.nl", true },
{ "werwolf-live.de", true },
{ "wesecom.com", true },
{ "wesell.asia", true },
@@ -42711,7 +46558,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wesleywarnell.com", true },
{ "wesoco.de", true },
{ "wesreportportal.com", true },
- { "wessner.co", true },
{ "wessner.org", true },
{ "west-contemporary.com", true },
{ "west-trans.com.au", true },
@@ -42721,6 +46567,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "westcentenaryscouts.org.au", true },
{ "westcentralaor.org", true },
{ "westcoastcastles.com", true },
+ { "westcoastheatingair.com", true },
{ "westcoastmarineadvisor.com", true },
{ "westcode.de", true },
{ "westcommunitycu.org", true },
@@ -42730,6 +46577,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "westernpadermatologist.com", true },
{ "westeros.hu", true },
{ "westhillselectrical.com", true },
+ { "westlahair.com", true },
{ "westlakevillageelectric.com", true },
{ "westlakevillageelectrical.com", true },
{ "westlakevillageelectrician.com", true },
@@ -42737,20 +46585,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "westlakevillagelandscapelighting.com", true },
{ "westlakevillagelighting.com", true },
{ "westlakevillageoutdoorlighting.com", true },
- { "westlights.net", true },
+ { "westlife.cn", true },
{ "westlinntowncar.com", true },
{ "westmead.org", true },
{ "westmeadapartments.com.au", true },
{ "westmidlandsbouncycastlehire.co.uk", true },
{ "westmidlandsinflatables.co.uk", true },
+ { "westondenning.com", true },
{ "westside-pediatrics.com", true },
{ "westsuburbanbank.com", true },
- { "westwood.no", true },
+ { "westthorntonlabour.co.uk", true },
{ "wesupportthebadge.org", true },
{ "weswitch4u.com", true },
{ "wetofu.top", true },
+ { "wetpussylipsex.com", true },
{ "wetrepublic.com", true },
- { "wettanbieter-vergleich.de", true },
{ "wette.de", true },
{ "wetten.eu", true },
{ "wevenues.com", true },
@@ -42763,8 +46612,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wewitro.net", true },
{ "wexfordbouncycastles.ie", true },
{ "wexilapp.com", true },
+ { "weyhmueller.de", true },
{ "weyland-yutani.org", true },
- { "weymouthslowik.com", true },
{ "wezartt.com", true },
{ "wezl.net", true },
{ "wf-bigsky-master.appspot.com", true },
@@ -42777,22 +46626,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wf-training-hrd.appspot.com", true },
{ "wf-training-master.appspot.com", true },
{ "wf-trial-hrd.appspot.com", true },
+ { "wfcom-98-wf-www.pantheonsite.io", true },
{ "wfcp1010.com", true },
{ "wfh.ovh", true },
{ "wfh.se", true },
{ "wforum.nl", true },
- { "wfsystem.net", true },
+ { "wfschicago.com", true },
{ "wft-portfolio.nl", true },
{ "wg-steubenstrasse.de", true },
{ "wg3k.us", false },
+ { "wgcaobgyn.com", true },
{ "wgcp.com", true },
+ { "wgdp.gov", true },
+ { "wgec-fegc.gc.ca", true },
{ "wgom.org", true },
{ "wgplatform.co.uk", true },
{ "wgraphics.ru", true },
{ "wgsi-friesland.nl", true },
{ "wgtrm.com", true },
{ "wh-guide.de", true },
+ { "wh36.net", true },
{ "what-wood.servehttp.com", true },
+ { "what.tf", true },
{ "whatagreatwebsite.net", true },
{ "whatarepatentsfor.com", true },
{ "whatclinic.co.uk", true },
@@ -42802,16 +46657,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whatclinic.ie", true },
{ "whatclinic.ru", true },
{ "whatdevotion.com", true },
- { "whateveraspidercan.com", true },
{ "whatisapassword.com", true },
{ "whatismycountry.com", true },
{ "whatismyip.net", false },
{ "whatismyipaddress.ca", true },
+ { "whatismyipv6.info", true },
{ "whatisthe.cloud", true },
{ "whatnext.limited", true },
{ "whatsahoy.com", true },
{ "whatsapp.com", true },
+ { "whatsapp.net", true },
{ "whatsmychaincert.com", true },
+ { "whatsthisword.com", true },
{ "whatsupgold.com.tw", true },
{ "whatsupoutdoor.com", true },
{ "whatthefile.info", true },
@@ -42822,21 +46679,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whatwg.org", true },
{ "whd-guide.de", true },
{ "wheatley.nl", true },
- { "wheeler.kiwi.nz", true },
{ "wheelwork.org", true },
{ "wheezie.be", true },
+ { "when-release.com", true },
+ { "when-release.ru", true },
{ "when.fm", false },
{ "where2trip.com", true },
{ "whereiszakir.com", true },
{ "wheresbuzz.com.au", true },
{ "whey-protein.ch", true },
+ { "whichgender.today", true },
{ "whiletrue.run", true },
{ "whing.org", true },
{ "whipnic.com", true },
{ "whirlpool-luboss.de", true },
{ "whirlpool.net.au", true },
+ { "whiskey.town", true },
{ "whisky-circle.info", true },
- { "whiskygentle.men", true },
+ { "whiskygentle.men", false },
{ "whiskyglazen.nl", false },
{ "whiskynerd.ca", true },
{ "whisp.ly", false },
@@ -42859,6 +46719,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whitehathackers.com.br", true },
{ "whitehats.nl", true },
{ "whitehouse.gov", true },
+ { "whitehouse.org", true },
{ "whitehouseconferenceonaging.gov", true },
{ "whitehousedrugpolicy.gov", true },
{ "whiteink.com", true },
@@ -42866,22 +46727,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whiteknightsafelockinc.com", true },
{ "whitelabelcashback.nl", true },
{ "whitelabeltickets.com", false },
+ { "whitepack.ru", true },
{ "whitepharmacy.co.uk", true },
{ "whiterose.goip.de", true },
- { "whiteshadowimperium.com", true },
+ { "whitevpn.cz", true },
{ "whitewebhosting.co.za", true },
- { "whitewebhosting.com", true },
{ "whitewinterwolf.com", true },
{ "whitkirk.com", true },
{ "whitkirkartsguild.com", true },
{ "whitkirkchurch.org.uk", true },
{ "whittome.com", true },
{ "whitworth.nyc", true },
+ { "whizdomcenter.com", true },
{ "whizzzbang.co.uk", true },
+ { "whm.gc.ca", true },
{ "whmcs.hosting", true },
{ "whnpa.org", true },
{ "who-calledme.com", true },
- { "who.pm", true },
{ "whoami.io", true },
{ "whocalld.com", true },
{ "whocalled.us", true },
@@ -42890,11 +46752,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whoimg.com", false },
{ "whoisthenightking.com", true },
{ "whoiswp.com", true },
+ { "whoit.top", true },
{ "wholesalecbd.com", true },
{ "wholesomeharvestbread.com", false },
{ "whollyskincare.com", true },
{ "whonix.org", true },
- { "whosyourdaddy.ml", true },
+ { "whorepresentsme.us", true },
+ { "whotracks.me", true },
{ "whoturgled.com", true },
{ "whqqq.com", true },
{ "whqtravel.org", false },
@@ -42907,6 +46771,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whyopencomputing.ch", true },
{ "whyopencomputing.com", true },
{ "whysoslow.co.uk", true },
+ { "whythisguy.com", true },
{ "whytls.com", true },
{ "whyworldhot.com", true },
{ "whyz1722.tk", true },
@@ -42921,12 +46786,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wideboxmacau.com", false },
{ "widegab.com", true },
{ "wideinfo.org", true },
+ { "widely.io", true },
{ "widemann.de", true },
{ "widememory.com", true },
{ "widmer.bz", true },
{ "widsl.de", true },
{ "wiebel.org", true },
- { "wiebetaaltdat.nl", true },
{ "wieckiewicz.org", true },
{ "wiedmeyer.de", true },
{ "wiedu.net", true },
@@ -42941,21 +46806,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wifi-hack.com", true },
{ "wifi-names.com", true },
{ "wifimask.com", true },
+ { "wifimb.cz", true },
{ "wifipineapple.com", true },
{ "wifirst.net", true },
{ "wifree.lv", true },
{ "wigggle.it", true },
{ "wigle.net", true },
+ { "wigmore-hall.org.uk", true },
{ "wiimotion.de", true },
{ "wijaya.net", true },
{ "wijnbesteld.nl", true },
{ "wijnimportjanssen.nl", true },
{ "wijnservices.nl", false },
+ { "wijwillendit.nl", true },
{ "wijzijnwolf.nl", true },
{ "wiki-play.ru", true },
{ "wiki.python.org", true },
{ "wikibooks.org", true },
{ "wikibulz.com", true },
+ { "wikibuy.com", true },
{ "wikidata.org", true },
{ "wikidsystems.com", false },
{ "wikihow.com", true },
@@ -42971,7 +46840,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wikihow.vn", true },
{ "wikileaks.com", true },
{ "wikileaks.org", true },
- { "wikilivres.ca", true },
{ "wikimedia.org", true },
{ "wikimediafoundation.org", true },
{ "wikimilk.org", true },
@@ -42983,11 +46851,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wikiversity.org", true },
{ "wikivisually.com", true },
{ "wikivoyage.org", true },
+ { "wikiwp.org", true },
{ "wiktionary.org", true },
{ "wiktoriaslife.com", true },
{ "wilane.org", true },
{ "wilcodeboer.me", true },
{ "wild-turtles.com", true },
+ { "wildbirds.dk", true },
+ { "wildcardcorp.com", true },
+ { "wildcardfederal.net", true },
{ "wildcatdiesel.com.au", true },
{ "wilddogdesign.co.uk", true },
{ "wildercerron.com", true },
@@ -42998,14 +46870,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wildwildtravel.com", true },
{ "wildwind.world", true },
{ "wildzoopark.co.uk", true },
- { "wildzoopark.com", true },
{ "wilfrid-calixte.fr", false },
+ { "wilhelm-nathan.de", true },
{ "wili.li", true },
{ "wiliquet.net", true },
{ "wilkushka.com", true },
{ "wilkushka.net", true },
{ "willbarnesphotography.co.uk", true },
- { "willberg.bayern", true },
{ "willekeinden.nl", true },
{ "willems-kristiansen.dk", true },
{ "willfarrell.ca", true },
@@ -43020,6 +46891,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "williamsonshore.com", true },
{ "williamsportmortgages.com", true },
{ "williamsroom.com", true },
+ { "williamsvillepediatriccenter.com", true },
{ "williamtm.com", true },
{ "willnorris.com", true },
{ "willow.technology", true },
@@ -43044,6 +46916,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "winbuzzer.com", true },
{ "wincasinowin.click", true },
{ "winch-center.de", true },
+ { "wind.moe", true },
{ "winddan.nz", true },
{ "windelnkaufen24.de", true },
{ "windforme.com", true },
@@ -43051,61 +46924,71 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "windowcleaningexperts.net", true },
{ "windows-support.nu", true },
{ "windows-support.se", true },
+ { "windowsdoors.it", true },
+ { "windowseatwanderer.com", true },
{ "windowslatest.com", true },
{ "windowsnerd.com", true },
{ "windowsnoticias.com", true },
- { "windowwellcovers.com", true },
{ "windscribe.com", true },
{ "windsock-app.com", true },
{ "windsorite.ca", true },
{ "windsorspi.com", true },
{ "windycitydubfest.com", true },
{ "wine-tapa.com", true },
+ { "winebid.com", true },
{ "wineparis.com", true },
{ "winepress.org", true },
+ { "wineworksonline.com", true },
{ "winfieldchen.me", true },
- { "winfographics.com", true },
{ "winghill.com", true },
{ "wingify.com", true },
{ "wingmin.net", true },
+ { "wingsofacow.com", true },
{ "winhistory-forum.net", true },
{ "winkelcentrumputten.nl", true },
{ "winmodels.org", true },
{ "winmodels.ru", true },
+ { "winner-ua.com", true },
{ "winningattitudeawards.org", true },
{ "winphonemetro.com", true },
{ "winsome.world", true },
{ "wint.global", true },
{ "winter-auszeit.de", true },
{ "winter-elektro.de", true },
+ { "winter.engineering", true },
{ "winterbergwebcams.com", true },
{ "wintercam.nl", true },
+ { "wintercorn.com", true },
{ "winterfeldt.de", true },
{ "winterhavenobgyn.com", true },
{ "winterhillbank.com", true },
{ "wintermeyer-consulting.de", true },
{ "wintermeyer.de", true },
+ { "winterparkphotography.com", true },
{ "winterschoen.nl", true },
+ { "wintersportscompany.com", true },
{ "wintodoor.com", true },
{ "winwares.com", true },
{ "winwitharval.co.uk", true },
+ { "wiocha.pl", true },
{ "wipswiss.ch", true },
{ "wir-bewegen.sh", true },
+ { "wir-machen-druck.de", true },
{ "wircon-int.net", true },
{ "wire.com", true },
- { "wireframesoftware.com", true },
{ "wireheading.com", true },
+ { "wireless-emergency-stop.com", true },
{ "wireshark.org", true },
{ "wiretime.de", true },
{ "wirhabenspass.de", true },
{ "wirkstoffreich.de", true },
{ "wirralbouncycastles.co.uk", true },
- { "wirsberg-studios.de", true },
{ "wirsol.com", true },
{ "wis.no", true },
{ "wisak.me", true },
{ "wischu.com", true },
{ "wisedog.eu", true },
+ { "wishingyou.co.uk", true },
{ "wishlist.net", true },
{ "wispapp.com", false },
{ "wisper.net.au", true },
@@ -43114,6 +46997,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wissamnr.be", true },
{ "wisv.ch", true },
{ "wisweb.no", true },
+ { "wit-creations.fr", true },
{ "wit.ai", true },
{ "witch-spells.com", true },
{ "with-environment.com", true },
@@ -43121,7 +47005,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "withdewhua.space", true },
{ "withextraveg.net", true },
{ "withgoogle.com", true },
+ { "withheld.xyz", true },
{ "withinsecurity.com", true },
+ { "withsunglasses.co.uk", true },
{ "withyoutube.com", true },
{ "witneywaterpolo.org.uk", true },
{ "witt-international.co.uk", true },
@@ -43148,27 +47034,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wjwieland.dvrdns.org", false },
{ "wkennington.com", true },
{ "wkv.com", true },
- { "wkz.io", true },
{ "wlaws.com", true },
{ "wlci.gov", true },
{ "wlog.it", true },
- { "wlsme.org", true },
{ "wlt.ca", false },
{ "wltix.com", false },
- { "wlwlwx.com", true },
{ "wm-access.com", true },
{ "wm-access.de", true },
{ "wm-talk.net", true },
{ "wmaccess.com", true },
{ "wmaccess.de", true },
- { "wmcns.net", true },
{ "wmfusercontent.org", true },
{ "wmkowa.de", true },
{ "wmnrj.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 },
{ "woblex.cz", true },
@@ -43177,15 +47059,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wodka-division.de", true },
{ "woelkchen.me", true },
{ "wofflesoft.com", true },
- { "wofford-ecs.org", false },
+ { "wofford-ecs.org", true },
{ "woffs.de", true },
{ "wogo.org", true },
{ "woheni.de", true },
{ "wohlgemuth.rocks", true },
{ "wohlpa.de", true },
- { "wohnbegleitung.ch", true },
{ "wohnsitz-ausland.com", true },
- { "wojak.xyz", true },
+ { "wois.info", true },
{ "wokinghammotorhomes.com", true },
{ "wolfachtal-alpaka.de", true },
{ "wolfarth.info", true },
@@ -43196,15 +47077,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wolfgang-braun.info", true },
{ "wolfgang-kerschbaumer.at", true },
{ "wolfgang-kerschbaumer.com", true },
- { "wolfgang-kerschbaumer.net", true },
{ "wolfgang-kloke.de", true },
{ "wolfgang-ziegler.com", true },
{ "wolfie.ovh", false },
{ "wolfsden.cz", true },
{ "wolfshuegelturm.de", true },
- { "wolfvideoproductions.com", true },
{ "wolfwings.us", true },
- { "wolfy1339.com", false },
+ { "wolfy1339.com", true },
{ "wolke7.wtf", true },
{ "wolkoopjes.nl", true },
{ "wollgredel.de", true },
@@ -43218,14 +47097,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wombats.net", true },
{ "wombere.org", true },
{ "womcom.nl", true },
+ { "women-femmes.gc.ca", true },
{ "women-only.net", true },
+ { "women.gc.ca", true },
{ "womensalespros.com", true },
{ "womenshairlossproject.com", true },
{ "womensmedassoc.com", true },
- { "wonabo.com", true },
{ "wonder.com.mx", false },
{ "wonderbill.com", true },
{ "wonderbits.net", true },
+ { "wondercris.com", true },
{ "wonderfuleducation.eu", true },
{ "wonderfuleducation.nl", true },
{ "wondergorilla.com", true },
@@ -43238,6 +47119,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wood-crafted.uk", true },
{ "woodbury.io", true },
{ "woodcoin.org", true },
+ { "woodenson.com", true },
{ "woodev.us", true },
{ "woodinvillesepticservice.net", true },
{ "woodlandboys.com", true },
@@ -43245,18 +47127,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "woodlandsmetro.church", false },
{ "woodlandsvale.uk", true },
{ "woodlandwindows.com", true },
+ { "woodminstermanagement.tk", true },
+ { "woodminsterrealty.com", true },
{ "woodomat.com", true },
{ "woodsidepottery.ca", true },
- { "woodsmillparkapartmentsstl.com", true },
{ "woodstocksupply.com", true },
+ { "woodwormtreatment.com", true },
{ "woof.gq", true },
{ "woohooyeah.nl", true },
{ "woonboulevardvolendam.nl", true },
{ "woontegelwinkel.nl", true },
+ { "woopie.com", true },
{ "wooplagaming.com", true },
{ "wootware.co.za", true },
{ "wopplan.de", true },
{ "wopr.network", true },
+ { "wops.cc", true },
{ "worca.de", true },
{ "worcade.com", true },
{ "worcade.net", true },
@@ -43267,15 +47153,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wordcounter.net", true },
{ "wordher.com", true },
{ "wordnietvindbaar.nl", true },
+ { "wordops.io", true },
{ "wordplay.one", true },
{ "wordpress.com", false },
+ { "wordpressfly.com", true },
+ { "words.codes", true },
{ "wordsmart.it", true },
{ "wordspy.com", true },
{ "wordxtra.net", true },
{ "worf.in", true },
{ "work-in-progress.website", true },
+ { "workathomenoscams.com", true },
{ "workcelerator.com", true },
- { "workcheck.bz", true },
{ "workcloud.jp", true },
{ "worker.gov", true },
{ "workeria-personal.de", true },
@@ -43283,22 +47172,26 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "workgrouptech.org", true },
{ "workingclassmedia.com", true },
{ "workinginsync.co.uk", true },
+ { "workingon.tech", true },
{ "worklizard.com", true },
- { "workmart.mx", true },
{ "worknrby.com", true },
{ "workoptions.com", true },
+ { "workplace.com", true },
{ "workraw.com", true },
{ "workray.com", true },
{ "works-ginan.jp", true },
+ { "workshopengine.com.au", true },
{ "workshopszwolle.nl", true },
{ "workshopzwolle.com", true },
{ "worksitevr.com", true },
+ { "worksmarter.tv", true },
{ "world-in-my-eyes.com", true },
{ "world-lolo.com", true },
{ "worldcareers.dk", true },
{ "worldcigars.com.br", true },
{ "worldcubeassociation.org", true },
{ "worldessays.com", true },
+ { "worldmeetings.com", true },
{ "worldmeteo.info", true },
{ "worldnettps.com", true },
{ "worldofarganoil.com", true },
@@ -43317,75 +47210,73 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wormbytes.ca", true },
{ "worst.horse", false },
{ "wort-suchen.de", true },
+ { "worthygo.com", true },
{ "woshiluo.com", true },
- { "woshiluo.site", true },
{ "wot-tudasbazis.hu", true },
{ "woti.dedyn.io", true },
{ "wotra-register.com", true },
{ "wotsunduk.ru", true },
- { "woudenberg.nl", true },
+ { "woudenberg.nl", false },
{ "woudenbergsedrukkerij.nl", true },
- { "woufbox.com", true },
+ { "wound-doc.co.uk", 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 },
+ { "wowgenial.com", true },
{ "wowi-ffo.de", true },
+ { "wowin58.com", true },
+ { "wowin88.com", true },
{ "wowjs.co.uk", true },
{ "wowjs.org", true },
{ "wowjs.uk", true },
{ "wownmedia.com", true },
- { "wozalapha.com", true },
+ { "wp-france.com", true },
{ "wp-master.org", true },
{ "wp-mix.com", true },
- { "wp-securehosting.com", true },
{ "wp-site1.com", true },
{ "wp-site2.com", true },
{ "wp-tao.com", true },
{ "wp-webagentur.de", true },
+ { "wpabu.com", true },
{ "wpac.de", true },
{ "wpandup.org", true },
- { "wpbook-pacificmall.work", true },
{ "wpboot.com", true },
+ { "wpbox.cc", true },
{ "wpcanban.com", true },
{ "wpccu-cdn.org", true },
{ "wpccu.org", true },
- { "wpcharged.nz", true },
{ "wpcs.pro", true },
- { "wpdirecto.com", true },
{ "wpenhance.com", true },
{ "wpexplorer.com", true },
{ "wpformation.com", true },
{ "wpgoblin.com", true },
{ "wpherc.com", true },
+ { "wphlive.tv", true },
+ { "wphosting.ovh", true },
{ "wphostingblog.nl", true },
- { "wpinter.com", true },
+ { "wpinter.com", false },
{ "wpldn.uk", true },
{ "wpletter.de", false },
{ "wplistings.pro", true },
{ "wpmeetup-berlin.de", true },
{ "wpmu-tutorials.de", true },
- { "wpno.com", true },
- { "wpoptimalizace.cz", true },
+ { "wpno.com", false },
+ { "wpnuvem.com", true },
{ "wpostats.com", false },
{ "wprodevs.com", true },
- { "wpscans.com", true },
- { "wpsec.nl", true },
{ "wpserp.com", true },
{ "wpsharks.com", true },
{ "wpsitemovers.com", true },
{ "wpsmackdown.com", true },
{ "wpsnelheid.nl", true },
{ "wpthaiuser.com", true },
- { "wptomatic.de", true },
{ "wptorium.com", true },
{ "wptotal.com", true },
- { "wpturnedup.com", true },
{ "wpvulndb.com", true },
{ "wq.ro", true },
{ "wr.su", true },
@@ -43396,28 +47287,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wrdcfiles.ca", true },
{ "wrdx.io", true },
{ "wrenwrites.com", true },
+ { "wrestling.net.au", true },
{ "wrgms.com", true },
- { "wrightselfstorageandremovals.com", true },
{ "wristreview.com", true },
{ "write-right.net", true },
{ "writeandedit-for-you.com", true },
{ "writecustomessay.com", true },
- { "writeenglishright.com", true },
{ "writemyessay.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 },
+ { "writing-expert.com", true },
{ "writingcities.net", true },
{ "writingtoserve.net", true },
+ { "writtenworld.bg", true },
{ "writtit.com", true },
{ "wrksheet.com", true },
{ "wrmea.org", true },
{ "wrn.sh", true },
- { "wromeapp.com", true },
{ "wrongware.cz", true },
{ "wrp-timber-mouldings.co.uk", true },
{ "wrp.gov", true },
@@ -43431,28 +47322,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wscore.me", true },
{ "wsdcapital.com", true },
{ "wselektro.de", true },
+ { "wsetech.com", true },
{ "wsgvet.com", true },
{ "wsl.sh", true },
{ "wsldp.com", true },
- { "wsp-center.com", true },
{ "wsspalluto.de", true },
{ "wstudio.ch", true },
{ "wstx.com", true },
- { "wsv-grafenau.de", true },
{ "wsyy.info", true },
{ "wt-server3.de", true },
- { "wtf.ninja", true },
{ "wtfismyip.com", true },
{ "wtfnope.org", true },
- { "wtfsec.org", true },
- { "wth.in", true },
{ "wtp.co.jp", true },
{ "wtpdive.jp", true },
{ "wtpmj.com", true },
{ "wtup.net", true },
{ "wtw.io", true },
- { "wuav.net", true },
- { "wucke13.de", true },
{ "wuerfel.wf", true },
{ "wuerfelmail.de", true },
{ "wug.fun", true },
@@ -43460,8 +47345,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wug.news", true },
{ "wuifan.com", true },
{ "wuji.cz", true },
- { "wumai-p.cn", true },
+ { "wumbo.cf", true },
{ "wumbo.co.nz", true },
+ { "wumbo.ga", true },
+ { "wumbo.gq", true },
+ { "wumbo.ml", true },
+ { "wumbo.tk", true },
{ "wunder.io", true },
{ "wunderkarten.de", true },
{ "wunderlist.com", true },
@@ -43472,29 +47361,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wuppertaler-kurrende.com", true },
{ "wuppertaler-kurrende.de", true },
{ "wutianyi.com", true },
- { "wuwuwu.me", true },
{ "wuxiaobai.win", true },
{ "wuxiaohen.com", true },
{ "wuyang.ws", true },
- { "wuyue.photo", true },
- { "wv-n.de", true },
{ "wvg.myds.me", true },
{ "ww-design.ch", true },
{ "ww0512.com", true },
{ "ww2onlineshop.com", true },
+ { "ww5197.co", true },
+ { "ww6729.co", true },
+ { "ww6729.com", true },
+ { "ww6957.co", true },
+ { "ww9297.co", true },
+ { "ww9397.com", true },
+ { "ww9721.com", true },
+ { "ww9728.co", true },
+ { "wwc.ren", true },
{ "wweforums.net", true },
{ "wweichen.com.cn", true },
{ "wwgc2011.se", true },
+ { "wwtext.com", true },
{ "wwv-8722.com", true },
{ "www-33445.com", true },
{ "www-49889.com", true },
{ "www-5287.com", true },
{ "www-68277.com", true },
+ { "www-80036.com", true },
{ "www-8522.am", true },
{ "www-8522.com", true },
- { "www-86499.com", true },
{ "www-8722.com", true },
{ "www-9822.com", true },
+ { "www-railto.com", true },
{ "www.aclu.org", false },
{ "www.airbnb.com", true },
{ "www.amazon.ca", true },
@@ -43513,9 +47410,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "www.apollo-auto.com", true },
{ "www.banking.co.at", false },
{ "www.braintreepayments.com", false },
- { "www.calyxinstitute.org", false },
{ "www.capitainetrain.com", false },
- { "www.cloudflare.com", true },
+ { "www.cloudflare.com", false },
{ "www.cnet.com", true },
{ "www.dropbox.com", true },
{ "www.dropcam.com", false },
@@ -43536,7 +47432,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "www.healthcare.gov", false },
{ "www.heliosnet.com", true },
{ "www.honeybadger.io", false },
- { "www.hyatt.com", false },
+ { "www.hyatt.com", true },
{ "www.icann.org", false },
{ "www.intercom.io", true },
{ "www.irccloud.com", false },
@@ -43548,9 +47444,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "www.mylookout.com", false },
{ "www.noisebridge.net", true },
{ "www.opsmate.com", true },
- { "www.org.gg", true },
{ "www.paypal.com", false },
{ "www.python.org", true },
+ { "www.raiffeisen.ch", true },
{ "www.re", true },
{ "www.rememberthemilk.com", true },
{ "www.sb", true },
@@ -43569,73 +47465,84 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "www.wepay.com", false },
{ "www.wordpress.com", false },
{ "www.zdnet.com", true },
+ { "wwwrailto.com", true },
{ "wx37.ac.cn", true },
{ "wxcafe.net", true },
{ "wxdisco.com", true },
{ "wxforums.com", true },
{ "wxh.jp", true },
+ { "wxkxsw.com", true },
{ "wxlog.cn", true },
- { "wxzm.sx", true },
+ { "wxster.com", true },
+ { "wxw.moe", true },
{ "wyam.io", true },
- { "wybar.uk", true },
- { "wycrow.com", false },
+ { "wyatttauber.com", true },
+ { "wycrow.com", true },
+ { "wyczaruj.pl", true },
{ "wyday.com", true },
{ "wygibanki.pl", true },
{ "wygodnie.pl", true },
{ "wyhpartnership.co.uk", true },
{ "wyldfiresignage.com", true },
- { "wylog.ph", true },
- { "wynterhill.co.uk", true },
{ "wyo.cam", true },
- { "wyomingexiles.com", true },
- { "wypemagazine.se", true },
+ { "wyomingurology.com", true },
{ "wyrickstaxidermy.com", true },
{ "wyrihaximus.net", true },
{ "wyrimaps.net", true },
{ "wyssmuller.ch", true },
+ { "wysz.com", true },
+ { "wywabmnie.pl", true },
{ "wyydsb.cn", true },
{ "wyydsb.com", true },
{ "wyydsb.xin", true },
- { "wyysoft.tk", true },
{ "wyzphoto.nl", true },
{ "wzfou.com", true },
{ "wzilverschoon.nl", true },
{ "wzrd.in", true },
{ "wzyboy.org", true },
+ { "x-6.pl", true },
{ "x-iweb.ru", true },
{ "x-lan.be", true },
{ "x-one.co.jp", true },
{ "x.io", true },
{ "x.st", true },
{ "x0r.be", true },
- { "x13.com", true },
{ "x2d2.de", false },
{ "x378.ch", true },
- { "x509.io", true },
+ { "x5197.co", true },
{ "x64architecture.com", true },
+ { "x6729.co", true },
+ { "x69.biz", true },
+ { "x69x.net", true },
{ "x6r3p2yjg1g6x7iu.myfritz.net", true },
{ "x7plus.com", true },
+ { "x9297.co", true },
+ { "x9721.com", true },
+ { "x9728.co", true },
{ "xa.search.yahoo.com", false },
{ "xa1.uk", true },
+ { "xaffit.com", true },
{ "xanadu-auto.cz", true },
{ "xanadu-catering.cz", true },
{ "xanadu-golf.cz", true },
{ "xanadu-taxi.cz", true },
{ "xanadu-trans.cz", true },
{ "xanax.pro", false },
- { "xanderbron.tech", true },
+ { "xanimalcaps.com", true },
{ "xants.de", true },
+ { "xanyl.de", true },
{ "xatr0z.org", false },
+ { "xavier.is", true },
{ "xavierdmello.com", true },
{ "xb83studio.ch", true },
{ "xbb.hk", true },
{ "xbb.li", true },
- { "xbc.nz", true },
+ { "xbdmov.com", true },
+ { "xbertschy.com", true },
{ "xblau.com", true },
{ "xboxdownloadthat.com", true },
{ "xboxlivegoldshop.nl", true },
{ "xboxonex.shop", true },
- { "xbpay88.com", true },
{ "xbrl.online", true },
{ "xbrlsuccess.appspot.com", true },
{ "xbt.co", true },
@@ -43649,17 +47556,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xcvb.xyz", true },
{ "xd.cm", true },
{ "xdavidhu.me", true },
+ { "xdawn.cn", true },
{ "xdeftor.com", true },
{ "xdos.io", true },
{ "xdtag.com", true },
{ "xdty.org", true },
+ { "xecure.zone", true },
+ { "xecureit.com", true },
{ "xeedbeam.me", true },
{ "xega.org", true },
{ "xehost.com", true },
{ "xeiropraktiki.gr", true },
{ "xelesante.jp", true },
{ "xendo.net", true },
- { "xenolith.eu", true },
{ "xenomedia.nl", true },
{ "xenon.cloud", true },
{ "xenoncloud.net", true },
@@ -43669,43 +47578,37 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xentho.net", true },
{ "xentox.com", true },
{ "xenum.ua", true },
- { "xerblade.com", true },
- { "xerhost.de", true },
+ { "xerhost.de", false },
{ "xerkus.pro", true },
{ "xerownia.eu", true },
{ "xeryus.nl", true },
{ "xetown.com", true },
{ "xf-liam.com", true },
- { "xf5888.com", true },
{ "xfce.space", true },
{ "xfcy.me", true },
{ "xfd3.de", true },
{ "xferion.com", true },
{ "xfix.pw", true },
{ "xfrag-networks.com", true },
+ { "xgadget.de", true },
{ "xgame.com.tr", true },
{ "xgclan.com", true },
{ "xgn.es", true },
{ "xgwap.com", true },
{ "xgzepto.cn", true },
- { "xhily.com", true },
{ "xhmikosr.io", true },
{ "xho.me", true },
- { "xhotlips.date", true },
{ "xi.ht", true },
{ "xia.de", true },
- { "xia100.xyz", true },
{ "xiamenshipbuilding.com", true },
{ "xiamuzi.com", true },
{ "xiangblog.com", true },
- { "xiangfajia.cn", true },
{ "xiangweiqing.co.uk", true },
{ "xiangwenquan.me", true },
- { "xianjianruishiyouyiyuan.com", true },
- { "xiaobude.cn", true },
+ { "xiao094605.com", true },
+ { "xiaobaiwancai.com", true },
{ "xiaocg.xyz", false },
{ "xiaoguo.net", false },
- { "xiaohui.love", true },
{ "xiaolanglang.net", true },
{ "xiaolong.link", true },
{ "xiaomao.tk", true },
@@ -43716,40 +47619,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xiashali.me", true },
{ "xichtsbuch.de", true },
{ "xicreative.net", true },
- { "xie38.com", true },
- { "xie91.com", true },
- { "xiecongan.org", true },
{ "xif.at", true },
{ "xight.org", true },
{ "xilef.org", true },
- { "xilkoi.net", true },
- { "xilou.org", true },
+ { "xilo.net", true },
{ "ximble.com", true },
- { "ximbo.net", true },
- { "xinboyule.com", true },
- { "xinj.com", true },
+ { "ximbo.net", false },
{ "xinlandm.com", true },
{ "xinnixdeuren-shop.be", true },
+ { "xinsane.com", true },
+ { "xinsto.com", true },
{ "xinu.xyz", true },
{ "xinuspeed.com", true },
{ "xinuspeedtest.com", true },
{ "xinuurl.com", true },
+ { "xiumu.org", true },
+ { "xiyu.it", false },
{ "xjd.vision", true },
{ "xjf6.com", true },
{ "xjjeeps.com", true },
- { "xjoi.net", true },
{ "xjpvictor.info", true },
{ "xkblog.xyz", true },
{ "xkcd.pw", true },
{ "xkngroup.com", true },
{ "xkviz.net", true },
+ { "xkwy2018.cn", true },
{ "xlan.be", true },
{ "xlange.com", true },
{ "xldl.ml", true },
+ { "xlfilippou.com", true },
{ "xliang.co", true },
{ "xluxes.jp", true },
+ { "xm.digital", true },
{ "xmedius.ca", true },
- { "xmedius.com", false },
{ "xmedius.eu", true },
{ "xmenrevolution.com", true },
{ "xmflyrk.com", true },
@@ -43762,27 +47664,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xmusic.live", true },
{ "xmv.cz", true },
{ "xn-----6kcbjcgl1atjj7aadbkxfxfe7a9yia.xn--p1ai", true },
- { "xn----7sbfl2alf8a.xn--p1ai", true },
{ "xn----8hcdn2ankm1bfq.com", true },
- { "xn----8sbjfacqfqshbh7afyeg.xn--80asehdb", true },
{ "xn----9sbkdigdao0de1a8g.com", true },
- { "xn----zmcaltpp1mdh16i.com", true },
+ { "xn----ncfb.ws", true },
{ "xn--0iv967ab7w.xn--rhqv96g", true },
+ { "xn--0kq33cbsi8bk6d417b.com", true },
{ "xn--0kq33cz5c8wmwrqqw1d.com", true },
{ "xn--12c3bpr6bsv7c.com", true },
+ { "xn--12cg9bnm5ci2ag9hbcs17a.com", true },
{ "xn--13-6kc0bufl.xn--p1ai", true },
{ "xn--158h.ml", true },
{ "xn--15tx89ctvm.xn--6qq986b3xl", true },
{ "xn--1yst51avkr.ga", true },
{ "xn--1yst51avkr.xn--6qq986b3xl", true },
- { "xn--24-6kch4bfqee.xn--p1ai", true },
- { "xn--24-glcia8dc.xn--p1ai", true },
{ "xn--2sxs9ol7o.com", true },
{ "xn--3st814ec8r.cn", true },
{ "xn--3stv82k.hk", true },
{ "xn--3stv82k.tw", true },
{ "xn--48jwg508p.net", true },
- { "xn--4dbfsnr.xn--9dbq2a", true },
{ "xn--4kro7fswi.xn--6qq986b3xl", true },
{ "xn--4pv80kkz8auzf.jp", true },
{ "xn--57h.ml", true },
@@ -43795,18 +47694,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--79q87uvkclvgd56ahq5a.net", true },
{ "xn--7ca.co", true },
{ "xn--7xa.google.com", true },
- { "xn--80adb4aeode.xn--p1ai", true },
+ { "xn--80aanbkcescrdedmxzcl4pmc.xn--p1acf", true },
{ "xn--80adbevek3air0ee9b8d.com", true },
{ "xn--80adbvdjzhptl1be6j.com", true },
{ "xn--80aejljbfwxn.xn--p1ai", true },
+ { "xn--80ahclcaoccacrhfebi0dcn5c1jh.xn--p1ai", true },
{ "xn--80anogxed.xn--p1ai", true },
{ "xn--80azelb.xn--p1ai", true },
{ "xn--8bi.gq", true },
+ { "xn--8n2am80a.tech", true },
{ "xn--90accgba6bldkcbb7a.xn--p1acf", true },
- { "xn--90aroj.xn--p1ai", true },
+ { "xn--95q32l0t6b9cb17l.cn", true },
+ { "xn--acompaamientoholistico-pec.com", true },
{ "xn--allgu-biker-o8a.de", true },
+ { "xn--anyd-7na.at", true },
{ "xn--aviao-dra1a.pt", true },
{ "xn--b3c4f.xn--o3cw4h", true },
+ { "xn--baron-bonzenbru-elb.com", true },
{ "xn--bckerei-trster-5hb11a.de", true },
{ "xn--ben-bank-8za.dk", true },
{ "xn--benbank-dxa.dk", true },
@@ -43822,24 +47726,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--circul-u3a.cc", true },
{ "xn--d1acj9c.xn--90ais", true },
{ "xn--dcko6fsa5b1a8gyicbc.biz", true },
- { "xn--dej-3oa.lv", true },
{ "xn--detrkl13b9sbv53j.com", true },
{ "xn--detrkl13b9sbv53j.org", true },
+ { "xn--die-hrercharts-zpb.de", true },
{ "xn--dmonenjger-q5ag.net", true },
- { "xn--dmontaa-9za.com", true },
{ "xn--dragni-g1a.de", true },
{ "xn--dtursfest-72a.dk", true },
{ "xn--durhre-yxa.de", true },
- { "xn--e1aoahhqgn.xn--p1ai", true },
- { "xn--ecki0cd0bu9a4nsjb.com", true },
{ "xn--ehqw04eq6e.jp", true },
- { "xn--elsignificadodesoar-c4b.com", true },
+ { "xn--erban-e9b.ro", true },
{ "xn--erklderbarenben-slbh.dk", true },
{ "xn--et8h.cf", true },
{ "xn--f9jh4f4b4993b66s.tokyo", true },
{ "xn--familie-pppinghaus-l3b.de", true },
{ "xn--feuerlscher-arten-4zb.de", true },
- { "xn--fiestadefindeao-crb.com", true },
{ "xn--fiqwix98h.jp", true },
{ "xn--fischereiverein-mnsterhausen-i7c.de", true },
{ "xn--fp8h58f.ws", true },
@@ -43848,34 +47748,36 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--gfrr-7qa.li", true },
{ "xn--gfrrli-yxa.ch", true },
{ "xn--gi8hwa.tk", true },
+ { "xn--grnderlehrstuhl-0vb.de", true },
{ "xn--heilendehnde-ocb.de", true },
{ "xn--hgbk4a00a.com", true },
{ "xn--hllrigl-90a.at", true },
+ { "xn--hmdiseoweb-y9a.com.ar", 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--kkcon-fwab.nz", true },
+ { "xn--kl-oja.is", true },
{ "xn--klmek-0sa.com", true },
{ "xn--knstler-n2a.tips", false },
- { "xn--krpto-lva.de", true },
{ "xn--ktha-kamrater-pfba.se", true },
+ { "xn--l8js6h476m.xn--q9jyb4c", true },
{ "xn--labanskllermark-ftb.se", true },
{ "xn--lckwg.net", true },
+ { "xn--lnakuten-9za.com", true },
{ "xn--love-un4c7e0d4a.com", true },
{ "xn--lsaupp-iua.se", true },
{ "xn--lskieradio-3gb44h.pl", true },
- { "xn--lsupp-mra.net", true },
{ "xn--manuela-stsser-psb.de", true },
{ "xn--martnvillalba-zib.com", true },
{ "xn--martnvillalba-zib.net", true },
{ "xn--mein-kchenhelfer-ozb.de", true },
- { "xn--mensengesss-t8a.gq", true },
{ "xn--mentaltraining-fr-musiker-uwc.ch", true },
{ "xn--mgbbh2a9fub.xn--ngbc5azd", false },
{ "xn--mgbmmp7eub.com", true },
@@ -43883,7 +47785,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--mgbuq0c.net", true },
{ "xn--mgi-qla.life", true },
{ "xn--mhringen-65a.de", true },
- { "xn--mllers-wxa.info", true },
{ "xn--mntsamling-0cb.dk", true },
{ "xn--myrepubic-wub.net", true },
{ "xn--myrepublc-x5a.net", true },
@@ -43893,13 +47794,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--nrrdetval-v2ab.se", true },
{ "xn--o38h.tk", true },
{ "xn--obt757c.com", true },
+ { "xn--oiqt18e8e2a.eu.org", true },
+ { "xn--p3t555glxhnwa.com", true },
{ "xn--p8j9a0d9c9a.xn--q9jyb4c", true },
{ "xn--pbt947am3ab71g.com", true },
{ "xn--pe-bka.ee", true },
+ { "xn--pn1am9c.com", true },
{ "xn--pq1a637b.xn--6qq986b3xl", true },
{ "xn--q9jb1h5dvcspke3218b9mn4p0c.com", true },
- { "xn--q9ji3c6d.xn--q9jyb4c", true },
- { "xn--qckss0j.tk", true },
{ "xn--r8jzaf7977b09e.com", true },
{ "xn--rdiger-kuhlmann-zvb.de", true },
{ "xn--registriertesexualstraftter-ykc.de", true },
@@ -43908,7 +47810,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--roselire-60a.ch", true },
{ "xn--roselire-60a.com", true },
{ "xn--rt-cja.ie", true },
- { "xn--rtter-kva.eu", true },
{ "xn--ruanmller-u9a.com", true },
{ "xn--s-1gaa.fi", true },
{ "xn--schlerzeitung-ideenlos-ulc.de", true },
@@ -43916,17 +47817,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--schsischer-christstollen-qbc.shop", true },
{ "xn--solidaritt-am-ort-yqb.de", true },
{ "xn--spenijmazania-yhc.pl", true },
+ { "xn--svezavaukuu-ulb08i.rs", true },
{ "xn--sz8h.ml", true },
{ "xn--t-oha.lv", true },
{ "xn--t8j4aa4nkg1h9bwcvud.com", true },
{ "xn--t8j4aa4nzg3a5euoxcwee.xyz", true },
+ { "xn--t8jo9k1b.com", true },
{ "xn--tigreray-i1a.org", true },
+ { "xn--u8jvc1drbz972aywbk0by95ffo1aqm1c.com", true },
{ "xn--u8jwd.ga", true },
{ "xn--u9j0ia6hb7347cg8wavz0avb0e.com", true },
{ "xn--u9jv84l7ea468b.com", true },
+ { "xn--underux-0za.eu", true },
{ "xn--v-wfa35g.ro", true },
{ "xn--v6q426ishax2a.xyz", true },
- { "xn--woistdermlleimer-rzb.de", true },
{ "xn--wq9h.ml", true },
{ "xn--xft85up3jca.ga", true },
{ "xn--y-5ga.com", true },
@@ -43938,24 +47842,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xnaas.info", true },
{ "xnet-x.net", true },
{ "xninja.xyz", true },
+ { "xnode.org", true },
{ "xntrik.wtf", true },
{ "xnu.kr", true },
{ "xo.tc", true },
{ "xo7.ovh", true },
+ { "xoh.at", true },
{ "xolphin.nl", true },
{ "xombitgames.com", true },
{ "xombitmusic.com", true },
{ "xone.cz", false },
{ "xonn.de", true },
+ { "xor.cat", true },
{ "xp-ochrona.pl", true },
{ "xp.nsupdate.info", true },
{ "xp2.de", true },
+ { "xpbytes.com", true },
{ "xpd.se", true },
{ "xperiacode.com", true },
{ "xperidia.com", true },
+ { "xpertcube.com", true },
+ { "xpjiosapp.com", true },
{ "xpletus.nl", true },
{ "xpoc.pro", true },
- { "xpressable.com", true },
{ "xpresswifi.network", true },
{ "xqk7.com", true },
{ "xr.cx", true },
@@ -43963,6 +47872,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xrg.cz", true },
{ "xrippedhd.com", true },
{ "xrockx.de", true },
+ { "xrp.pp.ua", true },
{ "xrptoolkit.com", true },
{ "xrwracing-france.com", true },
{ "xs2a.no", true },
@@ -43991,6 +47901,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xtrainsights.com", true },
{ "xtremebouncepartyhire.com.au", true },
{ "xtrememidlife.nl", true },
+ { "xtri.xyz", true },
{ "xtronics.com", true },
{ "xts.bike", true },
{ "xts3636.net", true },
@@ -44001,94 +47912,115 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xuc.me", true },
{ "xueanquan.com", true },
{ "xuedianshang.com", true },
- { "xuehao.net.cn", true },
{ "xuehuang666.cn", true },
+ { "xujan.com", true },
{ "xuming.studio", true },
+ { "xun3708855.com", true },
{ "xunn.io", true },
{ "xuntier.ch", true },
{ "xuyh0120.win", true },
+ { "xvii.pl", true },
{ "xviimusic.com", true },
{ "xvt-blog.tk", true },
{ "xwalck.se", true },
{ "xwaretech.info", true },
{ "xx0r.eu", true },
+ { "xx6729.co", true },
+ { "xx6729.com", true },
+ { "xx6957.co", true },
+ { "xx9297.co", true },
+ { "xx9397.com", true },
+ { "xx9721.com", true },
+ { "xx9728.co", true },
{ "xxffo.com", true },
{ "xxiz.com", true },
+ { "xxx020625.com", true },
+ { "xxxladyboysporn.com", true },
{ "xxxlbox.com", true },
+ { "xxxred.net", true },
{ "xxxsuper.net", true },
- { "xy6161.com", true },
- { "xy6262.com", true },
- { "xy6363.com", true },
- { "xy7272.com", true },
- { "xy7373.com", true },
+ { "xy6729.com", true },
{ "xyenon.bid", true },
{ "xyfun.net", false },
+ { "xylerfox.ca", true },
{ "xywing.com", true },
{ "xyzulu.hosting", true },
- { "xza.fr", true },
{ "xzclip.cn", true },
- { "xzy.es", true },
+ { "xzy.es", false },
{ "y11n.net", true },
+ { "y5197.co", true },
+ { "y6729.co", true },
+ { "y6729.com", true },
+ { "y6957.co", true },
+ { "y9297.co", true },
+ { "y9721.com", true },
+ { "y9728.co", true },
{ "yabuisha.jp", true },
{ "yachigoya.com", true },
+ { "yachting-home.com", true },
{ "yachtlettering.com", true },
{ "yacineboumaza.fr", true },
{ "yacobo.com", true },
- { "yado-furu.com", true },
{ "yafuoku.ru", true },
{ "yageys.com", true },
- { "yagihiro.tech", true },
{ "yahan.tv", true },
{ "yaharu.ru", true },
{ "yahvehyireh.com", true },
{ "yak-soap.co", true },
{ "yak.is", true },
{ "yakmade.com", true },
+ { "yakmail.tech", true },
{ "yakmoo.se", true },
- { "yalecleaners.com", true },
{ "yallamotor.com", true },
{ "yalook.com", true },
{ "yama.su", true },
{ "yamadaya.tv", true },
- { "yamaken.jp", true },
{ "yamashita-clinic.org", true },
{ "yame2.com", true },
+ { "yamei1.com", true },
+ { "yamei8.com", true },
+ { "yamei88.com", true },
+ { "yamei99.com", true },
+ { "yamei9911.com", true },
+ { "yamei9922.com", true },
{ "yamilafeinart.de", true },
{ "yamm.io", true },
- { "yan.lt", true },
{ "yanaduday.com", true },
{ "yanbao.xyz", true },
{ "yandere.moe", true },
{ "yangcs.net", true },
{ "yangjingwen.cn", true },
- { "yangjingwen.com", true },
- { "yangmaodang.org", true },
- { "yangmi.blog", true },
- { "yangshangzhen.com", true },
+ { "yangruixin.com", true },
{ "yanngraf.ch", true },
{ "yanngraf.com", true },
{ "yannic.world", true },
{ "yannick.cloud", true },
{ "yannik-buerkle.de", true },
{ "yannikbloscheck.com", true },
+ { "yannyann.site", true },
{ "yanovich.net", true },
- { "yanqiyu.info", true },
{ "yans.io", true },
+ { "yanservices.be", true },
{ "yantrasthal.com", true },
{ "yanuwa.com", true },
+ { "yanwei.tech", true },
+ { "yao28.com", true },
{ "yapbreak.fr", true },
+ { "yappy.com", true },
{ "yarcom.ru", false },
{ "yarravilletownhouses.com.au", true },
{ "yaru.one", true },
+ { "yasirworkfolio.com", true },
{ "yassine-ayari.com", true },
- { "yateshomesales.com", true },
{ "yatesun.com", true },
{ "yatorie.net", true },
{ "yatstudios.com", true },
{ "yatsuenpoon.com", true },
{ "yaup.tk", true },
{ "yawen.me", true },
+ { "yaxim.org", true },
{ "ybin.me", true },
+ { "ybos.nl", true },
{ "ybresson.com", true },
{ "ybsul.com", true },
{ "ybti.net", true },
@@ -44098,15 +48030,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ych.art", true },
{ "ycherbonnel.fr", true },
{ "ychon.com", true },
- { "ychong.com", true },
{ "yclan.net", true },
{ "ycnrg.org", true },
{ "yeapdata.com", true },
{ "yecl.net", true },
{ "yeesker.com", true },
{ "yell.ml", true },
- { "yellotalk.co", true },
- { "yellowpages.ee", true },
+ { "yellowparachute.com", true },
+ { "yellowsquid.co.uk", true },
+ { "yellowstone.nsupdate.info", true },
{ "yellowtaillasvegas.com", true },
{ "yellowtree.co.za", true },
{ "yelon.hu", true },
@@ -44143,28 +48075,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yelp.pt", true },
{ "yelp.se", true },
{ "yemektarifleri.com", true },
- { "yenibilgi.net", true },
- { "yenpape.com", true },
{ "yep-pro.ch", true },
{ "yephy.com", true },
{ "yes35.ru", true },
{ "yesiammaisey.me", true },
{ "yeskx.com", true },
+ { "yesod.in", true },
+ { "yesogovinpetcare.com", true },
{ "yesornut.com", true },
- { "yeswecan.co.bw", true },
+ { "yestees.com", true },
{ "yeswehack.com", true },
{ "yetanalytics.io", true },
{ "yetii.net", true },
{ "yetzt.me", false },
{ "yeu.io", true },
- { "yex.nz", true },
{ "yex.trade", true },
{ "yeyi.site", true },
+ { "yezishurb.site", true },
{ "yfengs.moe", true },
{ "ygobbs.com", true },
{ "ygrene.com", true },
- { "ygreneworks.com", true },
+ { "yh56787.com", true },
{ "yh599.cc", true },
+ { "yh811.com", true },
{ "yh98768.com", true },
{ "yhaupenthal.org", true },
{ "yhb.io", true },
@@ -44172,10 +48105,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yhenke.de", true },
{ "yhfou.com", true },
{ "yhhh.org", true },
- { "yhndnzj.com", true },
- { "yhong.me", true },
+ { "yhndnzj.com", false },
{ "yhrd.org", true },
- { "yiffed.me", true },
+ { "yicivideo.com", true },
+ { "yiff.forsale", true },
{ "yigujin.cn", true },
{ "yiheng.moe", true },
{ "yii2.cc", true },
@@ -44184,39 +48117,47 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yinfor.com", true },
{ "yingatech.com", true },
{ "yinglinda.love", true },
+ { "yingyj.com", true },
{ "yinlei.org", true },
- { "yisin.net", true },
{ "yiyuanzhong.com", true },
{ "yiyueread.com", true },
{ "yiz96.com", true },
+ { "yjsoft.me", true },
+ { "yjst.cn", true },
{ "ykhut.com", true },
+ { "ykqpw.com", true },
{ "yksityisyydensuoja.fi", true },
{ "ylde.de", true },
+ { "ylilauta.org", true },
{ "ylinternal.com", true },
+ { "ym039.com", true },
+ { "ym065.com", true },
+ { "ym181.com", true },
{ "ymarion.de", true },
{ "ymoah.nl", true },
{ "ymtsonline.org", true },
{ "yoa.st", true },
{ "yoast.com", true },
{ "yobai-grouprec.jp", true },
- { "yobai28.com", true },
{ "yobbelwobbel.de", false },
{ "yobify.com", true },
+ { "yoelelbaz.ch", true },
{ "yoga-alliance-teacher-training.com", true },
{ "yoga-bad-toelz.de", true },
{ "yoga-in-aying.de", true },
+ { "yoga-prive.de", true },
{ "yoga-school.xyz", true },
- { "yoga-sky.de", true },
{ "yoga-zentrum-narayani.de", true },
{ "yogacentric.co.uk", true },
+ { "yogaemmental.ch", true },
{ "yogahealsinc.org", true },
+ { "yogamaya9.com", true },
{ "yogamea.school", true },
{ "yogananda-roma.org", true },
{ "yogaprague.com", true },
{ "yogaschoolrishikesh.com", true },
{ "yogeshbeniwal.com", false },
- { "yoibyoin.info", true },
- { "yoimise.net", true },
+ { "yohanesmario.com", true },
{ "yoitoko.city", true },
{ "yoitsu.moe", true },
{ "yokohama-legaloffice.jp", true },
@@ -44225,23 +48166,25 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yolo.jetzt", true },
{ "yolobert.de", true },
{ "yoloboatrentals.com", true },
+ { "yolocamgirls.com", true },
{ "yolops.net", true },
{ "yombo.net", true },
{ "yon.co.il", true },
+ { "yonema.com", true },
{ "yongbin.org", true },
- { "yooguo123.com", true },
{ "yoonas.com", true },
{ "yooomu.com", true },
{ "yooooex.com", true },
- { "yoplate.com", true },
{ "yoppoy.com", true },
{ "yopuedo.co", true },
{ "yoramvandevelde.net", true },
{ "yorcom.nl", false },
{ "yorcool.nl", true },
+ { "yorgosbos.nl", true },
{ "yorkshiredalesinflatables.co.uk", true },
{ "yorkshireinflatables.co.uk", true },
{ "yorname.ml", false },
+ { "yornik.nl", true },
{ "yosakoinight.com", true },
{ "yosbeda.com", true },
{ "yoshibaworks.com", true },
@@ -44259,18 +48202,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "youcanfuckoff.xyz", true },
{ "youcanmakeit.at", true },
{ "youcruit.com", true },
+ { "youdamom.com", true },
{ "youdungoofd.com", true },
{ "yougee.ml", true },
- { "youhacked.me", true },
+ { "youhabitat.es", true },
{ "youhavewords.com", true },
+ { "youhs.top", true },
{ "youhua.ru", true },
{ "youkaryote.com", true },
{ "youkaryote.org", true },
{ "youked.com", true },
{ "youkok2.com", true },
- { "youlovehers.com", true },
+ { "youlikehookups.com", true },
+ { "youliketwinks.com", true },
{ "youmiracle.com", true },
{ "youms.de", true },
+ { "youneedfame.com", true },
+ { "young-brahmousin.com", true },
{ "young-sheldon.com", true },
{ "youngauthentic.cf", true },
{ "youngdogs.org", true },
@@ -44281,11 +48229,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "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 },
- { "yourbittorrent.com", true },
+ { "yourantiquarian.com", false },
{ "yourbittorrent.host", true },
{ "yourbittorrent.icu", true },
{ "yourbittorrent.pw", true },
@@ -44294,57 +48241,66 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yourbodyknows.is", true },
{ "yourbonus.click", true },
{ "yourciso.com", true },
- { "yourcomputer.expert", true },
+ { "yourcleaningcompany.net", true },
+ { "yourconscious.life", true },
{ "yourcopywriter.it", true },
+ { "youreallyneedthis.co", true },
{ "yourforex.org", true },
{ "yourfuntrivia.com", true },
{ "yourfuturestrategy.com.au", true },
{ "yourgames.tv", true },
+ { "youri.me", true },
{ "yourlanguages.de", true },
{ "yourmemorykeeper.co.uk", true },
{ "yourneighborhub.com", true },
+ { "yourpersonalfrance.com", true },
{ "yourscotlandtour.co.uk", true },
{ "yourskin.nl", true },
+ { "yourstage.nl", true },
{ "yourstake.org", true },
{ "yourticketbooking.com", true },
{ "yourtime.tv", true },
- { "yourtrainer.com", true },
{ "yousei.ne.jp", true },
{ "youshouldbealiberal.com", 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 },
{ "youyoulemon.com", true },
+ { "yovko.net", true },
{ "yoxall.me.uk", true },
{ "yoyoost.duckdns.org", true },
+ { "yoyoost.ga", true },
+ { "yp518518.com", true },
{ "ypart.eu", true },
+ { "ypfr.fr", true },
{ "ypid.de", true },
{ "yplanapp.com", true },
{ "ypse.com.br", true },
{ "yqjf68.com", true },
{ "yr166166.com", true },
+ { "yr8.com", true },
{ "yrjanheikki.com", true },
- { "ys-shop.biz", true },
+ { "yrx.me", true },
+ { "ys6888.cc", true },
{ "ysicing.me", true },
{ "ysicing.net", true },
{ "ysicorp.com", true },
{ "yslbeauty.com", true },
- { "ytec.ca", true },
- { "ytpak.pk", true },
+ { "ytec.ca", false },
{ "ytreza.fr", true },
{ "ytuquelees.net", true },
{ "ytx588.com", true },
{ "yu.gg", false },
{ "yu.vc", true },
- { "yuan.ga", true },
+ { "yuan.ga", false },
{ "yuanben.io", true },
{ "yuanjiazhao.com", true },
+ { "yubanmei.com", true },
{ "yubi.co", true },
{ "yubicloud.io", true },
{ "yubico.ae", true },
@@ -44402,21 +48358,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yue.la", true },
{ "yue2.net", true },
{ "yuexiangzs.com", true },
+ { "yugasun.com", true },
{ "yuhindo.com", true },
+ { "yuimarukitchen.com", true },
+ { "yuisyo.ml", true },
{ "yukari.cafe", true },
{ "yukari.cloud", true },
{ "yuki-nagato.com", true },
{ "yuki.xyz", true },
- { "yukonconnector.com", true },
- { "yukonlip.com", true },
- { "yukontec.com", true },
+ { "yukict.com", true },
+ { "yukimochi.com", true },
+ { "yukimochi.io", true },
+ { "yukimochi.jp", true },
+ { "yukimochi.me", true },
+ { "yukimochi.net", true },
+ { "yukonconnector.com", false },
+ { "yukonlip.com", false },
+ { "yukontec.com", false },
+ { "yulaiz.com", true },
{ "yumeconcert.com", true },
{ "yumikori.net", true },
+ { "yuncaioo.com", true },
{ "yunity.org", true },
{ "yunjishou.pro", true },
{ "yunloc.com", true },
- { "yuntong.tw", true },
- { "yunzhu.li", true },
+ { "yunsoupian.vip", true },
+ { "yuntong.tw", false },
+ { "yunzhu.li", false },
{ "yuricarlenzoli.it", true },
{ "yurikirin.me", true },
{ "yurimoens.be", true },
@@ -44424,42 +48392,62 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yusa.me", true },
{ "yushi.moe", true },
{ "yusu.org", true },
+ { "yusukesakai.com", true },
{ "yutakato.net", true },
{ "yutangyun.com", true },
+ { "yuucchi.com", true },
{ "yuuki0xff.jp", true },
+ { "yuuta.moe", true },
+ { "yuvaindia.co.in", true },
+ { "yuvibrands.com", true },
{ "yuwei.org", true },
+ { "yuweiji.com", true },
{ "yuweiyang.xyz", true },
{ "yuxuan.org", true },
+ { "yuyantang.club", true },
{ "yuyiyang.eu.org", true },
{ "yuyo.com", true },
{ "yuyu.io", true },
{ "yuzei.tk", true },
- { "yveshield.com", true },
{ "yveslegendre.fr", true },
- { "yvesx.com", true },
{ "yvonnehaeusser.de", true },
{ "yvonnethomet.ch", true },
{ "yvonnewilhelmi.com", true },
- { "yxs.me", true },
{ "yxt521.com", true },
{ "yxzero.xyz", true },
+ { "yy-s.net", true },
+ { "yy5197.co", true },
+ { "yy6729.co", true },
+ { "yy6957.co", true },
+ { "yy9297.co", true },
+ { "yy9297.com", true },
+ { "yy9397.com", true },
+ { "yy9721.com", true },
+ { "yy9728.co", true },
{ "yya.me", true },
{ "yyc.city", true },
{ "yycbike.info", true },
{ "yyyy.xyz", true },
{ "yzal.io", true },
{ "yzcloud.me", true },
- { "yzer.club", true },
{ "yzimroni.net", true },
- { "z-latko.info", true },
+ { "z-latko.info", false },
{ "z-vector.com", true },
{ "z.ai", true },
{ "z1h.de", true },
- { "z4k.de", true },
+ { "z5197.co", true },
+ { "z6729.co", true },
+ { "z6729.com", true },
+ { "z6957.co", true },
+ { "z9297.co", true },
+ { "z9397.com", true },
+ { "z9721.com", true },
+ { "z9728.co", true },
{ "z99944x.xyz", true },
{ "za.search.yahoo.com", false },
{ "zaagbaak.nl", true },
{ "zabbix.tips", true },
+ { "zabezpecweb.cz", true },
{ "zabszk.net", true },
{ "zabukovnik.net", true },
{ "zacadam.com", true },
@@ -44470,6 +48458,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zacharopoulos.eu", true },
{ "zacharopoulos.org", false },
{ "zacharydubois.me", true },
+ { "zacharyschneider.ca", true },
{ "zacharyschneider.com", true },
{ "zacharyseguin.ca", true },
{ "zachaysan.com", true },
@@ -44477,22 +48466,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zachgibbens.org", true },
{ "zachschneider.ca", true },
{ "zaclys.com", false },
- { "zadania.wiki", true },
- { "zafirus.name", true },
+ { "zadroweb.com", true },
{ "zaghyr.org", true },
{ "zagluszaczgps.pl", true },
{ "zahe.me", true },
- { "zahnaerzte-bohne.de", true },
+ { "zahnaerzte-bohne.de", false },
+ { "zahnarzt-drvogel-rosenheim.de", true },
+ { "zahnarzt-drvogel.de", true },
{ "zahnarzt-duempten.de", true },
{ "zahnarzt-hofer.de", true },
{ "zahnarzt-kramer.ch", true },
- { "zahnarzt-muenich.de", true },
{ "zahnmedizinzentrum.com", true },
+ { "zahrowski.com", true },
{ "zaidan.de", true },
{ "zaidan.eu", true },
{ "zaidanfood.com", true },
{ "zaidanfood.eu", true },
{ "zaidanlebensmittelhandel.de", true },
+ { "zaizaia.cc", true },
{ "zajazd.biz", true },
{ "zakariya.blog", true },
{ "zakcutner.uk", true },
@@ -44505,25 +48496,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zakspartiesandevents.com", true },
{ "zalamea.ph", true },
{ "zaloghaz.ro", true },
+ { "zalohovaniburian.cz", true },
{ "zaltv.com", true },
{ "zalvus.com", true },
- { "zalzalac.com", true },
{ "zamalektoday.com", true },
- { "zamocosmeticos.com.br", true },
{ "zamow.co", true },
{ "zandcell.com", true },
{ "zander.dk", true },
{ "zanellidesigns.co.uk", true },
+ { "zanshinkankarate.com", true },
{ "zanthra.com", true },
{ "zanzo.cz", true },
{ "zap-mag.ru", true },
{ "zapier.com", true },
{ "zapmaster14.com", true },
- { "zappbuildapps.com", false },
+ { "zappbuildapps.com", true },
{ "zarabiaj.com", true },
{ "zargescases.co.uk", true },
- { "zarmarket.org", true },
- { "zarpo.com.br", true },
{ "zary.me", true },
{ "zatsepin.by", true },
{ "zaufanatrzeciastrona.pl", true },
@@ -44533,32 +48522,41 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zawo-electric.de", true },
{ "zayna.eu", true },
{ "zbanks.cn", true },
+ { "zbib.org", true },
+ { "zbp16888.com", true },
{ "zbrane-doplnky.cz", true },
+ { "zbtcmu.com", true },
{ "zbut.bg", true },
- { "zby.io", true },
{ "zbyga.cz", true },
{ "zbyte.it", true },
{ "zcarot.com", true },
{ "zcarrot.com", true },
- { "zcgram.com", true },
{ "zcon.nl", true },
{ "zcore.org", true },
{ "zcr.ca", true },
- { "zcryp.to", true },
+ { "zcwtl.com", true },
+ { "zd1313.com", true },
+ { "zd1717.com", true },
+ { "zd6565.com", true },
+ { "zd8863.com", true },
+ { "zd8869.com", true },
+ { "zd8882.com", true },
{ "zdbl.de", true },
{ "zdenekspacek.cz", true },
+ { "zdenekvecera.cz", true },
{ "zdorovayasimya.com", true },
{ "zdrave-konzultace.cz", true },
{ "zdravekonzultace.cz", true },
- { "zdravystul.cz", true },
+ { "zdravotnikurzy.cz", true },
{ "zdrojak.cz", true },
{ "zdymak.by", true },
{ "ze3kr.com", true },
+ { "zeadaniel.com", true },
{ "zeal-and.jp", true },
{ "zeal-interior.com", true },
{ "zealworks.jp", true },
{ "zebbra.ro", true },
- { "zebulon.fr", true },
+ { "zebranolemagicien.net", true },
{ "zeds-official.com", true },
{ "zeebrieshoekvanholland.nl", true },
{ "zeel.com", true },
@@ -44566,23 +48564,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zeetoppers.nl", true },
{ "zeguigui.com", true },
{ "zehkae.net", true },
- { "zehrailkeakyildiz.com", true },
+ { "zehrailkeakyildiz.com", false },
{ "zeibekiko-souvlaki.gr", true },
{ "zeidlertechnik.de", true },
{ "zeilenmethans.nl", true },
{ "zeilles.nu", true },
+ { "zeit.co", true },
{ "zeitpunkt-kulturmagazin.de", true },
{ "zekesnider.com", true },
{ "zekinteractive.com", true },
- { "zelfrijdendeautos.com", true },
- { "zemlova.cz", true },
{ "zen-diez.de", true },
- { "zen-ume.com", true },
+ { "zen-solutions.io", true },
{ "zena.cx", false },
{ "zenchain.com", true },
{ "zenevents.ro", true },
{ "zengdong.ren", true },
- { "zenghx.tk", false },
+ { "zenideen.com", true },
+ { "zenidees.com", true },
+ { "zenithmedia.ca", true },
{ "zenk-security.com", true },
{ "zenlogic.com", true },
{ "zenluxuryliving.com", true },
@@ -44592,10 +48591,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zenofa.co.id", true },
{ "zentask.io", true },
{ "zenti.cloud", true },
- { "zenus-biometrics.com", true },
+ { "zentraler-kreditausschuss.de", true },
{ "zenvideocloud.com", true },
{ "zenvite.com", true },
- { "zenycosta.com", true },
{ "zephyrbk.com", true },
{ "zephyrbookkeeping.com", true },
{ "zephyretcoraline.com", true },
@@ -44603,30 +48601,33 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zer0-day.pw", true },
{ "zer0.de", false },
{ "zerg.uk", true },
+ { "zermatterhof.ch", true },
{ "zerobounce.net", true },
+ { "zerocz.eu", true },
{ "zerofy.de", true },
+ { "zerolab.org", true },
+ { "zeroling.com", true },
{ "zeronet.io", true },
{ "zeropoint.bg", true },
{ "zeropush.com", true },
+ { "zerosector.io", true },
{ "zeroseteatacado.com.br", true },
{ "zerossl.com", true },
- { "zerosync.com", true },
{ "zerotoone.de", true },
- { "zerowastesavvy.com", true },
{ "zertitude.com", true },
{ "zeryn.net", true },
- { "zespia.tw", false },
+ { "zespia.tw", true },
{ "zestylemon.co.uk", true },
{ "zetamode.com", true },
{ "zetorzeszow.pl", false },
{ "zettaplan.ru", true },
{ "zettlmeissl.de", true },
+ { "zety.com", true },
{ "zevelev.net", true },
{ "zeyi.fan", true },
{ "zf1898.com", true },
{ "zfast.com.br", true },
{ "zfg.li", true },
- { "zfly.me", true },
{ "zfree.co.nz", true },
{ "zg-dyw.net", true },
{ "zgrep.org", true },
@@ -44645,34 +48646,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zhangxuhu.com", true },
{ "zhangyuhao.com", true },
{ "zhangzifan.com", false },
- { "zhaoeq.com", true },
{ "zhaofeng.li", true },
{ "zhaopage.com", true },
+ { "zhaostephen.com", true },
+ { "zhaotongjun.com", true },
{ "zhaoxixiangban.cc", true },
{ "zhcexo.com", true },
{ "zhdd.pl", true },
{ "zhen-chen.com", true },
+ { "zhenggangzhao.org", true },
{ "zhengjie.com", true },
- { "zhengouwu.com", true },
+ { "zhengqiangonglue.com", true },
+ { "zhengzihan.com", true },
{ "zhenic.ir", true },
{ "zhi.ci", true },
{ "zhih.me", true },
{ "zhiin.net", true },
{ "zhiku8.com", true },
{ "zhima.io", true },
+ { "zhimingwang.org", true },
{ "zhina.wiki", true },
{ "zhitanska.com", true },
{ "zhiwei.me", true },
{ "zhiyuan.cloud", true },
+ { "zhl123.cn", true },
{ "zhl123.com", true },
- { "zhome.info", true },
{ "zhongzicili.ws", true },
{ "zhost.io", true },
{ "zhouba.cz", true },
{ "zhoushuo.me", false },
{ "zhoutiancai.cn", true },
+ { "zhouzeng1314.com", true },
{ "zhovner.com", true },
- { "zhthings.com", true },
{ "zhuihoude.com", true },
{ "zhuji.com", true },
{ "zhy.us", true },
@@ -44691,7 +48696,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zikinf.com", true },
{ "ziktime.com", true },
{ "zillertaleralpen.net", true },
- { "zilon.com.co", true },
{ "zilore.com", true },
{ "zilsen.com", true },
{ "zima.io", true },
@@ -44700,7 +48704,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zimmer-voss.de", true },
{ "zingarastore.com", true },
{ "zingjerijk.nl", true },
- { "zings.eu", true },
+ { "zinglix.xyz", true },
+ { "zingpetfood.com", true },
{ "zinniamay.com", true },
{ "zinnowitzer-ferienwohnung.de", true },
{ "zinoui.com", true },
@@ -44712,7 +48717,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zipkey.de", true },
{ "zircode.com", true },
{ "ziroh.be", true },
- { "zirrka.de", true },
{ "zirtek.ie", true },
{ "zirtual.com", true },
{ "zistemo.com", true },
@@ -44728,26 +48732,32 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zivver.nl", true },
{ "zivver.uk", true },
{ "zivyruzenec.cz", true },
+ { "ziwa.ir", true },
{ "zixiao.wang", true },
- { "zizcollections.com", true },
{ "zjateaucafe.be", true },
- { "zjc3.com", true },
+ { "zjbuilding.com.au", true },
{ "zjv.me", true },
- { "zk.com.co", true },
{ "zk.gd", true },
{ "zk9.nl", true },
{ "zkontrolujsiauto.cz", true },
{ "zkrypt.cc", true },
{ "zkzone.net", true },
+ { "zl0101.com", true },
+ { "zl016.com", true },
+ { "zl0303.com", true },
{ "zl0iu.com", true },
+ { "zl7373.com", true },
+ { "zl8849.com", true },
{ "zl8862.com", true },
+ { "zl9292.com", true },
+ { "zl9696.com", true },
+ { "zl9889.com", true },
{ "zlatakus.cz", true },
{ "zlatosnadno.cz", true },
{ "zlaty-tyden.cz", true },
{ "zlatytyden.cz", true },
{ "zlavomat.sk", true },
{ "zlima12.com", true },
- { "zlypi.com", true },
{ "zmarta.de", true },
{ "zmarta.dk", true },
{ "zmarta.fi", true },
@@ -44758,25 +48768,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zmartagroup.fi", true },
{ "zmartagroup.no", true },
{ "zmartagroup.se", true },
+ { "znaj.ua", true },
{ "znation.nl", true },
- { "znhglobalresources.com", true },
+ { "znti.de", true },
{ "zoarcampsite.uk", true },
{ "zobraz.cz", true },
{ "zobworks.com", true },
{ "zoccarato.ovh", true },
{ "zochowskiplasticsurgery.com", true },
+ { "zocial.life", true },
{ "zockenbiszumumfallen.de", true },
+ { "zodgame.fun", true },
{ "zodgame.us", true },
{ "zodiacohouses.com", true },
{ "zoeller.me", true },
{ "zofrex.com", true },
- { "zohair.xyz", true },
{ "zohar.wang", true },
{ "zoigl.club", true },
{ "zoisfinefood.com", true },
+ { "zojadravai.com", true },
{ "zoki.art", true },
{ "zollihood.ch", true },
{ "zom.bi", true },
+ { "zombiesecured.com", true },
{ "zomerschoen.nl", true },
{ "zomiac.pp.ua", true },
{ "zonadigital.co", true },
@@ -44790,23 +48804,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zonewatcher.com", true },
{ "zonglovani.info", true },
{ "zonky.cz", true },
+ { "zonky.de", true },
{ "zonkysetkani.cz", true },
+ { "zontractors.com", true },
{ "zooish.net", true },
{ "zook.systems", true },
{ "zoola.io", true },
{ "zoolaboo.de", true },
{ "zoom.earth", true },
- { "zoomcar.pro", true },
{ "zoomek.com", true },
{ "zooneshop.com", true },
{ "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 },
+ { "zoptiks.com", true },
{ "zopyx.com", true },
{ "zor.com", true },
{ "zorasvobodova.cz", true },
@@ -44814,38 +48829,38 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zorig.ch", true },
{ "zorium.org", true },
{ "zorntt.fr", true },
+ { "zorrobei.cf", true },
+ { "zorz.info", true },
{ "zotero.org", true },
{ "zouk.info", true },
{ "zouyaoji.top", true },
{ "zozo.com", true },
{ "zozzle.co.uk", true },
+ { "zp.do", true },
{ "zp25.ninja", true },
- { "zqwqz.com", true },
{ "zr.is", true },
+ { "zravyobrazky.cz", true },
{ "zravypapir.cz", true },
- { "zrhdwz.cn", true },
{ "zrniecka-pre-sny.sk", true },
{ "zrnieckapresny.sk", true },
{ "zry-blog.top", true },
{ "zs-ohradni.cz", true },
{ "zs-reporyje.cz", true },
{ "zscales.com", false },
+ { "zselicivt.hu", true },
{ "zserver.fr", true },
{ "zskomenskeho.cz", true },
{ "zskomenskeho.eu", true },
{ "zsoltsandor.me", true },
{ "zsq.im", true },
{ "zsrbcs.com", true },
- { "zstu.eu", true },
+ { "zstgmnachod.cz", true },
{ "zten.org", true },
- { "ztjuh.tk", true },
+ { "zuanqianni.com", true },
{ "zubel.it", false },
{ "zubr.net", true },
{ "zubro.net", true },
- { "zuefle.net", true },
{ "zug-anwalt.de", true },
- { "zug.fr", true },
- { "zug.io", true },
{ "zughilfen-test.de", true },
{ "zuiacg.cc", true },
{ "zuiacg.com", true },
@@ -44865,12 +48880,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zuppy.pm", true },
{ "zuralski.net", true },
{ "zurgl.com", false },
- { "zusjesvandenbos.nl", true },
{ "zuzumba.es", true },
+ { "zvejonys.lt", true },
{ "zvps.uk", true },
{ "zvxr.net", true },
{ "zwartendijkstalling.nl", true },
- { "zwb3.de", true },
+ { "zwergenfeste.ch", true },
{ "zwerimex.com", true },
{ "zwierslanguagetraining.nl", true },
{ "zwk.de", true },
@@ -44879,11 +48894,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zwy.ch", true },
{ "zx6rninja.de", true },
{ "zx7r.de", true },
- { "zxc.science", false },
- { "zxe.com.br", true },
+ { "zxavier.com", true },
{ "zxssl.com", true },
- { "zxxcq.com", true },
{ "zy.md", true },
+ { "zy.si", true },
{ "zybbo.com", true },
{ "zyciedlazwierzat.pl", true },
{ "zyciedogorynogami.pl", true },
@@ -44891,14 +48905,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zydronium.nl", true },
{ "zygozoon.com", true },
{ "zylai.com", true },
+ { "zylai.net", true },
{ "zymmm.com", true },
{ "zypern-firma.com", true },
{ "zyria.de", true },
{ "zyul.ddns.net", true },
{ "zyzardx.com", true },
{ "zyzsdy.com", true },
- { "zzbnet.cn", true },
+ { "zz5197.co", true },
+ { "zz6729.co", true },
+ { "zz6957.co", true },
+ { "zz9297.co", true },
+ { "zz9397.com", true },
+ { "zz9721.com", true },
+ { "zz9728.co", true },
{ "zzekj.net", true },
{ "zzpd.nl", false },
+ { "zzpwoerden.nl", true },
{ "zzsec.org", true },
};
diff --git a/toolkit/components/typeaheadfind/nsTypeAheadFind.cpp b/toolkit/components/typeaheadfind/nsTypeAheadFind.cpp
index 674681581..53b1ef66d 100644
--- a/toolkit/components/typeaheadfind/nsTypeAheadFind.cpp
+++ b/toolkit/components/typeaheadfind/nsTypeAheadFind.cpp
@@ -420,7 +420,7 @@ nsTypeAheadFind::FindItNow(nsIPresShell *aPresShell, bool aIsLinksOnly,
while (true) { // ----- Outer while loop: go through all docs -----
while (true) { // === Inner while loop: go through a single doc ===
- mFind->Find(mTypeAheadBuffer.get(), mSearchRange, mStartPointRange,
+ mFind->Find(mTypeAheadBuffer, mSearchRange, mStartPointRange,
mEndPointRange, getter_AddRefs(returnRange));
if (!returnRange)
diff --git a/widget/windows/nsClipboard.cpp b/widget/windows/nsClipboard.cpp
index c93f351c8..0ca9568d0 100644
--- a/widget/windows/nsClipboard.cpp
+++ b/widget/windows/nsClipboard.cpp
@@ -291,16 +291,20 @@ nsresult nsClipboard::GetGlobalData(HGLOBAL aHGBL, void ** aData, uint32_t * aLe
nsresult result = NS_ERROR_FAILURE;
if (aHGBL != nullptr) {
LPSTR lpStr = (LPSTR) GlobalLock(aHGBL);
- DWORD allocSize = GlobalSize(aHGBL);
- char* data = static_cast<char*>(malloc(allocSize + 3));
+ CheckedInt<uint32_t> allocSize = CheckedInt<uint32_t>(GlobalSize(aHGBL)) + 3;
+ if (!allocSize.isValid()) {
+ return NS_ERROR_INVALID_ARG;
+ }
+ char* data = static_cast<char*>(malloc(allocSize.value()));
if ( data ) {
- memcpy ( data, lpStr, allocSize );
- data[allocSize] = data[allocSize + 1] = data[allocSize + 2] =
- '\0'; // null terminate for safety
+ uint32_t size = allocSize.value() - 3;
+ memcpy(data, lpStr, size);
+ // null terminate for safety
+ data[size] = data[size + 1] = data[size + 2] = '\0';
GlobalUnlock(aHGBL);
*aData = data;
- *aLen = allocSize;
+ *aLen = size;
result = NS_OK;
}
diff --git a/xpcom/io/nsLocalFileWin.cpp b/xpcom/io/nsLocalFileWin.cpp
index e73e15950..23c283f95 100644
--- a/xpcom/io/nsLocalFileWin.cpp
+++ b/xpcom/io/nsLocalFileWin.cpp
@@ -3034,6 +3034,7 @@ nsLocalFile::IsExecutable(bool* aResult)
"ins",
"isp",
"jar", // java application bundle
+ "jnlp", // java web start
"js",
"jse",
"lnk",